
    /* ─── CSS VARIABLES ─────────────────────────────────────────── */
    :root {
      --navy:     #11100e;
      --navy2:    #191715;
      --navy3:    #24201c;
      --emerald:  #d6a84f;
      --emerald2: #bd8f35;
      --gold:     #f0c96a;
      --white:    #ffffff;
      --off:      #f7f2e8;
      --muted:    #aaa095;
      --text:     #2d2822;
      --border:   rgba(240,201,106,0.14);
      --card-bg:  rgba(255,255,255,0.045);
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius:   14px;
      --shadow:   0 24px 70px rgba(0,0,0,0.32);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    body {
      font-family: var(--font-body);
      background: var(--navy);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ─── UTILITIES ──────────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 14px;
      display: block;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 16px;
    }
    .section-title span { color: var(--emerald); }
    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 560px;
      line-height: 1.7;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--emerald);
      color: var(--navy);
    }
    .btn-primary:hover {
      background: var(--emerald2);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(214,168,79,0.34);
    }
    .btn-outline {
      background: transparent;
      color: var(--emerald);
      border: 1.5px solid var(--emerald);
    }
    .btn-outline:hover {
      background: var(--emerald);
      color: var(--navy);
      transform: translateY(-2px);
    }
    .btn-ghost {
      background: rgba(255,255,255,0.06);
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.12);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-2px);
    }
    .tag {
      display: inline-block;
      background: rgba(214,168,79,0.13);
      color: var(--emerald);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      border: 1px solid rgba(214,168,79,0.28);
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50%       { transform: scale(1.05); opacity: 0.8; }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-12px); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }
    .fade-up { animation: fadeUp 0.7s ease both; }
    .delay-1 { animation-delay: 0.15s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.45s; }
    .delay-4 { animation-delay: 0.6s; }

    /* ─── NOISE TEXTURE ──────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────────── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 18px 0;
      transition: all 0.3s ease;
      border-bottom: 1px solid transparent;
    }
    .navbar.scrolled {
      background: rgba(10,14,26,0.96);
      backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
      padding: 14px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-icon {
      width: 38px; height: 38px;
      background: var(--emerald);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 18px;
      color: var(--navy);
    }
    .logo-text {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -0.5px;
    }
    .logo-text span { color: var(--emerald); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      padding: 8px 14px;
      border-radius: 6px;
      transition: all 0.2s;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
    .nav-links a.active { color: var(--white); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .mobile-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .mobile-btn span {
      display: block;
      width: 22px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(214,168,79,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(143,111,58,0.07) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    }
    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
      position: relative;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(214,168,79,0.11);
      border: 1px solid rgba(214,168,79,0.28);
      border-radius: 30px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--emerald);
      margin-bottom: 24px;
    }
    .hero-badge-dot {
      width: 7px; height: 7px;
      background: var(--emerald);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(38px, 5.5vw, 66px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.4px;
      margin-bottom: 22px;
    }
    .hero-title .line2 { color: var(--emerald); }
    .hero-title .underline-wrap {
      position: relative;
      display: inline-block;
    }
    .hero-title .underline-wrap::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 0; right: 0;
      height: 4px;
      background: var(--gold);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      animation: scaleIn 0.6s 0.8s ease forwards;
    }
    @keyframes scaleIn {
      to { transform: scaleX(1); }
    }
    .hero-desc {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 32px;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 48px;
    }
    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
    }
    .proof-item h4 {
      font-family: var(--font-head);
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }
    .proof-item h4 span { color: var(--emerald); }
    .proof-item p {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    /* HERO FORM CARD */
    .hero-form-card {
      background: var(--navy3);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 36px 32px;
      box-shadow: var(--shadow);
      position: relative;
      animation: float 6s ease-in-out infinite;
    }
    .hero-form-card::before {
      content: '';
      position: absolute;
      top: -1px; left: 20px; right: 20px; height: 3px;
      background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
      border-radius: 0 0 4px 4px;
    }
    .form-head { margin-bottom: 24px; }
    .form-head h3 {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.2px;
      margin-bottom: 6px;
    }
    .form-head p { font-size: 13px; color: var(--muted); }
    .form-group { margin-bottom: 12px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 12px 16px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }
    .form-group select option { background: var(--navy2); color: var(--white); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--emerald);
      background: rgba(214,168,79,0.06);
    }
    .form-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 10px;
    }
    .form-note i { color: var(--emerald); margin-right: 4px; }

    /* ─── TICKER ─────────────────────────────────────────────────── */
    .ticker-wrap {
      background: var(--emerald);
      padding: 12px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      white-space: nowrap;
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      padding: 0 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ticker-item::after {
      content: '◆';
      font-size: 8px;
    }

    /* ─── TRUST BAR ──────────────────────────────────────────────── */
    .trust-bar {
      background: var(--navy2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
    }
    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .trust-label {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 2px;
      white-space: nowrap;
    }
    .trust-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .trust-city {
      font-size: 13px;
      font-weight: 500;
      color: var(--muted);
      padding: 6px 14px;
      border: 1px solid var(--border);
      border-radius: 20px;
      transition: all 0.2s;
    }
    .trust-city:hover {
      border-color: var(--emerald);
      color: var(--emerald);
    }

    /* ─── PROBLEM SECTION ────────────────────────────────────────── */
    .problem-section {
      padding: 90px 0;
      background: var(--navy);
    }
    .problem-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .problem-list { margin-top: 28px; }
    .problem-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .problem-item:last-child { border-bottom: none; }
    .prob-icon {
      width: 40px; height: 40px;
      min-width: 40px;
      border-radius: 10px;
      background: rgba(245,80,80,0.1);
      border: 1px solid rgba(245,80,80,0.2);
      display: flex; align-items: center; justify-content: center;
      color: #f55050;
      font-size: 16px;
    }
    .problem-item h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .problem-item p { font-size: 14px; color: var(--muted); }
    .solution-card {
      background: linear-gradient(135deg, var(--navy3), rgba(214,168,79,0.06));
      border: 1px solid rgba(214,168,79,0.22);
      border-radius: 20px;
      padding: 40px;
    }
    .solution-card h3 {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
      letter-spacing: -0.3px;
    }
    .solution-card h3 span { color: var(--emerald); }
    .solution-card p { color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
    .solution-list { display: flex; flex-direction: column; gap: 12px; }
    .sol-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
    }
    .sol-check {
      width: 24px; height: 24px;
      min-width: 24px;
      background: rgba(214,168,79,0.16);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--emerald);
      font-size: 11px;
    }

    /* ─── SERVICES SECTION ───────────────────────────────────────── */
    .services-section {
      padding: 100px 0;
      background: var(--navy2);
      position: relative;
    }
    .services-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 20px;
      overflow: hidden;
    }
    .service-card {
      background: var(--navy2);
      padding: 36px 32px;
      position: relative;
      transition: all 0.3s ease;
      cursor: default;
    }
    .service-card:hover {
      background: var(--navy3);
      transform: translateY(-4px);
    }
    .service-card:hover .svc-arrow { opacity: 1; transform: translate(0,0); }
    .svc-num {
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      color: var(--emerald);
      letter-spacing: 2px;
      margin-bottom: 20px;
      opacity: 0.6;
    }
    .svc-icon {
      width: 52px; height: 52px;
      background: rgba(214,168,79,0.11);
      border: 1px solid rgba(214,168,79,0.22);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      color: var(--emerald);
      margin-bottom: 20px;
      transition: all 0.3s;
    }
    .service-card:hover .svc-icon {
      background: var(--emerald);
      color: var(--navy);
    }
    .svc-title {
      font-family: var(--font-head);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.2px;
      margin-bottom: 10px;
    }
    .svc-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .svc-features {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }
    .svc-features li {
      font-size: 13px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .svc-features li i { color: var(--emerald); font-size: 10px; }
    .svc-arrow {
      position: absolute;
      top: 28px; right: 28px;
      width: 32px; height: 32px;
      background: rgba(214,168,79,0.16);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--emerald);
      font-size: 12px;
      opacity: 0;
      transform: translate(4px, -4px);
      transition: all 0.3s;
    }

    /* ─── WHO WE HELP ────────────────────────────────────────────── */
    .industries-section {
      padding: 100px 0;
      background: var(--navy);
    }
    .industries-header { text-align: center; margin-bottom: 56px; }
    .industries-header .section-sub { margin: 0 auto; }
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .industry-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      text-align: center;
      transition: all 0.3s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .industry-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--emerald);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .industry-card:hover { border-color: rgba(214,168,79,0.34); transform: translateY(-4px); }
    .industry-card:hover::before { transform: scaleX(1); }
    .ind-icon {
      font-size: 36px;
      margin-bottom: 16px;
      display: block;
    }
    .ind-title {
      font-family: var(--font-head);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.1px;
      margin-bottom: 8px;
    }
    .ind-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
    .ind-value {
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
    }

    /* ─── PACKAGES SECTION ───────────────────────────────────────── */
    .packages-section {
      padding: 100px 0;
      background: var(--navy2);
      position: relative;
    }
    .packages-header { text-align: center; margin-bottom: 60px; }
    .packages-header .section-sub { margin: 0 auto; }
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }
    .pkg-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      transition: all 0.3s;
    }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
    .pkg-card.featured {
      background: linear-gradient(135deg, var(--navy3), rgba(214,168,79,0.07));
      border-color: rgba(214,168,79,0.42);
      transform: scale(1.03);
    }
    .pkg-card.featured:hover { transform: scale(1.03) translateY(-6px); }
    .pkg-badge {
      position: absolute;
      top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-family: var(--font-head);
      font-size: 11px;
      font-weight: 800;
      padding: 5px 16px;
      border-radius: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .pkg-name {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 12px;
    }
    .pkg-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 6px;
    }
    .pkg-currency {
      font-family: var(--font-head);
      font-size: 22px;
      font-weight: 700;
      color: var(--muted);
    }
    .pkg-amount {
      font-family: var(--font-head);
      font-size: 52px;
      font-weight: 800;
      line-height: 1;
      color: var(--white);
    }
    .pkg-period { font-size: 14px; color: var(--muted); }
    .pkg-tagline { font-size: 13px; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .pkg-best-for {
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .pkg-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }
    .pkg-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.4;
    }
    .pkg-features li i {
      color: var(--emerald);
      font-size: 11px;
      margin-top: 3px;
      min-width: 14px;
    }
    .pkg-features li.highlight { color: var(--white); font-weight: 500; }

    /* ─── PROCESS SECTION ────────────────────────────────────────── */
    .process-section {
      padding: 100px 0;
      background: var(--navy);
    }
    .process-header { max-width: 560px; margin-bottom: 64px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--emerald), transparent);
      z-index: 0;
    }
    .process-step {
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 64px; height: 64px;
      background: var(--navy2);
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 800;
      color: var(--muted);
      margin: 0 auto 20px;
      transition: all 0.3s;
    }
    .process-step:hover .step-num {
      border-color: var(--emerald);
      color: var(--emerald);
      background: rgba(214,168,79,0.09);
    }
    .step-title {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── WHY US ──────────────────────────────────────────────────── */
    .why-section {
      padding: 100px 0;
      background: var(--navy2);
    }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-left h2 { margin-bottom: 16px; }
    .why-left p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .wstat-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
    }
    .wstat-card h3 {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 800;
      color: var(--emerald);
      margin-bottom: 4px;
    }
    .wstat-card p { font-size: 13px; color: var(--muted); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .why-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
    }
    .why-card:hover { border-color: rgba(214,168,79,0.34); transform: translateY(-2px); }
    .why-icon {
      width: 44px; height: 44px;
      background: rgba(214,168,79,0.11);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--emerald);
      font-size: 18px;
      margin-bottom: 14px;
    }
    .why-card h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── AREAS SECTION ──────────────────────────────────────────── */
    .areas-section {
      padding: 90px 0;
      background: var(--navy);
    }
    .areas-header { text-align: center; margin-bottom: 48px; }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .area-pill {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 12px;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }
    .area-pill:hover {
      border-color: rgba(214,168,79,0.42);
      background: rgba(214,168,79,0.06);
      transform: translateY(-2px);
    }
    .area-pill i { color: var(--emerald); font-size: 16px; margin-bottom: 8px; display: block; }
    .area-pill span {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
    }

    /* ─── CTA SECTION ────────────────────────────────────────────── */
    .cta-section {
      padding: 100px 0;
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(214,168,79,0.09) 0%, transparent 70%);
    }
    .cta-inner {
      position: relative;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-inner .section-label { justify-content: center; display: flex; }
    .cta-inner h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
    .cta-inner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .cta-note { font-size: 13px; color: var(--muted); }
    .cta-note i { color: var(--emerald); margin-right: 6px; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .footer {
      background: var(--navy);
      border-top: 1px solid var(--border);
      padding: 70px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin: 16px 0 24px;
      max-width: 280px;
    }
    .social-row {
      display: flex;
      gap: 10px;
    }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: 14px;
      transition: all 0.2s;
    }
    .social-btn:hover {
      border-color: var(--emerald);
      color: var(--emerald);
      background: rgba(214,168,79,0.09);
    }
    .footer-col h4 {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--emerald); }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; }
    .fc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .fc-item i {
      color: var(--emerald);
      font-size: 14px;
      border-color: var(--emerald);
      color: var(--emerald);
      background: rgba(214,168,79,0.09);
    }
    .step-title {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── WHY US ──────────────────────────────────────────────────── */
    .why-section {
      padding: 100px 0;
      background: var(--navy2);
    }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-left h2 { margin-bottom: 16px; }
    .why-left p { color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .wstat-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px;
    }
    .wstat-card h3 {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 800;
      color: var(--emerald);
      margin-bottom: 4px;
    }
    .wstat-card p { font-size: 13px; color: var(--muted); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .why-card {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
    }
    .why-card:hover { border-color: rgba(214,168,79,0.34); transform: translateY(-2px); }
    .why-icon {
      width: 44px; height: 44px;
      background: rgba(214,168,79,0.11);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--emerald);
      font-size: 18px;
      margin-bottom: 14px;
    }
    .why-card h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── AREAS SECTION ──────────────────────────────────────────── */
    .areas-section {
      padding: 90px 0;
      background: var(--navy);
    }
    .areas-header { text-align: center; margin-bottom: 48px; }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }
    .area-pill {
      background: var(--navy3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 12px;
      text-align: center;
      transition: all 0.2s;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }
    .area-pill:hover {
      border-color: rgba(214,168,79,0.42);
      background: rgba(214,168,79,0.06);
      transform: translateY(-2px);
    }
    .area-pill i { color: var(--emerald); font-size: 16px; margin-bottom: 8px; display: block; }
    .area-pill span {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
    }

    /* ─── CTA SECTION ────────────────────────────────────────────── */
    .cta-section {
      padding: 100px 0;
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(214,168,79,0.09) 0%, transparent 70%);
    }
    .cta-inner {
      position: relative;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-inner .section-label { justify-content: center; display: flex; }
    .cta-inner h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
    .cta-inner p { color: var(--muted); font-size: 17px; margin-bottom: 36px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
    .cta-note { font-size: 13px; color: var(--muted); }
    .cta-note i { color: var(--emerald); margin-right: 6px; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .footer {
      background: var(--navy);
      border-top: 1px solid var(--border);
      padding: 70px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin: 16px 0 24px;
      max-width: 280px;
    }
    .social-row {
      display: flex;
      gap: 10px;
    }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: 14px;
      transition: all 0.2s;
    }
    .social-btn:hover {
      border-color: var(--emerald);
      color: var(--emerald);
      background: rgba(214,168,79,0.09);
    }
    .footer-col h4 {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--emerald); }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; }
    .fc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .fc-item i {
      color: var(--emerald);
      font-size: 14px;
      margin-top: 2px;
      min-width: 16px;
    }
    .fc-item div p:first-child { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
    .fc-item div p:last-child { font-size: 14px; color: var(--white); }
    .fc-item div a { font-size: 14px; color: var(--white); transition: color 0.2s; }
    .fc-item div a:hover { color: var(--emerald); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: var(--muted); }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    .footer-bottom-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--emerald); }

    /* ─── MOBILE NAV ─────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links, .nav-cta .btn-ghost { display: none; }
      .mobile-btn { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--navy2);
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
      }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-form-card { animation: none; }
      .problem-inner { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .packages-grid { grid-template-columns: 1fr; }
      .pkg-card.featured { transform: none; }
      .why-inner { grid-template-columns: 1fr; gap: 40px; }
      .areas-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-proof { gap: 20px; }
    }

    @media (max-width: 480px) {
      .industries-grid { grid-template-columns: 1fr 1fr; }
      .areas-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .why-stats { grid-template-columns: 1fr 1fr; }
    }

    /* ─── NEW SECTIONS CSS ───────────────────────────────────────── */
    /* TESTIMONIALS */
    .testimonials-section { padding: 100px 0; background: var(--navy); }
    .testimonials-header { text-align: center; margin-bottom: 56px; }
    .testimonials-carousel { display: flex; overflow-x: auto; gap: 24px; padding-bottom: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .testimonials-carousel::-webkit-scrollbar { display: none; }
    .testi-card { min-width: 340px; background: var(--navy3); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; scroll-snap-align: start; }
    .testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; }
    .testi-quote { font-size: 15px; color: var(--white); line-height: 1.6; margin-bottom: 24px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 16px; }
    .testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(214,168,79,0.11); color: var(--emerald); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; }
    .testi-info h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
    .testi-info p { font-size: 12px; color: var(--muted); }

    /* CASE STUDIES */
    .case-studies-section { padding: 100px 0; background: var(--navy2); }
    .cs-header { text-align: center; margin-bottom: 56px; }
    .cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .cs-card { background: var(--navy3); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
    .cs-card:hover { transform: translateY(-6px); border-color: rgba(214,168,79,0.34); box-shadow: var(--shadow); }
    .cs-image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--border); }
    .cs-content { padding: 32px; }
    .cs-badge { display: inline-block; padding: 6px 12px; background: rgba(214,168,79,0.11); color: var(--emerald); font-size: 11px; font-weight: 700; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
    .cs-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 20px; line-height: 1.3; }
    .cs-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
    .cs-stat-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
    .cs-stat-label { color: var(--muted); }
    .cs-stat-value { font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 6px; }
    .cs-stat-value i { color: var(--emerald); font-size: 12px; }

    /* FOUNDER */
    .founder-section { padding: 100px 0; background: var(--navy); }
    .founder-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; background: linear-gradient(135deg, var(--navy3), rgba(214,168,79,0.06)); border: 1px solid rgba(214,168,79,0.16); border-radius: 24px; padding: 60px; }
    .founder-img-wrap { position: relative; }
    .founder-img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1); display: block; }
    .founder-location { position: absolute; bottom: -20px; right: 20px; background: var(--navy2); border: 1px solid var(--emerald); padding: 12px 20px; border-radius: 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    .founder-location i { color: var(--emerald); font-size: 20px; }
    .founder-location div p:first-child { font-size: 11px; color: var(--muted); text-transform: uppercase; margin-bottom: 2px; }
    .founder-location div p:last-child { font-family: var(--font-head); font-weight: 700; font-size: 14px; }
    .founder-content h3 { font-family: var(--font-head); font-size: 32px; font-weight: 700; margin-bottom: 8px; }
    .founder-content h4 { color: var(--emerald); font-size: 15px; margin-bottom: 24px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
    .founder-content p { color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-size: 16px; }
    .founder-stats { display: flex; gap: 32px; margin-top: 32px; border-top: 1px solid var(--border); padding-top: 32px; }
    .fs-stat h5 { font-family: var(--font-head); font-size: 28px; color: var(--white); font-weight: 800; }
    .fs-stat p { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

    /* AUDIT JOURNEY */
    .audit-journey { padding: 100px 0; background: var(--navy2); }
    .aj-header { text-align: center; margin-bottom: 64px; }
    .aj-grid { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; position: relative; }
    .aj-grid::before { content: ''; position: absolute; left: 34px; top: 20px; bottom: 20px; width: 2px; background: rgba(214,168,79,0.22); }
    .aj-step { display: flex; align-items: flex-start; gap: 32px; position: relative; }
    .aj-num { width: 70px; height: 70px; min-width: 70px; background: var(--navy3); border: 2px solid var(--emerald); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--white); box-shadow: 0 0 20px rgba(214,168,79,0.11); z-index: 2; }
    .aj-content { background: var(--navy3); border: 1px solid var(--border); padding: 32px; border-radius: 16px; width: 100%; transition: all 0.3s; }
    .aj-step:hover .aj-content { border-color: rgba(214,168,79,0.42); transform: translateX(6px); }
    .aj-content h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--emerald); }
    .aj-content p { color: var(--muted); line-height: 1.6; font-size: 15px; }

    /* GUARANTEE */
    .guarantee-section { padding: 80px 0; background: var(--navy); }
    .guarantee-card { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, rgba(240,201,106,0.12), rgba(214,168,79,0.06)); border: 1px solid rgba(240,201,106,0.42); border-radius: 24px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
    .guarantee-icon { font-size: 48px; color: var(--gold); margin-bottom: 24px; }
    .guarantee-card h2 { font-family: var(--font-head); font-size: 36px; font-weight: 800; margin-bottom: 16px; color: var(--white); }
    .guarantee-card p { font-size: 18px; color: var(--white); line-height: 1.6; margin-bottom: 32px; font-weight: 500; }
    .guarantee-terms { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .gt-item { background: rgba(0,0,0,0.3); padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.1); }
    .gt-item i { color: var(--emerald); }

    /* SAMPLE AUDIT */
    .sample-audit-section { padding: 100px 0; background: var(--navy2); }
    .sa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .sa-img { width: 100%; border-radius: 16px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
    .sa-content h2 { font-family: var(--font-head); font-size: 38px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
    .sa-content h2 span { color: var(--emerald); }
    .sa-content p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
    .sa-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
    .sa-item { display: flex; align-items: flex-start; gap: 16px; }
    .sa-icon { width: 32px; height: 32px; min-width: 32px; background: rgba(214,168,79,0.11); border-radius: 8px; color: var(--emerald); display: flex; align-items: center; justify-content: center; font-size: 14px; }
    .sa-item p { margin-bottom: 0; font-size: 15px; color: var(--white); font-weight: 500; }
    
    /* WHATSAPP CTA */
    .whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 1000; transition: all 0.3s; animation: pulse 2s infinite; }
    .whatsapp-float:hover { transform: translateY(-5px) scale(1.1); color: white; }

    @media (max-width: 768px) {
      .cs-grid { grid-template-columns: 1fr; }
      .founder-inner { grid-template-columns: 1fr; padding: 40px 24px; }
      .sa-inner { grid-template-columns: 1fr; }
      .aj-grid::before { left: 24px; }
      .aj-num { width: 50px; height: 50px; min-width: 50px; font-size: 18px; }
      .aj-step { gap: 20px; }
      .aj-content { padding: 24px; }
      .guarantee-card { padding: 40px 24px; }
      .guarantee-terms { flex-direction: column; gap: 12px; }
    }

    /* SERVICE PAGES */
    .service-page .navbar { background: rgba(10,14,26,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
    .service-hero { min-height: auto; padding: 150px 0 90px; position: relative; overflow: hidden; background: radial-gradient(circle at 75% 15%, rgba(214,168,79,0.13), transparent 30%), var(--navy); }
    .service-hero-inner { display: grid; grid-template-columns: minmax(0, 1.12fr) 420px; gap: 64px; align-items: start; }
    .service-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--emerald); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
    .service-eyebrow i { color: var(--gold); }
    .service-title { font-family: var(--font-head); font-size: clamp(38px, 6vw, 72px); line-height: 1.02; letter-spacing: 0; margin-bottom: 24px; }
    .service-title span { color: var(--emerald); }
    .service-lead { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.75; margin-bottom: 34px; }
    .service-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
    .service-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 720px; }
    .service-proof-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
    .service-proof-card strong { display: block; font-family: var(--font-head); font-size: 24px; color: var(--white); margin-bottom: 4px; }
    .service-proof-card span { color: var(--muted); font-size: 13px; }
    .service-summary-card { background: var(--navy3); border: 1px solid rgba(214,168,79,0.20); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); position: sticky; top: 96px; }
    .service-summary-card h2 { font-family: var(--font-head); font-size: 24px; margin-bottom: 14px; }
    .service-summary-card p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
    .summary-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .summary-list li { display: flex; gap: 10px; color: var(--white); font-size: 14px; }
    .summary-list i { color: var(--emerald); margin-top: 4px; }
    .service-section { padding: 90px 0; background: var(--navy2); }
    .service-section.alt { background: var(--navy); }
    .service-section-header { max-width: 720px; margin-bottom: 44px; }
    .service-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .service-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
    .service-info-card, .faq-item, .related-card { background: var(--navy3); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
    .service-info-card i { color: var(--emerald); font-size: 24px; margin-bottom: 18px; }
    .service-info-card h3, .faq-item h3, .related-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 12px; }
    .service-info-card p, .faq-item p, .related-card p { color: var(--muted); line-height: 1.7; font-size: 15px; }
    .deliverable-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .deliverable-list li { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 16px; display: flex; gap: 12px; color: var(--white); }
    .deliverable-list i { color: var(--emerald); margin-top: 4px; }
    .price-band { background: linear-gradient(135deg, rgba(214,168,79,0.13), rgba(240,201,106,0.09)); border: 1px solid rgba(214,168,79,0.28); border-radius: 18px; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .price-band h2 { font-family: var(--font-head); font-size: 32px; margin-bottom: 8px; }
    .price-band p { color: var(--muted); line-height: 1.7; }
    .price-number { font-family: var(--font-head); font-size: 42px; color: var(--white); white-space: nowrap; }
    .price-number span { color: var(--emerald); }
    .related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
    .related-links a { border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; color: var(--muted); font-size: 13px; transition: all 0.2s; }
    .related-links a:hover { border-color: var(--emerald); color: var(--emerald); }
    .service-cta { padding: 90px 0; background: radial-gradient(circle at 50% 0, rgba(214,168,79,0.15), transparent 35%), var(--navy); text-align: center; }
    .service-cta h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
    .service-cta p { color: var(--muted); max-width: 660px; margin: 0 auto 28px; line-height: 1.7; }

    @media (max-width: 900px) {
      .service-hero-inner { grid-template-columns: 1fr; }
      .service-summary-card { position: static; }
      .service-grid-3, .service-grid-2 { grid-template-columns: 1fr; }
      .deliverable-list { grid-template-columns: 1fr; }
      .price-band { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 560px) {
      .service-proof { grid-template-columns: 1fr; }
      .service-hero { padding-top: 120px; }
      .service-title { font-size: 38px; }
      .price-number { font-size: 34px; }
    }
  
