    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    :root{
      --bg:#fbfbfd;
      --white:#ffffff;
      --text:#111827;
      --muted:#6b7280;
      --line:#eceef3;
      --primary:#111827;
      --soft-blue:#edf4ff;
      --soft-purple:#f3ecff;
      --soft-yellow:#f9f7cf;
      --soft-peach:#fbeee7;
      --soft-green:#eef8f1;
      --soft-gray:#f5f7fb;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:18px;
      --shadow:0 10px 30px rgba(17,24,39,.05);
      --container:1180px;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:auto;
    }

    .section{
      padding:43px 0;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      background:var(--soft-gray);
      border:1px solid var(--line);
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      letter-spacing:.06em;
      text-transform:uppercase;
      color:#374151;
      margin-bottom:18px;
    }

    .section-head{
      max-width:760px;
      margin:0 auto 42px;
      text-align:center;
    }

    .section-head h2{
      font-size:clamp(32px,4vw,33px);
      line-height:1.05;
      letter-spacing:-.03em;
      margin-bottom:14px;
      font-weight:600;
    }

    .section-head p{
      font-size:15px;
      color:var(--muted);
    }

    .hero{
      padding:88px 0 72px;
      background:#fff;
      border-bottom:1px solid var(--line);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:center;
    }

    .hero h1{
      font-size:clamp(38px,5vw,68px);
      line-height:.98;
      letter-spacing:-.045em;
      margin-bottom:18px;
      font-weight:800;
      max-width:760px;
    }

    .hero p{
      font-size:17px;
      color:var(--muted);
      max-width:700px;
      margin-bottom:24px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-bottom:22px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:0 18px;
      border-radius:999px;
      font-size:14px;
      font-weight:600;
      border:1px solid var(--line);
      transition:.2s ease;
      background:#fff;
    }

    .btn:hover{
      transform:translateY(-1px);
    }

    .btn-dark{
      background:#111827;
      color:#fff;
      border-color:#111827;
    }

    .btn-light{
      background:#fff;
      color:#111827;
    }

    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .hero-tags span{
      font-size:13px;
      color:#4b5563;
      padding:10px 14px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
    }

    .hero-panel{
      background:var(--white);
      border:1px solid var(--line);
      border-radius:32px;
      padding:18px;
      box-shadow:var(--shadow);
    }

    .panel-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }

    .panel-card{
      min-height:150px;
      border-radius:22px;
      padding:18px;
      border:1px solid rgba(17,24,39,.05);
    }

    .panel-card:nth-child(1){ background:var(--soft-blue); }
    .panel-card:nth-child(2){ background:var(--soft-purple); }
    .panel-card:nth-child(3){ background:var(--soft-yellow); }
    .panel-card:nth-child(4){ background:var(--soft-peach); }

    .icon-dot{
      width:40px;
      height:40px;
      border-radius:14px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(17,24,39,.06);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:17px;
      margin-bottom:16px;
    }

    .panel-card h3{
      font-size:18px;
      line-height:1.2;
      margin-bottom:8px;
      font-weight:700;
    }

    .panel-card p{
      font-size:14px;
      color:#4b5563;
      line-height:1.55;
    }

    .intro-box{
      background:#fff;
      border:1px solid var(--line);
      border-radius:32px;
      padding:34px;
      box-shadow:var(--shadow);
      max-width:1000px;
      margin:auto;
    }

    .intro-box p{
      font-size:16px;
      color:#4b5563;
    }

    .service-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:start;
    }

    .service-left{
      position:sticky;
      top:24px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:30px;
      padding:28px;
      box-shadow:var(--shadow);
    }

    .service-left h2{
      font-size:clamp(30px,3vw,50px);
      line-height:1.02;
      letter-spacing:-.03em;
      margin-bottom:14px;
    }

    .service-left p{
      font-size:15px;
      color:var(--muted);
      margin-bottom:18px;
    }

    .service-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .service-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      padding:22px;
      min-height:220px;
      box-shadow:var(--shadow);
    }

    .service-card.soft-blue{ background:var(--soft-blue); }
    .service-card.soft-purple{ background:var(--soft-purple); }
    .service-card.soft-yellow{ background:var(--soft-yellow); }
    .service-card.soft-peach{ background:var(--soft-peach); }
    .service-card.soft-green{ background:var(--soft-green); }
    .service-card.soft-gray{ background:#f7f7fa; }

    .service-card h3{
      font-size:21px;
      line-height:1.2;
      margin-bottom:10px;
      font-weight:700;
    }

    .service-card p{
      font-size:14px;
      color:#4b5563;
      margin-bottom:14px;
    }

    .service-card ul{
      list-style:none;
      display:grid;
      gap:8px;
    }

    .service-card ul li{
      position:relative;
      padding-left:18px;
      font-size:14px;
      color:#374151;
    }

    .service-card ul li::before{
      content:"•";
      position:absolute;
      left:0;
      top:0;
      color:#111827;
      font-weight:700;
    }

    .steps-wrap{
      background:#fff;
      border:1px solid var(--line);
      border-radius:34px;
      padding:34px;
      box-shadow:var(--shadow);
    }

    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }

    .step-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:20px;
      min-height:190px;
    }

    .step-num{
      width:42px;
      height:42px;
      border-radius:999px;
      background:#111827;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      font-weight:700;
      margin-bottom:16px;
    }

    .step-card h3{
      font-size:18px;
      margin-bottom:8px;
    }

    .step-card p{
      font-size:14px;
      color:var(--muted);
    }

    .seo-cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }

    .seo-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      padding:24px;
      box-shadow:var(--shadow);
      min-height:200px;
    }

    .seo-card h3{
      font-size:20px;
      margin-bottom:10px;
      line-height:1.2;
    }

    .seo-card p{
      font-size:14px;
      color:var(--muted);
    }

    .faq-wrap{
      display:grid;
      gap:14px;
      max-width:980px;
      margin:auto;
    }

    .faq-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .faq-btn{
      width:100%;
      border:0;
      background:#fff;
      padding:20px 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      text-align:left;
      cursor:pointer;
      font:inherit;
      color:inherit;
    }

    .faq-btn span{
      font-size:18px;
      font-weight:600;
      line-height:1.35;
    }

    .faq-plus{
      flex:0 0 auto;
      width:34px;
      height:34px;
      border-radius:999px;
      border:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
      color:#4b5563;
      transition:.2s ease;
      background:#fff;
    }

    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .3s ease;
    }

    .faq-answer-inner{
      padding:0 22px 22px;
      font-size:15px;
      color:#4b5563;
    }

    .faq-answer-inner ul{
      padding-left:18px;
      margin-top:10px;
    }

    .faq-answer-inner li{
      margin-bottom:6px;
    }

    .faq-item.active .faq-answer{
      max-height:500px;
    }

    .faq-item.active .faq-plus{
      transform:rotate(45deg);
      background:#111827;
      color:#fff;
      border-color:#111827;
    }

    .cta-section{
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }

    .cta-card{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:34px;
      padding:22px;
      box-shadow:var(--shadow);
    }

    .cta-info{
      padding:18px;
    }

    .cta-info h2{
      font-size:clamp(30px,3vw,50px);
      line-height:1.05;
      letter-spacing:-.03em;
      margin-bottom:12px;
    }

    .cta-info p{
      font-size:15px;
      color:var(--muted);
      margin-bottom:18px;
    }

    .contact-list{
      list-style:none;
      display:grid;
      gap:10px;
    }

    .contact-list li{
      font-size:14px;
      color:#4b5563;
    }

    .contact-list strong{
      color:#111827;
    }

    .cta-form-wrap{
      background:var(--soft-gray);
      border:1px solid var(--line);
      border-radius:26px;
      padding:18px;
    }

    .lead-form{
      display:grid;
      gap:12px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea{
      width:100%;
      border:1px solid var(--line);
      background:#fff;
      color:#111827;
      border-radius:16px;
      padding:14px 16px;
      font:inherit;
      outline:none;
    }

    .lead-form textarea{
      min-height:120px;
      resize:vertical;
    }

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus{
      border-color:#d1d5db;
    }

    .footer-note{
      padding:28px 0 40px;
      text-align:center;
      color:var(--muted);
      font-size:13px;
    }

    @media (max-width:1100px){
      .service-layout,
      .cta-card,
      .hero-grid{
        grid-template-columns:1fr;
      }

      .service-left{
        position:static;
      }

      .steps-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .seo-cards{
        grid-template-columns:1fr 1fr;
      }
    }

    @media (max-width:768px){
      .section{
        padding:58px 0;
      }

      .hero{
        padding:56px 0 48px;
      }

      .hero h1{
        font-size:40px;
      }

      .section-head h2,
      .service-left h2,
      .cta-info h2{
        font-size:34px;
      }

      .panel-grid,
      .service-grid,
      .steps-grid,
      .seo-cards{
        grid-template-columns:1fr;
      }

      .btn{
        width:100%;
      }

      .hero-panel,
      .intro-box,
      .service-left,
      .service-card,
      .steps-wrap,
      .seo-card,
      .cta-card{
        border-radius:24px;
      }

      .faq-btn{
        padding:16px 16px;
      }

      .faq-btn span{
        font-size:16px;
      }

      .faq-answer-inner{
        padding:0 16px 16px;
      }
    }
  