      :root {
      /* Brand variables */
      --cb-navy:      #0A2540; /* Original HTML navy */
      --cb-accent:    var(--base-color); /* #2946f3 */
      --cb-blue:      var(--base-color);
      --cb-light:     var(--very-light-gray);
      --cb-muted:     var(--medium-gray);
      --cb-border:    var(--extra-medium-gray);
      --cb-white:     var(--white);

      /* Typography */
      --ff-head:      var(--alt-font);     /* Plus Jakarta Sans */
      --ff-body:      var(--primary-font); /* Inter */

      /* Spacing tokens */
      --section-py: 100px;
      --section-py-sm: 70px;

      /* Shadows */
      --shadow-sm:  0 4px 15px rgba(35,35,35,0.07);
      --shadow-md:  0 8px 30px rgba(35,35,35,0.10);
      --shadow-lg:  0 20px 60px rgba(35,35,35,0.14);
      --shadow-xl:  0 30px 80px rgba(35,35,35,0.18);

      /* Border radius */
      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;
      --radius-xl:  28px;
    }

    body {
      font-family: var(--ff-body);
      color: var(--dark-gray);
      background: var(--cb-white);
      font-size: 16px;
      line-height: 30px;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      word-break: break-word;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--ff-head);
      color: var(--dark-gray);
    }

    /* HERO */
    .seo-hero {
      background: linear-gradient(135deg, var(--cb-navy) 0%, #0f3660 55%, #1a4f8a 100%);
      padding: 140px 0 90px;
      position: relative; overflow: hidden;
    }
    .hero-texture {
      position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

    .seo-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--ff-head); font-size: 13px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--cb-blue);
      background: rgba(41,70,243,0.12); border: 1px solid rgba(41,70,243,0.25);
      border-radius: 50px; padding: 6px 14px; margin-bottom: 28px;
    }
    .seo-label::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%;
      background: var(--cb-blue); flex-shrink: 0;
      animation: seo-pulse 2s ease-in-out infinite;
    }
    @keyframes seo-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

    .hero-heading {
      font-family: var(--ff-head); font-weight: 800;
      font-size: clamp(2.1rem, 4.2vw, 3.2rem);
      line-height: 1.1; letter-spacing: -0.04em;
      color: #ffffff; margin-bottom: 22px;
    }
    .hero-heading .text-highlight { color: #5bc0de; }
    .hero-sub {
      font-size: 1rem; font-weight: 300; line-height: 1.75;
      color: rgba(255,255,255,0.72); max-width: 500px; margin-bottom: 38px;
    }

    /* Hero Buttons */
    .btn-seo-fill {
      font-family: var(--ff-head); font-size: 15px; font-weight: 700;
      color: #fff !important; background: var(--cb-accent);
      padding: 12px 28px; border-radius: 50px; text-decoration: none; border: none;
      transition: all 0.25s; letter-spacing: 0.01em; cursor: pointer;
      box-shadow: 0 4px 15px rgba(41,70,243,0.30);
    }
    .btn-seo-fill:hover { background: var(--cornflower-blue); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(41,70,243,0.35); }

    .btn-seo-outline {
      font-family: var(--ff-head); font-size: 15px; font-weight: 600;
      color: var(--dark-gray); border: 1.5px solid var(--cb-border);
      padding: 11px 24px; border-radius: 50px; text-decoration: none;
      transition: all 0.25s; letter-spacing: 0.01em;
    }
    .btn-seo-outline:hover { border-color: var(--dark-gray); background: var(--dark-gray); color: #fff !important; }

    .hero-stats-row {
      display: flex; gap: 0; margin-top: 44px;
      border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px;
    }
    .hero-stat {
      flex: 1; padding-right: 24px;
      border-right: 1px solid rgba(255,255,255,0.12);
      margin-right: 24px;
    }
    .hero-stat:last-child { border-right: none; margin-right: 0; }
    .hero-stat-num {
      font-family: var(--ff-head); font-size: 2rem; font-weight: 800;
      color: var(--cb-blue); letter-spacing: -0.04em; display: block; line-height: 1;
      margin-bottom: 5px;
    }
    .hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 400; }

    /* LEAD FORM CARD */
    .seo-form-card {
      background: #fff; border-radius: var(--radius-xl);
      padding: 40px 36px; box-shadow: var(--shadow-xl);
      position: relative;
    }
    .seo-form-card::before {
      content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 3px;
      background: linear-gradient(90deg, var(--cb-accent), var(--cb-blue));
      border-radius: 0 0 4px 4px;
    }
    .form-card-title {
      font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800;
      color: var(--dark-gray); margin-bottom: 6px; letter-spacing: -0.02em;
    }
    .form-card-sub { font-size: 16px; color: var(--cb-muted); margin-bottom: 28px; line-height: 1.7; }
    .seo-field { margin-bottom: 14px; }
    .seo-field label {
      display: block; font-size: 13px; font-weight: 600; color: var(--cb-muted);
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
      font-family: var(--ff-head);
    }
    .seo-field input, .seo-field select, .seo-field textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--cb-border); border-radius: var(--radius-sm);
      font-family: var(--ff-body); font-size: 16px; color: var(--dark-gray);
      background: #FAFBFD; outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .seo-field input:focus, .seo-field select:focus, .seo-field textarea:focus {
      border-color: var(--cb-accent);
      box-shadow: 0 0 0 3px rgba(41,70,243,0.10);
    }
    .seo-submit {
      width: 100%; margin-top: 8px;
      background: linear-gradient(135deg, var(--cb-accent) 0%, var(--cornflower-blue) 100%);
      color: #fff; border: none; padding: 14px;
      border-radius: 50px; font-family: var(--ff-head); font-size: 0.92rem;
      font-weight: 700; cursor: pointer; letter-spacing: 0.02em;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 20px rgba(41,70,243,0.35);
    }
    .seo-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(41,70,243,0.42); }
    .form-privacy { font-size: 13px; color: var(--cb-muted); text-align: center; margin-top: 10px; }

    section {
      padding-top:20px;
      padding-bottom:20px;
    }

    /* TRUST BAR */
    .seo-trust-section {
      width: 100%;
      clear: both;
      position: relative;
      z-index: 99;
      background: #F5F7FA;
      border-top: 1px solid var(--cb-border);
      border-bottom: 1px solid var(--cb-border);
    }
    .seo-trust {
      padding: 22px 0;
    }
    .trust-wrap {
      width: 100%; max-width: 100%; margin: 0 auto; padding: 0 4%;
      display: flex; align-items: center; justify-content: center;
      gap: 3vw; flex-wrap: nowrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 9px;
      font-size: 15px; color: var(--cb-muted); font-weight: 400;
    }
    .trust-item strong { color: var(--dark-gray); font-weight: 600; }
    .trust-dot {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--cb-light); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .trust-dot i { font-size: 15px; color: var(--cb-blue); }
    .trust-dot svg { width: 14px; height: 14px; fill: var(--cb-blue); }

    /* SECTION COMMONS */
    .seo-section { padding: var(--section-py) 0; }
    .seo-section-sm { padding: var(--section-py-sm) 0; }
    .seo-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .seo-section-dark { 
      background: rgb(16, 18, 34);
    }
    .seo-section-light { background: var(--cb-light); }

    .section-eyebrow {
      display: inline-block;
      font-family: var(--ff-head); font-size: 14px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--cb-accent);
      margin-bottom: 14px;
    }
    .section-eyebrow-green { color: var(--cb-green); }
    .section-h2 {
      font-family: var(--ff-head); font-weight: 800;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      line-height: 1.12; letter-spacing: -0.035em;
      color: var(--dark-gray); margin-bottom: 16px;
    }
    .section-h2-light { color: #fff; }
    .section-body {
      font-size: 16px; color: var(--dark-gray); line-height: 30px;
      max-width: 600px; font-weight: 400;
    }
    .section-body-light { color: rgba(255,255,255,0.60); }

    /* WHY US — ICON BOXES */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px; margin-top: 56px;
    }
    .seo-icon-box {
      background: var(--cb-white); border: 1.5px solid var(--cb-border);
      border-radius: var(--radius-lg); padding: 34px 28px;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      position: relative; overflow: hidden;
    }
    .seo-icon-box::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--cb-blue), var(--cb-accent));
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .seo-icon-box:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
    .seo-icon-box:hover::after { transform: scaleX(1); }
    .icon-wrap {
      width: 52px; height: 52px; border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 20px;
      color: var(--cb-blue);
    }
    .icon-box-title {
      font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
      color: var(--dark-gray); margin-bottom: 12px; letter-spacing: -0.01em;
    }
    .icon-box-body { font-size: 16px; color: var(--cb-muted); line-height: 30px; font-weight: 400; }

    /* SERVICES */
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .seo-svc-card {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-md); padding: 28px 24px; color: #fff;
      transition: background 0.2s;
    }
    .seo-svc-card:hover { background: rgba(255,255,255,0.12); }
    .svc-number {
      font-family: var(--ff-head); font-size: 2rem; font-weight: 800;
      color: #5bc0de; opacity: 0.5; margin-bottom: 10px; display: block;
    }
    .svc-title {
      font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
      color: #fff; margin-bottom: 14px;
    }
    .svc-list { list-style: none; padding: 0; font-size: 16px; color: rgba(255,255,255,0.75); line-height: 30px; font-weight: 400; }
    .svc-list li::before { content: '→ '; color: #5bc0de; }

    /* PROCESS */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px; margin-top: 64px; position: relative;
    }
    .process-grid::before {
      content: ''; position: absolute;
      top: 36px; left: calc(10% + 18px); right: calc(10% + 18px);
      height: 1px;
      background: linear-gradient(90deg, var(--cb-blue) 0%, var(--cb-accent) 100%);
      z-index: 0;
    }
    .seo-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
    .step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--cb-white); border: 2px solid var(--cb-border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-family: var(--ff-head); font-size: 0.95rem; font-weight: 800;
      color: var(--dark-gray); letter-spacing: -0.02em;
      transition: all 0.3s; box-shadow: var(--shadow-sm);
    }
    .seo-step:hover .step-num {
      background: var(--cb-accent); border-color: var(--cb-accent);
      color: #fff; box-shadow: 0 8px 20px rgba(41,70,243,0.35);
    }
    .step-title {
      font-family: var(--ff-head); font-size: 1rem; font-weight: 700;
      color: var(--dark-gray); margin-bottom: 8px;
    }
    .step-body { font-size: 16px; color: var(--cb-muted); line-height: 28px; font-weight: 400; }

    /* RESULTS */
    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px; margin-top: 56px;
    }
    .seo-counter-card {
      background: var(--cb-white); border-radius: var(--radius-lg);
      padding: 36px 24px; text-align: center; box-shadow: var(--shadow-sm);
      border-top: 3px solid var(--cb-blue);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .seo-counter-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .counter-num {
      font-family: var(--ff-head); font-size: 2.4rem; font-weight: 800;
      color: var(--dark-gray); letter-spacing: -0.05em; line-height: 1; display: block;
      margin-bottom: 8px;
    }
    .counter-lbl { font-size: 16px; color: var(--cb-muted); font-weight: 400; line-height: 1.5; }

    /* TESTIMONIALS */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 24px; margin-top: 56px;
    }
    .seo-testi-card {
      background: var(--cb-white); border: 1.5px solid var(--cb-border);
      border-radius: var(--radius-lg); padding: 36px 30px;
      position: relative; transition: box-shadow 0.3s;
    }
    .seo-testi-card:hover { box-shadow: var(--shadow-md); }
    .testi-quote-mark {
      position: absolute; top: 20px; right: 26px;
      font-family: var(--ff-head); font-size: 6rem; line-height: 0.6;
      color: var(--cb-blue); opacity: 0.15; font-weight: 800; pointer-events: none;
    }
    .testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .testi-stars span { color: #FFB800; font-size: 0.9rem; }
    .testi-body {
      font-size: 16px; color: var(--dark-gray); line-height: 30px;
      font-style: italic; font-weight: 400; margin-bottom: 24px;
    }
    .testi-author { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--dark-slate-blue), var(--cb-blue));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-head); font-size: 0.82rem; font-weight: 800; color: #fff;
    }
    .testi-name { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: var(--dark-gray); }
    .testi-role { font-size: 14px; color: var(--cb-muted); }

    /* FAQ */
    .seo-faq { margin-top: 56px; max-width: 780px; }
    .seo-accordion-item {
      border-bottom: 1px solid var(--cb-border); padding: 22px 0;
    }
    .seo-accordion-item:first-child { border-top: 1px solid var(--cb-border); }
    details { cursor: pointer; }
    summary {
      font-family: var(--ff-head); font-size: 18px; font-weight: 700;
      color: var(--dark-gray); list-style: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    summary::-webkit-details-marker { display: none; }
    .faq-icon {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      background: var(--cb-light); border: 1.5px solid var(--cb-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--dark-gray); transition: all 0.25s;
      font-family: monospace; line-height: 1;
    }
    details[open] .faq-icon { background: var(--cb-accent); border-color: var(--cb-accent); color: #fff; }
    details p {
      font-size: 16px; color: var(--cb-muted); margin-top: 16px;
      line-height: 30px; font-weight: 400; padding-right: 48px;
    }

    /* BOTTOM CTA */
    .seo-cta {
      background: linear-gradient(135deg, var(--cb-accent) 0%, var(--cornflower-blue) 100%);
      padding: var(--section-py) 0; text-align: center; color: #fff;
      position: relative; overflow: hidden;
    }
    .seo-cta::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .cta-heading {
      font-family: var(--ff-head); font-weight: 800;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.04em;
      color: #fff; margin-bottom: 18px;
    }
    .cta-sub { font-size: 16px; opacity: 0.85; max-width: 580px; margin: 0 auto 40px; font-weight: 400; line-height: 30px; }
    .btn-cta-white {
      background: #fff; color: var(--cb-accent); border: none;
      padding: 14px 34px; border-radius: 50px; font-family: var(--ff-head);
      font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none;
      transition: all 0.25s; display: inline-block; letter-spacing: 0.01em;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.22); color: var(--cb-accent); }
    .btn-cta-outline {
      background: transparent; color: #fff;
      border: 2px solid rgba(255,255,255,0.55);
      padding: 14px 34px; border-radius: 50px; font-family: var(--ff-head);
      font-size: 16px; font-weight: 700; cursor: pointer; text-decoration: none;
      transition: all 0.25s; display: inline-block; letter-spacing: 0.01em;
    }
    .btn-cta-outline:hover { border-color: #fff; color: #fff; }
    .cta-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .hero-col-form { margin-top: 48px; }
      .process-grid::before { display: none; }
      .trust-wrap { flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0 20px; }
    }
    @media (max-width: 768px) {
      :root { --section-py: 70px; --section-py-sm: 50px; }
      .hero-stats-row { flex-wrap: wrap; gap: 20px; }
      .hero-stat { border-right: none; margin-right: 0; flex: 0 0 calc(50% - 10px); }
    }

    /* WhatsApp Float */
    .wa-btn {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45); text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

      /* Brand Blue Gradient */
      .text-gradient-brand-blue {
          background: linear-gradient(to right, #0280ee, #445fed);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          display: inline-block;
      }

      /* Gradient for heading */
      .bg-gradient-brand-blue {
          background: linear-gradient(to right, #2946f3, #445fed);
      }