    @font-face {
      font-family: 'Gambetta';
      src: url('/assets/fonts/Gambetta-VariableItalic.ttf') format('truetype');
      font-style: italic;
      font-weight: 100 900;
      font-display: swap;
    }

    :root {
      --green-dark: #0B3D26;
      --green-electric: #3DF68A;
      --warm: #F8F3EC;
      --black: #0A0A0A;
      --gray: #6B7068;
      --gray-light: #F0EDE7;
      --white: #ffffff;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { overflow-x: hidden; }
    body {
      font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
    }
    em { font-family: 'Gambetta', Georgia, serif; font-style: italic; font-weight: 400; }

    /* ===== NAV ===== */
    .nav {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 100;
      width: 100%; max-width: calc(1200px + 96px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 48px;
      background: transparent;
    }
    .nav-logo svg, .nav-logo img { display: block; }
    .nav-cta {
      padding: 10px 22px; background: var(--black); color: var(--white);
      font-size: 13px; font-weight: 600; border-radius: 100px; text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.32,0.72,0,1); white-space: nowrap;
    }
    .nav-cta:hover { transform: scale(1.04); }

    /* ===== HERO (left-right split) ===== */
    .hero {
      position: relative;
      display: flex;
      align-items: center;
      padding: 160px 48px 120px;
      background: var(--white);
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    /* Left column: text */
    .hero-text {
      position: relative;
      z-index: 2;
    }
    .hero-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--green-dark); margin-bottom: 28px; opacity: 0;
    }
    .hero-heading {
      font-size: clamp(36px, 4.2vw, 60px); font-weight: 900; letter-spacing: -2.5px;
      line-height: 1.06; color: var(--black); margin-bottom: 24px; opacity: 0;
    }
    .hero-heading em { color: var(--green-dark); letter-spacing: -1px; white-space: nowrap; }
    .hero-heading em::after {
      content: '|';
      display: inline-block;
      margin-left: 2px;
      font-style: normal;
      font-weight: 300;
      color: var(--green-dark);
      animation: blink 0.9s step-end infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    .hero-sub {
      font-size: clamp(16px, 1.4vw, 18px); color: var(--gray); max-width: 420px;
      line-height: 1.65; margin-bottom: 40px; opacity: 0;
    }
    .hero-cta {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 16px 34px; background: var(--green-electric); color: var(--green-dark);
      font-size: 16px; font-weight: 700; font-family: 'Satoshi', sans-serif;
      border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.32,0.72,0,1), box-shadow 0.4s cubic-bezier(0.32,0.72,0,1);
      box-shadow: 0 4px 24px rgba(61,246,138,0.25); opacity: 0;
    }
    .hero-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 40px rgba(61,246,138,0.35); }
    .hero-cta:active { transform: scale(0.97); }
    .hero-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
    .hero-proof {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 40px; opacity: 0;
    }
    .hero-proof-img {
      width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
      border: none;
      image-rendering: -webkit-optimize-contrast;
    }
    .hero-proof-text {
      font-size: 14px; font-weight: 500; color: var(--black);
    }
    .hero-proof-sep { color: var(--gray-light); }
    .hero-proof-star { font-weight: 700; }
    .hero-proof-sub { font-size: 13px; color: var(--gray); font-weight: 500; margin-top: 2px; }
    .hero-note { margin-top: 16px; font-size: 13px; color: var(--gray); opacity: 0; }

    /* Right column: phone showcase */
    .showcase-scene {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 580px;
      padding: 20px 0;
    }

    /* Gradient blob behind phone */
    .showcase-gradient {
      position: absolute;
      top: 33%;
      left: calc(45% - 40px);
      transform: translate(-50%, -40%);
      width: 1354px;
      height: 902px;
      pointer-events: none;
      z-index: 0;
    }
    .showcase-gradient img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      opacity: 1;
    }

    /* Phone mockup - large */
    .clay-phone {
      position: relative;
      width: 300px;
      border-radius: 24px;
      box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 12px rgba(0,0,0,0.05),
        0 16px 48px rgba(0,0,0,0.07);
      overflow: hidden;
      z-index: 3;
    }
    .clay-phone-img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 24px;
    }

    /* WhatsApp icon - overlapping top right corner of phone */
    .showcase-wa {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: 120px;
      margin-top: -310px;
      z-index: 7;
      width: 56px;
      height: 56px;
    }
    .showcase-wa img {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 4px 12px rgba(37,211,102,0.3));
    }

    /* Floating cards */
    .ov-el {
      position: absolute;
      z-index: 6;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.05);
    }

    /* Dark green "Klickie recommends" - overlapping phone from left, mid-height */
    .ov-reco {
      background: var(--green-dark);
      color: var(--white);
      border-radius: 14px;
      padding: 14px 16px;
      width: max-content;
      left: 0px;
      bottom: 170px;
    }
    .ov-reco-title {
      font-size: 12px; font-weight: 800; line-height: 1.3; margin-bottom: 6px;
      color: #ffffff;
    }
    .ov-reco-text {
      font-size: 12px; color: #ffffff; line-height: 1.45;
    }

    /* Person card - bottom right, glassmorphism */
    .ov-person {
      background: rgba(255,255,255,0.45);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      border: 1px solid rgba(255,255,255,0.35);
      box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
      border-radius: 20px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      right: -20px;
      bottom: 100px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
    }
    .ov-person-img {
      width: 57px; height: 57px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
    }
    .ov-person-name { font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: -0.3px; }
    .ov-person-role { font-size: 14px; color: #888888; font-weight: 400; margin-top: 2px; }

    /* ===== HOW IT WORKS ===== */
    .hiw-section {
      padding: 0;
      background: #01190E;
    }
    .hiw-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 48px 100px;
    }
    .hiw-top {
      display: flex;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 40px;
    }
    .hiw-heading {
      font-size: 40px;
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.15;
      color: var(--white);
      flex-shrink: 0;
    }
    .hiw-heading strong { font-family: 'Satoshi', sans-serif; font-weight: 900; color: var(--white); }
    .hiw-heading em { font-family: 'Gambetta', Georgia, serif; font-style: italic; font-weight: 500; color: var(--white); }
    .hiw-line {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.2);
      margin-bottom: 10px;
    }
    .hiw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .hiw-card {
      background: #05301C;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hiw-num {
      font-size: 14px;
      font-weight: 700;
      color: var(--green-electric);
      margin-bottom: 10px;
    }
    .hiw-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .hiw-art {
      width: 100%;
      max-width: 200px;
      height: 160px;
      object-fit: contain;
      margin-bottom: 24px;
    }
    .hiw-desc {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255,255,255,0.7);
      margin-top: auto;
    }

    @media (max-width: 768px) {
      h2 { font-size: 32px !important; }
      .hero-heading { font-size: 38px !important; }
      .hiw-section { padding: 0; }
      .hiw-inner { padding: 60px 20px 80px; }
      .hiw-top { flex-direction: column; gap: 16px; align-items: flex-start; }
      .hiw-line { display: none; }
      .hiw-grid { grid-template-columns: 1fr; gap: 12px; }
      .hiw-card { padding: 22px 20px; }
      .hiw-art { max-width: 160px; height: 110px; }
    }

    /* ===== JUST ASK KLICKIE ===== */
    .ask-heading {
      font-size: 40px;
      font-weight: 900;
      letter-spacing: -1.5px;
      color: var(--black);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .ask-logo { height: 28px; display: inline-block; vertical-align: middle; }
    .ask-sub {
      font-size: 16px;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 32px;
    }
    @media (max-width: 768px) {
      #askSection { padding: 80px 0 80px !important; }
      #askSection table,
      #askSection tbody,
      #askSection tr,
      #askSection td {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
      }
      #askSection table { border-spacing: 0 !important; padding: 0 !important; }
      #askSection td:first-child {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 !important;
      }
      #askSection td:first-child > div > img:last-child {
        max-width: 320px !important;
        margin: 0 auto;
      }
      #askSection td:last-child { text-align: center; padding: 0 20px !important; }
      .ask-heading { justify-content: center; }
      .ask-logo { height: clamp(22px, 4vw, 28px) !important; }
      .friend-cta { margin: 0 auto; }
      #askSection .friend-scroll-wrap { margin-left: auto; margin-right: auto; }
      .ask-blob-img { left: calc(-40% - 110px) !important; }
    }
    .friend-scroll-wrap {
      position: relative;
      margin-bottom: 40px;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      overflow-x: auto;
      scrollbar-width: none;
      cursor: grab;
      -webkit-user-select: none;
      user-select: none;
    }
    .friend-scroll-wrap::-webkit-scrollbar { display: none; }
    .friend-scroll-wrap.dragging { cursor: grabbing; }
    .friend-scroll {
      display: flex;
      gap: 10px;
      width: max-content;
      padding: 4px 48px;
    }
    .friend-pill {
      flex-shrink: 0;
      padding: 9px 20px;
      border-radius: 6px;
      border: none;
      background: #F4F4F4;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray);
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
    }
    .friend-pill:hover {
      background: #E8E8E8;
      color: var(--black);
    }
    .friend-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 40px;
      background: var(--green-electric);
      color: var(--green-dark);
      font-size: 16px;
      font-weight: 700;
      font-family: 'Satoshi', sans-serif;
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.32,0.72,0,1), box-shadow 0.3s;
      box-shadow: 0 4px 24px rgba(61,246,138,0.25);
    }
    .friend-cta:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 8px 40px rgba(61,246,138,0.35);
    }

    @media (max-width: 768px) {
      .friend-scroll { padding: 4px 20px; gap: 8px; }
      .friend-pill { padding: 7px 16px; font-size: 13px; }
    }

    /* ===== SERVICES ===== */
    .services-section {
      padding: 100px 24px 120px;
      background: var(--white);
    }
    .services-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .services-heading {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900;
      letter-spacing: -2px;
      color: var(--black);
      text-align: center;
      margin-bottom: 56px;
    }
    .services-heading em { color: var(--green-dark); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .service-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px 16px 20px;
      border-radius: 16px;
      border: 1px solid var(--gray-light);
      text-decoration: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      background: var(--white);
    }
    .service-card:hover {
      border-color: rgba(61,246,138,0.4);
      box-shadow: 0 4px 20px rgba(61,246,138,0.08);
    }
    .service-art {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 14px;
    }
    .service-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--black);
    }

    @media (max-width: 768px) {
      .services-section { padding: 80px 20px 100px; }
      .services-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .service-card { padding: 16px 10px 14px; border-radius: 12px; }
      .service-art { width: 56px; height: 56px; margin-bottom: 10px; }
      .service-name { font-size: 12px; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===== FAQ ===== */
    .faq-item {
      background: var(--white);
      border-radius: 14px;
      border: 1px solid var(--gray-light);
      overflow: hidden;
    }
    .faq-q {
      width: 100%; padding: 20px 24px; border: none; background: none;
      font-family: 'Satoshi', sans-serif; font-size: 16px; font-weight: 700;
      color: var(--black); text-align: left; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .faq-arrow {
      font-size: 20px; font-weight: 400; color: var(--gray);
      transition: transform 0.3s;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden; padding: 0 24px;
      font-size: 15px; line-height: 1.6; color: var(--gray);
      transition: max-height 0.35s cubic-bezier(0.32,0.72,0,1), padding 0.35s;
    }
    .faq-item.open .faq-a {
      max-height: 200px; padding: 0 24px 20px;
    }

    /* ===== TEXT REVEAL ===== */
    .reveal-section { padding: 24px; background: var(--white); }
    .reveal-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px;
      background: var(--warm);
      border-radius: 32px;
      text-align: center;
    }
    .reveal-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--green-dark); margin-bottom: 32px; opacity: 0;
    }
    .reveal-heading {
      font-size: 40px; font-weight: 900; letter-spacing: -1.5px;
      line-height: 1.2; color: var(--green-dark); margin-bottom: 36px;
    }
    .reveal-body { font-size: clamp(18px, 2vw, 22px); line-height: 1.75; color: var(--gray); }
    .reveal-body .word { display: inline; opacity: 0.12; transition: opacity 0.1s ease; }
    .reveal-body .word.active { opacity: 1; color: var(--black); }

    /* ===== VALUE ===== */
    .value-section { padding: 120px 24px 140px; background: var(--white); }
    .value-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
      color: var(--green-dark); text-align: center; margin-bottom: 48px; opacity: 0;
    }
    .value-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .value-card {
      padding: 44px 32px; border-radius: 20px; background: var(--warm);
      border: 1px solid var(--gray-light); opacity: 0; transform: translateY(32px);
    }
    .value-card-icon {
      width: 48px; height: 48px; border-radius: 14px; background: var(--green-dark);
      display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
    }
    .value-card-icon svg { width: 24px; height: 24px; color: var(--green-electric); }
    .value-card-title {
      font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
      color: var(--black); margin-bottom: 12px; line-height: 1.25;
    }
    .value-card-text { font-size: 15px; line-height: 1.6; color: var(--gray); }

    /* ===== TRUST ===== */
    .trust-strip { padding: 0 24px 100px; background: var(--white); }
    .trust-strip-row {
      max-width: 800px; margin: 0 auto; display: flex;
      align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
    }
    .trust-strip-item { display: flex; align-items: center; gap: 12px; }
    .trust-strip-num { font-size: 28px; font-weight: 900; letter-spacing: -1px; color: var(--green-dark); }
    .trust-strip-label { font-size: 13px; color: var(--gray); line-height: 1.3; }
    .trust-strip-label strong { display: block; color: var(--black); font-weight: 600; }
    .trust-strip-divider { width: 1px; height: 36px; background: var(--gray-light); }

    /* ===== FINAL CTA ===== */
    .final-cta {
      padding: 100px 24px; background: var(--green-dark); text-align: center;
      position: relative; overflow: hidden;
    }
    .final-cta::before {
      content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
      width: 140%; height: 80%;
      background: radial-gradient(ellipse at center, rgba(61,246,138,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
    .final-heading {
      font-size: clamp(30px, 5vw, 44px); font-weight: 900; letter-spacing: -2px;
      line-height: 1.1; color: #fff; max-width: 650px; margin: 0 auto 16px;
    }
    .final-heading em { color: var(--green-electric); }
    .final-sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 44px; }
    .final-btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 18px 40px; background: var(--green-electric); color: var(--green-dark);
      font-size: 17px; font-weight: 700; font-family: 'Satoshi', sans-serif;
      border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.32,0.72,0,1), box-shadow 0.4s cubic-bezier(0.32,0.72,0,1);
      box-shadow: 0 4px 32px rgba(61,246,138,0.25);
    }
    .final-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 48px rgba(61,246,138,0.35); }
    .final-btn:active { transform: scale(0.97); }
    .final-btn svg { width: 22px; height: 22px; }

    /* ===== PEOPLE ON KLICKIE ===== */
    .people-section { padding: 0 0 100px; background: var(--white); }
    .people-inner {
      max-width: calc(1200px + 96px); margin: 0 auto; padding: 0 48px;
    }
    .people-heading {
      font-size: 28px; font-weight: 900; letter-spacing: -1.5px;
      color: var(--black); margin-bottom: 32px;
    }
    .people-track-wrap { position: relative; overflow: visible; }
    .people-track {
      display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
      -ms-overflow-style: none; scrollbar-width: none;
    }
    .people-card { scroll-snap-align: start; }
    .people-track::-webkit-scrollbar { display: none; }
    .people-card { flex-shrink: 0; width: 260px; }
    .people-card-img-wrap { overflow: hidden; border-radius: 16px; margin-bottom: 12px; }
    .people-card img {
      width: 260px; height: 195px; object-fit: cover;
      display: block; transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
    }
    .people-card:hover img { transform: scale(1.04); }
    .people-card-name { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 2px; transition: color 0.2s; }
    .people-card:hover .people-card-name { color: var(--green-dark); }
    .people-card-role { font-size: 14px; color: var(--black); }
    .people-arrow-left {
      position: absolute; left: -24px; top: 97px; transform: translateY(-50%);
    }
    .people-arrow-right {
      position: absolute; right: -24px; top: 97px; transform: translateY(-50%);
    }
    .people-arrow {
      width: 48px; height: 48px; border-radius: 50%; background: var(--white);
      border: 1.5px solid var(--gray-light); display: flex; align-items: center;
      justify-content: center; cursor: pointer; z-index: 2;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transition: all 0.3s cubic-bezier(0.32,0.72,0,1);
      font-size: 18px; color: var(--black);
    }
    @media (hover: hover) {
      .people-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
    }
    .people-arrow:active { background: var(--black); color: var(--white); border-color: var(--black); }

    /* ===== FOOTER ===== */
    footer {
      padding: 36px 24px; background: var(--green-dark);
      border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
    }
    .footer-text { font-size: 13px; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 10px; }
    .footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding: 120px 20px 80px;
      }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
      }
      .hero-text { display: flex; flex-direction: column; align-items: center; }
      .hero-sub { margin-left: auto; margin-right: auto; }
      .hero-heading { letter-spacing: -1.5px; }
      .hero-proof { justify-content: center; }
      .hero-proof-text { text-align: left; }
      .showcase-scene { min-height: 480px; padding: 10px 0; }
      .showcase-gradient { width: 1053px !important; height: 702px !important; top: calc(45% - 20px) !important; left: calc(50% - 65px) !important; transform: translate(-50%, -40%) !important; }
      .clay-phone { width: 242px; border-radius: 20px; }
      .clay-phone-img { border-radius: 20px; }
      .showcase-wa { width: 50px; height: 50px; margin-left: 103px; margin-top: -255px; }
      .ov-reco { left: clamp(-5px, calc(50% - 170px), 20px); bottom: 122px; padding: 10px 12px; text-align: left; }
      .ov-reco-title { font-size: 11px; text-align: left; }
      .ov-reco .ov-reco-num { margin-bottom: 0px !important; font-size: 17px !important; }
      .ov-reco-text { font-size: 10px; text-align: left; }
      .ov-person { right: clamp(-5px, calc(50% - 170px), 20px); bottom: 64px; padding: 10px 14px; gap: 8px; border-radius: 14px; }
      .ov-person-img { width: 36px; height: 36px; }
      .ov-person-name { font-size: 12px; text-align: left; }
      .ov-person-role { font-size: 10px; text-align: left; }
      .value-grid { grid-template-columns: 1fr; gap: 14px; }
      .value-card { padding: 32px 24px; }
      .value-section { padding: 80px 20px 100px; }
      .reveal-section { padding: 16px; }
      .reveal-container { padding: 60px 24px; border-radius: 24px; }
      .trust-strip { padding-top: 0 !important; }
      .trust-strip-row { flex-direction: column; gap: 20px; }
      .trust-strip-divider { display: none; }
      .final-cta { padding: 100px 20px; }
      .nav { padding: 14px 20px; }
      .nav-logo img { width: 100px !important; height: auto !important; }
      .nav-cta { padding: 8px 16px; font-size: 13px; }
      .people-section { padding: 32px 0 72px; }
      .people-inner { padding: 0 20px; }
      .people-heading { font-size: 24px !important; }
      .people-track { gap: 16px; }
      .people-card { width: 200px; }
      .people-card img { width: 200px; height: 150px; }
      .people-card-img-wrap { border-radius: 12px; }
      .people-arrow { display: none !important; }
    }
