/* ============================================================
   ai-writing.css — extracted from ai-writing.html
   ============================================================ */

:root {
      --brand-primary: #A93A2D;
      --brand-deep: #77180D;
      --brand-accent: #CC624A;
      --brand-gray-dark: #1A1A1A;
      --brand-gray-light: #6B6C6F;
      --bg-soft: #FDF1F0;
      --white: #ffffff;
  }

  body {
      font-family: "PingFang TC", "Microsoft JhengHei", sans-serif;
      margin: 0;
      color: #333;
      line-height: 1.6;
      background: var(--white);
  }

  .container-content-audit { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

  /* --- Banner Section --- */
  .banner {
      padding: 24px 0 60px;
      text-align: center;
      background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
  }

  .aipo-breadcrumb{ padding-top:88px; padding-bottom:14px; background:#f9fafb; border-bottom:1px solid #e5e7eb; font-family:"PingFang TC","Microsoft JhengHei","Inter",sans-serif; }
  .aipo-breadcrumb .container-content-audit{ max-width:1400px; margin:0 auto; padding:0 24px; }
  .aipo-breadcrumb ol{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; list-style:none; margin:0; padding:0; font-size:14px; line-height:1.5; }
  .aipo-breadcrumb ol a{ color:#6b7280; text-decoration:none; transition:color .2s; }
  .aipo-breadcrumb ol a:hover{ color:var(--brand-primary); }
  .aipo-breadcrumb ol .sep{ color:#9ca3af; }
  .aipo-breadcrumb ol .current{ color:#1f2937; font-weight:500; }

  .banner-top-tag {
      color: var(--brand-primary);
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 14px;
      margin-bottom: 20px;
      display: block;
  }

  .banner h1 {
      font-size: 48px;
      color: var(--brand-deep);
      margin: 0 0 15px;
      font-weight: 800;
      line-height: 1.2;
  }

  .banner .intro-lead {
      font-size: 22px;
      color: var(--brand-accent);
      margin-bottom: 15px;
      font-weight: 600;
  }

  .ai-platforms-bar {
      margin-bottom: 30px;
      font-size: 14px;
      color: var(--brand-gray-light);
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  .ai-tag {
      background: rgba(169, 58, 45, 0.05);
      padding: 4px 12px;
      border-radius: 20px;
      border: 1px solid rgba(169, 58, 45, 0.1);
      color: var(--brand-primary);
      font-weight: 500;
  }

  .banner-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
  }

  .btn {
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      cursor: pointer;
  }

  .btn-outline { border: 2px solid var(--brand-gray-dark); color: var(--brand-gray-dark); }
  .btn-outline:hover { background: var(--brand-gray-dark); color: #fff; }
  .btn-primary { background-color: var(--brand-primary); color: white; }
  .btn:hover { opacity: 0.9; transform: translateY(-2px); }

  /* --- Features --- */
  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin: 60px 0;
  }

  .feature-card {
      padding: 30px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 16px;
      transition: box-shadow 0.3s;
  }

  .feature-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  .feature-card h4 { color: var(--brand-deep); margin-top: 0; font-size: 20px; }
  .feature-card p { font-size: 15px; color: var(--brand-gray-light); }

  /* --- Process --- */
  .process-section { padding: 80px 0; background: #fafafa; }
  .process-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  .process-item { background: white; padding: 25px; border-radius: 12px; border: 1px solid #eee; }
  .image-placeholder {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #eee;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #999;
      margin-bottom: 15px;
      border: 1px dashed var(--brand-accent);
  }

  /* --- Testimonials --- */
  .testimonials { 
      padding: 100px 0; 
      background: var(--bg-soft); 
      color: var(--brand-gray-dark); 
  }
  .testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonial-card {
      background: var(--white);
      padding: 40px;
      border-radius: 20px;
      border-left: 4px solid var(--brand-primary);
      box-shadow: 0 10px 30px rgba(169, 58, 45, 0.08);
  }
  .tag {
      background: var(--brand-accent);
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: bold;
      color: white;
      text-transform: uppercase;
  }

  .cta-section { background: var(--brand-deep); color: white; padding: 80px 0; text-align: center; }


  /* Full-screen section styles */
  .full-screen-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 30px 0;
      background: #fff;
  }
  
  .full-screen-section:nth-child(odd) {
      background: var(--bg-soft);
  }

  .feature-block {
      display: flex;
      align-items: center;
      gap: 30px;
      width: 100%;
  }
  
  .feature-block:nth-child(even) {
      flex-direction: row-reverse;
  }
  
  .feature-info {
      flex: 1;
  }
  
  .feature-info h3 {
      font-size: 32px;
      color: var(--brand-primary);
      margin-bottom: 25px;
      font-weight: 700;
  }
  
  .feature-info p {
      font-size: 18px;
      color: var(--brand-gray-light);
      margin-bottom: 30px;
      line-height: 1.8;
  }
  
  .feature-info ul {
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
  }
  
  .feature-info li {
      margin-bottom: 15px;
      padding-left: 25px;
      position: relative;
      font-size: 16px;
      color: var(--brand-gray-dark);
  }
  
  .feature-info li:before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--brand-primary);
      font-weight: bold;
  }
  
  .feature-visual {
      flex: 1.2;
      border-radius: 40px;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
  }
  
  .feature-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 40px;
  }


  .feature-visual {
      background: #f8f8f8 !important;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
      padding: 10px !important;
  }
  
  .feature-visual img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      border-radius: 40px !important;
  }
  
  .full-screen-section:nth-child(odd) {
      background: var(--bg-soft);
  }

.text-white{color:#000000;}
