    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --hpad: max(40px, calc(50vw - 780px)); }
    body {
      font-family: 'Inter', sans-serif;
      background: #1c4552;
      color: #111;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: #1c4552;
      height: 85px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-logo-link { display: flex; align-items: center; text-decoration: none; }
    .nav-logo-link img { height: 42px; width: auto; display: block; }
    .nav-links { display: none; }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .btn-nav-dot {
      display: flex; align-items: center; gap: 8px;
      background: #c3e6d7; color: #1c4552;
      font-size: 13px; font-weight: 600;
      padding: 10px 18px; border-radius: 8px;
      text-decoration: none; white-space: nowrap;
      transition: opacity 0.2s;
    }
    .btn-nav-dot:hover { opacity: 0.88; }
    .live-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #1c4552;
      animation: pulse 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
    .btn-nav-outline {
      font-size: 13px; font-weight: 500; color: #fff;
      padding: 10px 18px; border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.45);
      text-decoration: none; white-space: nowrap;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-nav-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
    .nav-hamburger {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(0,0,0,0.25); border: none; cursor: pointer;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    }
    .nav-hamburger span { display: block; width: 16px; height: 1.5px; background: #fff; border-radius: 2px; }

    /* ── NAV OVERLAY ── */
    .nav-overlay {
      position: fixed; inset: 0; z-index: 500;
      background: #1c4552;
      display: flex; flex-direction: column;
      opacity: 0; pointer-events: none; visibility: hidden;
      transition: opacity 0.3s;
    }
    .nav-overlay.open { opacity: 1; pointer-events: all; visibility: visible; }
    .nav-overlay-header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 40px;
    }
    .nav-overlay-header img { height: 42px; width: auto; }
    .nav-overlay-close {
      background: rgba(255,255,255,0.1); border: none; color: #fff;
      width: 40px; height: 40px; border-radius: 50%;
      font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-overlay-close:hover { background: rgba(255,255,255,0.2); }
    .nav-overlay-body {
      flex: 1; display: flex;
      padding: 48px 80px 60px;
      align-items: flex-start;
      gap: 0;
    }
    .nav-overlay-col { display: flex; flex-direction: column; gap: 0; min-width: 320px; }
    .nav-overlay-col a {
      font-size: 42px; font-weight: 700; color: rgba(255,255,255,0.7);
      text-decoration: none; padding: 8px 0;
      transition: color 0.2s;
    }
    .nav-overlay-col a:hover { color: #c3e6d7; }
    .nav-overlay-col + .nav-overlay-col { margin-left: 100px; }
    .nav-overlay-info { margin-left: auto; display: flex; flex-direction: column; gap: 36px; align-self: center; }
    .nav-overlay-info-block h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.1px; margin-bottom: 8px; }
    .nav-overlay-info-block p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; }
    .nav-overlay-cta { display: none; }

    /* ── HERO ── */
    .hero {
      background: #c3e6d7;
      min-height: calc(100vh - 85px);
      display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
      align-items: center;
      padding: 24px var(--hpad) 0px;
      gap: 40px; overflow: hidden; position: relative;
    }
    .hero-content { min-width: 0; max-width: 720px; display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 3; }
    .hero h1 {
      font-size: clamp(32px, 4.2vw, 72px);
      font-weight: 800; line-height: 1.05;
      color: #111; letter-spacing: -2px;
      margin-bottom: 20px;
      width: 100%;
    }
    .hero-line1 { display: block; white-space: nowrap; overflow: visible; }
    .typed-arrow { color: #1c4552; font-weight: 800; }
    .typed-word {
      color: #111; font-weight: 800;
      display: inline-block;
      min-width: 3ch;
      border-right: 3px solid #111;
      padding-right: 3px;
      animation: blink 0.9s step-end infinite;
      vertical-align: baseline;
    }
    @keyframes blink { 0%,100%{border-color:#111} 50%{border-color:transparent} }
    .hero-specialisms {
      font-size: clamp(14px, 1.2vw, 19px); font-weight: 600;
      color: #1c4552; margin-bottom: 16px;
      letter-spacing: 0.3px;
    }
    .hero-desc {
      font-size: clamp(15px, 1.2vw, 20px); font-weight: 400;
      color: #333; line-height: 1.75;
      margin-bottom: 16px; max-width: 640px;
    }
    .hero-stats {
      font-size: clamp(13px, 1vw, 16px); font-weight: 600;
      color: #1c4552; line-height: 1.7;
      margin-bottom: 28px;
      border-top: 1px solid rgba(28,69,82,0.2);
      padding-top: 16px;
      width: 100%;
    }
    .btn-book {
      display: inline-flex; align-items: center;
      background: #111; color: #fff;
      font-size: 16px; font-weight: 600;
      padding: 14px 28px; border-radius: 999px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-book:hover { background: #333; }
    .hero-cta-row {
      display: flex; flex-wrap: wrap; align-items: center;
      gap: 12px; margin-bottom: 14px;
    }
    .btn-secondary {
      display: inline-flex; align-items: center;
      background: transparent; color: #111;
      font-size: 15px; font-weight: 600;
      padding: 14px 24px; border-radius: 999px;
      border: 1.5px solid #111;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .btn-secondary:hover { background: #111; color: #fff; }
    .hero-trust { display: flex; align-items: center; gap: 12px; }
    .trust-avatars { display: flex; }
    .trust-avatars img {
      width: 35px; height: 35px; border-radius: 50%;
      border: 2px solid #c3e6d7;
      margin-left: -8px; object-fit: cover;
    }
    .trust-avatars img:first-child { margin-left: 0; }
    .trust-text { font-size: 14px; font-weight: 500; color: #222; }

    .hero-visual { display: flex; align-items: flex-end; justify-content: center; height: 100%; overflow: hidden; }
    .hero-photo-container {
      position: relative;
      max-width: 820px; width: 100%;
      flex-shrink: 0;
      transform: scale(1.125);
      transform-origin: center bottom;
      margin-bottom: -60px;
    }
    .hero-person-photo {
      width: 100%; display: block; position: relative; z-index: 1; transform: scale(0.99, 0.985); transform-origin: right top;
    }
    .hero-phone-wrap {
      position: absolute;
      top: calc(16% - 2px); left: calc(31% + 2px);
      width: 38%; height: 67.8%;
      z-index: 2;
      border-radius: 22px;
      overflow: hidden;
      background: #0f2b35;
    }
    .hero-phone-video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 22px;
    }

    /* ── TRUSTED BAND ── */
    .trusted-band {
      padding: 52px var(--hpad);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trusted-band-label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.2px; color: rgba(255,255,255,0.35);
      text-align: center; margin-bottom: 10px;
    }
    .trusted-band-heading {
      font-size: 17px; font-weight: 600; color: #fff;
      text-align: center; margin-bottom: 36px;
    }
    .logo-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .logo-pill {
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px; padding: 9px 22px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
    }

    /* ── TECH TEAMS ── */
    .teams-section {
      padding: 80px var(--hpad);
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .teams-section h2 {
      font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
      color: #fff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 18px;
    }
    .teams-section > div > p {
      font-size: 16px; color: rgba(255,255,255,0.65);
      line-height: 1.75; margin-bottom: 30px; max-width: 440px;
    }
    .btn-case-studies {
      display: inline-flex; align-items: center;
      background: #111; color: #fff;
      font-size: 14px; font-weight: 600;
      padding: 12px 22px; border-radius: 50px;
      text-decoration: none; transition: background 0.2s;
    }
    .btn-case-studies:hover { background: #333; }

    /* Marquee */
    .marquee-wrap { overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
    .marquee-row { display: flex; gap: 12px; width: max-content; }
    .marquee-row.left { animation: scroll-left 28s linear infinite; }
    .marquee-row.right { animation: scroll-right 32s linear infinite; }
    @keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes scroll-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
    .logo-sq {
      width: 72px; height: 72px; border-radius: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; overflow: hidden;
    }
    .logo-sq img { width: 54px; height: 54px; object-fit: contain; border-radius: 8px; }

    /* ── PROCESS ── */
    .process-section { background: #fff; padding: 96px var(--hpad); }
    .process-top {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: start; margin-bottom: 80px;
    }
    .process-top h2 {
      font-size: clamp(28px, 3.5vw, 50px); font-weight: 300;
      color: #111; letter-spacing: -1px; line-height: 1.1;
    }
    .process-top-right p {
      font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 28px;
    }
    .btn-dark-pill {
      display: inline-flex; align-items: center;
      background: #111; color: #fff;
      font-size: 15px; font-weight: 600;
      padding: 13px 26px; border-radius: 999px;
      text-decoration: none; transition: background 0.2s;
    }
    .btn-dark-pill:hover { background: #333; }
    /* Timeline layout */
    .process-timeline {
      display: grid; grid-template-columns: repeat(4,1fr);
      position: relative;
    }
    .process-timeline::before {
      content: ''; position: absolute;
      top: 20px; left: 12.5%; right: 12.5%;
      height: 1px; background: #ddd; z-index: 0;
    }
    .step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
    .step-circle {
      width: 42px; height: 42px; border-radius: 50%;
      background: #2d2d2d; color: #fff;
      font-size: 13px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1; flex-shrink: 0;
      margin-bottom: 28px;
    }
    .step-title { font-size: 19px; font-weight: 700; color: #111; margin-bottom: 14px; line-height: 1.3; }
    .step-text { font-size: 14px; color: #555; line-height: 1.75; flex: 1; }
    .step-photo-wrap {
      width: 160px; height: 160px; border-radius: 50%;
      overflow: hidden; margin-top: 36px; flex-shrink: 0;
    }
    .step-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

    /* ── SERVICES ── */
    .services-section { background: #fff; padding: 80px var(--hpad) 96px; border-top: 1px solid #eee; }
    .services-top {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
      align-items: end; margin-bottom: 40px;
    }
    .services-top h2 {
      font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
      color: #03151a; letter-spacing: -1.5px; line-height: 1.1;
    }
    .services-top p { font-size: 16px; color: #555; line-height: 1.75; }
    .service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .service-card {
      background: #1c4552; border-radius: 16px; padding: 36px 28px;
      display: flex; flex-direction: column; gap: 16px;
      transition: transform 0.2s;
    }
    .service-card:hover { transform: translateY(-4px); }
    .service-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #c3e6d7; text-transform: uppercase; }
    .service-card h3 { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.5px; }
    .service-sub { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; }
    .service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
    .service-list li { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; display: flex; gap: 8px; align-items: flex-start; }
    .service-list li::before { content: '✓'; color: #c3e6d7; font-weight: 700; flex-shrink: 0; }
    .btn-learn {
      display: inline-flex; align-items: center; background: rgba(195,230,215,0.15);
      color: #c3e6d7; font-size: 13px; font-weight: 600; padding: 10px 18px;
      border-radius: 8px; text-decoration: none; margin-top: auto;
      border: 1px solid rgba(195,230,215,0.2); transition: background 0.2s;
    }
    .btn-learn:hover { background: rgba(195,230,215,0.25); }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: #fff; padding: 96px var(--hpad); border-top: 1px solid #eee; }
    .testimonials-header { margin-bottom: 52px; }
    .testimonials-header h2 {
      font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
      color: #03151a; letter-spacing: -1.5px; line-height: 1.1;
      max-width: 680px; margin-bottom: 14px;
    }
    .testimonials-header p { font-size: 16px; color: #555; line-height: 1.7; max-width: 540px; margin-bottom: 28px; }
    .btn-specialist-dark {
      display: inline-flex; align-items: center; gap: 8px;
      background: #111; color: #fff;
      font-size: 14px; font-weight: 600;
      padding: 12px 22px; border-radius: 999px;
      text-decoration: none; transition: background 0.2s;
    }
    .btn-specialist-dark:hover { background: #333; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .t-card {
      background: #f7f7f7; border-radius: 18px;
      overflow: hidden; display: flex; flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .t-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
    .t-card-top { padding: 28px 28px 20px; display: flex; align-items: center; height: 90px; }
    .t-logo { height: 46px; width: 200px; object-fit: contain; object-position: left center; display: block; }
    .t-logo-lg { height: 72px; width: 260px; transform: scale(1.1); transform-origin: left center; }
    .t-card-body { padding: 0 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
    .t-quote-mark { font-size: 48px; line-height: 1; color: #c3e6d7; font-weight: 800; margin-bottom: -8px; }
    .t-quote-text { font-size: 14px; color: #444; line-height: 1.85; font-style: italic; flex: 1; }
    .t-author-name { font-size: 15px; font-weight: 700; color: #03151a; }
    .t-author-title { font-size: 12px; color: #888; margin-top: 2px; }
    .t-stats {
      border-top: 1px solid rgba(0,0,0,0.07); padding-top: 18px; margin-top: 6px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .t-stat-row { display: flex; flex-direction: column; gap: 2px; }
    .t-stat-key { font-size: 11px; font-weight: 700; color: #1c4552; text-transform: uppercase; letter-spacing: 0.6px; }
    .t-stat-val { font-size: 13px; color: #444; line-height: 1.5; }
    .t-badge {
      display: inline-block; background: #c3e6d7; color: #1c4552;
      font-size: 11px; font-weight: 700; padding: 4px 10px;
      border-radius: 20px; width: fit-content; margin-top: 4px;
    }

    /* ── CANDIDATE REVIEWS ── */
    .reviews-section { padding: 96px var(--hpad); }
    .reviews-header { margin-bottom: 56px; }
    .reviews-header h2 {
      font-size: clamp(28px, 3.5vw, 48px); font-weight: 800;
      color: #fff; letter-spacing: -1.5px; line-height: 1.1;
      max-width: 680px; margin-bottom: 14px;
    }
    .reviews-header p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 580px; }
    /* 3-column flex masonry */
    .reviews-grid { display: flex; gap: 18px; align-items: flex-start; }
    .reviews-col { flex: 1; display: flex; flex-direction: column; gap: 18px; }
    .review-card {
      background: #fff; border-radius: 15px; padding: 26px 22px;
      display: flex; flex-direction: column; gap: 14px;
      box-shadow: rgba(0,0,0,0.04) 3px 3px 8px 0px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative; z-index: 1;
    }
    .review-card:hover {
      transform: scale(1.04);
      box-shadow: 0 16px 48px rgba(0,0,0,0.16);
      z-index: 5;
    }
    .review-text { font-size: 13.5px; color: #333; line-height: 1.8; flex: 1; }
    .review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
    .review-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
    .review-author { display: flex; align-items: center; gap: 10px; min-width: 0; }
    .review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    .review-name { font-size: 14px; font-weight: 700; color: #03151a; }
    .review-role { font-size: 12px; color: #777; margin-top: 1px; }
    .review-logo-icon {
      width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
      object-fit: contain; background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
    }

    /* ── CTA STRIP ── */
    .cta-section {
      background: #c3e6d7; padding: 80px var(--hpad);
    }
    .cta-card {
      background: #fff; border-radius: 20px; padding: 56px 52px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
      max-width: 1280px; margin: 0 auto;
    }
    .cta-left { position: relative; z-index: 2; }
    .cta-label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.2px; color: rgba(3,21,26,0.45); margin-bottom: 14px;
    }
    .cta-card h2 {
      font-size: clamp(26px, 3vw, 46px); font-weight: 800;
      color: #03151a; letter-spacing: -1.5px; line-height: 1.08;
      margin-bottom: 20px; max-width: 520px;
      text-decoration: underline; text-decoration-color: #1c4552;
      text-underline-offset: 8px; text-decoration-thickness: 3px;
    }
    .cta-card .cta-left > p {
      font-size: 16px; color: rgba(3,21,26,0.7); line-height: 1.75; max-width: 460px; margin-bottom: 32px;
    }
    .cta-buttons { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
    .btn-cta-dark {
      display: inline-flex; align-items: center;
      background: #111; color: #fff;
      font-size: 16px; font-weight: 700;
      padding: 15px 28px; border-radius: 12px;
      text-decoration: none; width: fit-content;
      transition: background 0.2s;
    }
    .btn-cta-dark:hover { background: #333; }
    .cta-stats { display: flex; flex-direction: column; gap: 8px; }
    .cta-stat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(3,21,26,0.7); font-weight: 500; }
    .cta-stat-icon { font-size: 16px; }
    .cta-right { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; z-index: 2; }
    .cta-photo-wrap {
      position: relative; border-radius: 20px; overflow: hidden;
      max-width: 400px; width: 100%;
    }
    .cta-photo {
      width: 100%; border-radius: 20px; object-fit: cover;
      display: block; filter: grayscale(100%);
      box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    }
    .cta-badges-row {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; width: 100%;
    }
    .cta-badge {
      background: #fff; border-radius: 30px;
      padding: 10px 16px; display: flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      white-space: nowrap; flex: 1; justify-content: center;
    }
    .cta-badge-icon { font-size: 18px; }
    .cta-badge-text { font-size: 13px; font-weight: 700; color: #111; }

    /* ── FOOTER ── */
    footer { padding: 72px var(--hpad) 48px; border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-grid {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-logo { height: 52px; width: auto; margin-bottom: 20px; display: block; }
    .footer-brand-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; margin-bottom: 36px; }
    .footer-legal { margin-top: auto; }
    .footer-legal-links { display: flex; align-items: center; gap: 0; margin-bottom: 18px; }
    .footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-legal-links a:hover { color: #c3e6d7; }
    .footer-legal-sep { font-size: 13px; color: rgba(255,255,255,0.2); margin: 0 10px; }
    .footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 18px; max-width: 300px; }
    .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
    .footer-abn { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: #c3e6d7; }

    /* ── EYEBROW ── */
    .eyebrow {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1.2px; color: #c3e6d7; margin-bottom: 14px;
    }
    .eyebrow.dark { color: rgba(3,21,26,0.45); }

    /* ── FADE UP ── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    /* Override fade-up transition on review cards so hover works correctly */
    .reviews-col .review-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .reviews-col .review-card.fade-up { transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .hero, .teams-section { grid-template-columns: 1fr; }
      .cta-card { grid-template-columns: 1fr; }
      .hero-photo-container, .cta-right { display: none; }
      .process-top, .services-top { grid-template-columns: 1fr; }
      .process-timeline { grid-template-columns: repeat(2, 1fr); }
      .process-timeline::before { display: none; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .nav-overlay { overflow-y: auto; }
      .nav-overlay-header { padding: 16px 24px; }
      .nav-overlay-header img { height: 34px; }
      .nav-overlay-body { padding: 20px 24px; flex-direction: column; gap: 18px; }
      .nav-overlay-col { min-width: unset; }
      .nav-overlay-col + .nav-overlay-col { margin-left: 0; }
      .nav-overlay-col a { font-size: 22px; padding: 5px 0; }
      .nav-overlay-info { margin-left: 0; gap: 18px; }
      .nav-overlay-info-block h4 { font-size: 10px; margin-bottom: 4px; }
      .nav-overlay-info-block p { font-size: 12px; line-height: 1.6; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .btn-nav-dot, .btn-nav-outline { display: none; }
      .hero, .trusted-band, .teams-section, .process-section, .services-section, .testimonials-section, .reviews-section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
      .steps-grid, .service-cards, .testimonials-grid, .process-timeline { grid-template-columns: 1fr; }
      .reviews-grid { flex-direction: column; }
      .hero-line1 { white-space: normal; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .cta-card { padding: 36px 24px; }
      .cta-section { padding-top: 48px; padding-bottom: 48px; }
      .cta-strip-buttons { flex-direction: column; align-items: center; }
      .cta-badges-row { flex-direction: column; align-items: stretch; }
      .t-logo { width: auto; max-width: 160px; }
      .t-logo-lg { width: auto; max-width: 200px; transform: none; }
      .process-section { padding-top: 60px; padding-bottom: 60px; }
      .hero { padding-top: 40px; padding-bottom: 40px; min-height: auto; }
      .hero-stats { font-size: 12px; }
      .stat-num { font-size: 32px; }
      .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 18px; margin-bottom: 18px; }
      .stats-row { flex-wrap: wrap; }
      .nav-overlay-cta { display: flex; flex-direction: row; gap: 10px; padding: 0 24px 8px; }
      .nav-overlay-cta a {
        display: block; text-align: center; padding: 11px 18px;
        border-radius: 10px; font-size: 13px; font-weight: 700; flex: 1;
        text-decoration: none;
      }
      .nav-overlay-cta .overlay-cta-primary { background: #c3e6d7; color: #1c4552; }
      .nav-overlay-cta .overlay-cta-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
      .nav-overlay-cta { display: flex; }
    }
    @media (max-width: 480px) {
      .nav-overlay-header { padding: 12px 16px; }
      .nav-overlay-header img { height: 28px; }
      .nav-overlay-body { padding: 16px 16px; gap: 14px; }
      .nav-overlay-col a { font-size: 20px; padding: 4px 0; }
      .nav-overlay-info { gap: 12px; }
      .nav-overlay-info-block p { font-size: 11px; }
      .nav-overlay-cta a { padding: 10px 14px; font-size: 12px; }
    }
