:root {
      --blue-deep: #0E52B0;
      --blue: #1B76E0;
      --blue-light: #E8F2FF;
      --green: #5FB93A;
      --green-light: #EFF9E8;
      --violet: #7C5CFC;
      --violet-light: #F1EDFF;
      --amber: #FFB020;
      --navy: #0B1B33;
      --ink: #334156;
      --paper: #F7F9FC;
      --white: #FFFFFF;
      --line: #E1E7F0;
      --radius: 16px;
      --coord-font: 'JetBrains Mono', monospace;
      --disp-font: 'Space Grotesk', sans-serif;
      --body-font: 'Inter', sans-serif;
    }

    /* ---------- Ambient colour atmosphere (site-wide) ---------- */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(620px circle at 88% 6%, rgba(95, 185, 58, 0.12), transparent 60%),
        radial-gradient(760px circle at 6% 26%, rgba(27, 118, 224, 0.12), transparent 62%),
        radial-gradient(560px circle at 55% 92%, rgba(124, 92, 252, 0.10), transparent 60%),
        radial-gradient(420px circle at 95% 70%, rgba(255, 176, 32, 0.08), transparent 55%);
      pointer-events: none;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 60;
      pointer-events: none;
      opacity: 0.025;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--body-font);
      color: var(--navy);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--disp-font);
      margin: 0;
      letter-spacing: -0.02em;
    }

    p {
      margin: 0;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    section {
      padding: 64px 0;
    }

    @media (max-width:720px) {
      section {
        padding: 44px 0;
      }

      .wrap {
        padding: 0 20px;
      }
    }

    ::selection {
      background: var(--green);
      color: white;
    }

    :focus-visible {
      outline: 3px solid var(--blue);
      outline-offset: 3px;
    }

    /* ---------- Scroll Animations ---------- */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-1 {
      transition-delay: 0.1s;
    }

    .stagger-2 {
      transition-delay: 0.2s;
    }

    .stagger-3 {
      transition-delay: 0.3s;
    }

    /* ---------- Typography Utilities ---------- */
    .text-gradient {
      background: linear-gradient(135deg, var(--blue), var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ---------- Coordinate eyebrow tag ---------- */
    .coord {
      font-family: var(--coord-font);
      font-size: 12.5px;
      letter-spacing: 0.02em;
      color: var(--blue-deep);
      background: var(--blue-light);
      padding: 5px 12px;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .coord::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px var(--green-light);
    }

    @media (max-width: 420px) {
      .coord {
        white-space: normal;
        font-size: 11px;
        line-height: 1.5;
      }
    }

    /* ---------- Nav ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11, 27, 51, 0.55);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    header.scrolled {
      background: rgba(11, 27, 51, 0.85);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }

    .logo-mark {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--disp-font);
      font-weight: 700;
      font-size: 22px;
      letter-spacing: -0.01em;
      color: var(--white);
      transition: transform 0.2s ease;
    }

    .logo-mark:hover {
      transform: scale(1.02);
    }

    .logo-pin {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 12px;
      padding: 6px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .logo-pin img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 4px;
    }

    @media (max-width: 600px) {
      .logo-mark {
        font-size: 18px;
        gap: 9px;
      }

      .logo-pin {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        padding: 5px;
      }
    }

    .nav-links {
      display: flex;
      gap: 36px;
      align-items: center;
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--blue), var(--green));
      color: white !important;
      padding: 10px 22px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s ease;
      box-shadow: 0 4px 16px rgba(27, 118, 224, 0.35);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(27, 118, 224, 0.45);
      filter: brightness(1.06);
    }

    .nav-toggle {
      display: none;
    }

    @media (max-width:860px) {
      .nav-links {
        position: fixed;
        inset: 64px 0 auto 0;
        background: var(--navy);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-130%);
        transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

      .nav-links.open {
        transform: translateY(0);
      }

      .nav-links a {
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .nav-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
      }

      .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
      }

      .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
    }

    /* ---------- Hero ---------- */
    .hero {
      padding-top: 72px;
      padding-bottom: 96px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(165deg, #0B1B33 0%, #0E2547 55%, #0B1B33 100%);
    }

    .hero-bg-glow {
      position: absolute;
      inset: -10%;
      z-index: 0;
      background:
        radial-gradient(620px circle at 82% 8%, rgba(95, 185, 58, 0.28), transparent 60%),
        radial-gradient(680px circle at 6% 18%, rgba(27, 118, 224, 0.32), transparent 58%),
        radial-gradient(520px circle at 46% 96%, rgba(124, 92, 252, 0.18), transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 44px 44px;
      -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 90%);
      mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 90%);
      pointer-events: none;
    }

    .hero .wrap {
      position: relative;
      z-index: 1;
    }

    .hero .coord {
      background: rgba(255, 255, 255, 0.08);
      color: #BFE0FF;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero .coord::before {
      box-shadow: 0 0 0 3px rgba(95, 185, 58, 0.25);
    }

    .hero h1 {
      color: var(--white);
    }

    .hero .text-gradient {
      background: linear-gradient(135deg, #5FA9FF, var(--green));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero p.lead {
      color: rgba(255, 255, 255, 0.68);
    }

    .hero .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--green));
      box-shadow: 0 10px 26px rgba(27, 118, 224, 0.35);
    }

    .hero .btn-primary:hover {
      background: linear-gradient(135deg, var(--blue), var(--green));
      filter: brightness(1.08);
      box-shadow: 0 14px 32px rgba(27, 118, 224, 0.45);
    }

    .hero .btn-ghost {
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
      border: 1.5px solid rgba(255, 255, 255, 0.18);
    }

    .hero .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.35);
      color: var(--white);
    }

    .hero-note {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.5);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* STORE BADGES */
    .store-badges {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .store-badges a {
      display: inline-flex;
      line-height: 0;
      border-radius: 10px;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .store-badges a:hover {
      transform: translateY(-2px);
      filter: brightness(1.1);
    }

    .store-badges img {
      display: block;
      width: 168px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 480px) {
      .store-badges img {
        width: 150px;
      }
    }

    @media (max-width: 400px) {
      .store-badges {
        flex-direction: column;
        align-items: flex-start;
      }

      .store-badges img {
        width: 180px;
      }
    }

    /* Hero store badges — sized up slightly for more presence */
    .hero-store-badges {
      gap: 16px;
    }

    .hero-store-badges img {
      width: 196px;
    }

    @media (max-width: 480px) {
      .hero-store-badges img {
        width: 172px;
      }
    }

    @media (max-width: 400px) {
      .hero-store-badges img {
        width: 200px;
      }
    }

    .cta-band .store-badges {
      justify-content: center;
      margin-bottom: 0;
    }

    @media (max-width: 400px) {
      .cta-band .store-badges {
        align-items: center;
      }
    }

    @media (max-width: 720px) {
      .hero {
        padding-top: 56px;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
    }

    @media (max-width:960px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
    }

    .hero h1 {
      font-size: clamp(38px, 5.5vw, 64px);
      line-height: 1.05;
      font-weight: 700;
      margin: 24px 0 24px;
    }

    .hero p.lead {
      font-size: 18px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      max-width: 500px;
      margin-bottom: 36px;
    }

    .btn-row {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    @media (max-width: 480px) {
      .btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .btn-row .btn {
        width: 100%;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 15px;
      transition: all .2s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--navy);
      color: white;
      box-shadow: 0 8px 20px rgba(11, 27, 51, 0.15);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(11, 27, 51, 0.3);
      background: var(--blue-deep);
    }

    .btn-ghost {
      background: white;
      color: var(--navy);
      border: 1.5px solid var(--line);
    }

    .btn-ghost:hover {
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(27, 118, 224, 0.1);
    }

    /* Stamped photo card — 3D Interactive, wraps a real device screenshot */
    .hero-visual {
      perspective: 1200px;
      display: flex;
      justify-content: center;
      position: relative;
    }

    .hero-visual::before {
      content: '';
      position: absolute;
      inset: -40px;
      background: radial-gradient(circle, rgba(27, 118, 224, 0.16), transparent 65%);
      z-index: -1;
      filter: blur(10px);
    }

    .stamp-card {
      position: relative;
      background: transparent;
      padding: 0;
      transform: rotateY(-8deg) rotateX(3deg) rotateZ(2deg);
      transition: transform 0.1s ease-out;
      /* For JS tilt effect */
      transform-style: preserve-3d;
      width: 100%;
      max-width: 280px;
    }

    .stamp-card .phone-frame {
      width: 100%;
      transform: translateZ(30px);
      box-shadow: 0 40px 70px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 70px rgba(27, 118, 224, 0.25);
    }

    .stamp-photo {
      aspect-ratio: 4/5;
      border-radius: 16px;
      background:
        radial-gradient(circle at 30% 20%, rgba(95, 185, 58, 0.4), transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(27, 118, 224, 0.6), transparent 60%),
        linear-gradient(160deg, #16305C, #0B1B33 80%);
      position: relative;
      overflow: hidden;
      transform: translateZ(20px);
      /* 3D pop */
    }

    .stamp-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .stamp-overlay {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      background: rgba(11, 27, 51, 0.75);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 14px;
      padding: 16px;
      color: white;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transform: translateZ(40px);
      /* 3D pop */
    }

    .stamp-map {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--green), var(--blue));
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .stamp-map::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 10px;
      height: 10px;
      background: white;
      border-radius: 50% 50% 50% 0;
      transform: translate(-50%, -70%) rotate(-45deg);
    }

    .stamp-text .coord {
      background: rgba(255, 255, 255, 0.15);
      color: #DCEBFF;
      margin-bottom: 8px;
      font-size: 11px;
    }

    .stamp-text .coord::before {
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(95, 185, 58, 0.3);
    }

    .stamp-text .place {
      font-size: 14.5px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .stamp-text .datetime {
      font-family: var(--coord-font);
      font-size: 12px;
      color: #A9B8CE;
    }

    .stamp-pulse {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(95, 185, 58, 0.7);
      animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    }

    @keyframes pulse {
      to {
        box-shadow: 0 0 0 16px rgba(95, 185, 58, 0);
      }
    }

    /* ---------- Phone frame (real device screenshots) ---------- */
    .phone-frame {
      position: relative;
      aspect-ratio: 9 / 19.5;
      background: linear-gradient(160deg, #1c2c46, var(--navy) 70%);
      border-radius: 34px;
      padding: 8px;
      box-shadow: 0 24px 48px -18px rgba(11, 27, 51, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    }

    .phone-frame::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 58px;
      height: 16px;
      background: var(--navy);
      border-radius: 0 0 12px 12px;
      z-index: 2;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      border-radius: 26px;
      overflow: hidden;
      position: relative;
      background: var(--navy);
    }

    .phone-screen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ---------- Screens gallery (real product screenshots) ---------- */
    .screens-section {
      position: relative;
      overflow: hidden;
    }

    .screens-section::before {
      content: '';
      position: absolute;
      inset: -8% -6%;
      z-index: -1;
      background:
        radial-gradient(480px circle at 14% 24%, rgba(27, 118, 224, 0.16), transparent 60%),
        radial-gradient(520px circle at 86% 30%, rgba(95, 185, 58, 0.16), transparent 60%),
        radial-gradient(420px circle at 50% 96%, rgba(124, 92, 252, 0.14), transparent 60%);
    }

    .screens-gallery {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 24px 0 8px;
    }

    .screens-gallery .phone-frame {
      width: 200px;
      flex-shrink: 0;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    }

    .screens-gallery .ph-side {
      transform: translateY(26px);
    }

    .screens-gallery .ph-left {
      transform: translateY(26px) rotate(-8deg);
      margin-right: -34px;
      z-index: 1;
    }

    .screens-gallery .ph-right {
      transform: translateY(26px) rotate(8deg);
      margin-left: -34px;
      z-index: 1;
    }

    .screens-gallery .ph-center {
      width: 232px;
      transform: translateY(-10px);
      z-index: 3;
      box-shadow: 0 40px 70px -20px rgba(11, 27, 51, 0.45);
    }

    .screens-gallery .phone-frame:hover {
      transform: translateY(0) scale(1.04) !important;
      z-index: 5;
      box-shadow: 0 30px 60px -15px rgba(11, 27, 51, 0.4);
    }

    @media (max-width: 640px) {
      .screens-gallery {
        gap: 0;
      }

      .screens-gallery .phone-frame {
        width: 118px;
      }

      .screens-gallery .ph-center {
        width: 148px;
      }

      .screens-gallery .ph-left {
        margin-right: -22px;
      }

      .screens-gallery .ph-right {
        margin-left: -22px;
      }
    }

    .screens-captions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 760px;
      margin: 44px auto 0;
      text-align: center;
    }

    @media (max-width: 640px) {
      .screens-captions {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .screens-captions .cap-step {
      font-family: var(--coord-font);
      font-size: 12px;
      color: var(--blue-deep);
      background: var(--blue-light);
      display: inline-block;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }

    .screens-captions h4 {
      font-size: 15.5px;
      margin-bottom: 6px;
    }

    .screens-captions p {
      font-size: 13.5px;
      color: var(--ink);
      line-height: 1.55;
    }

    .screens-badges {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .screens-badges span {
      font-family: var(--coord-font);
      font-size: 12px;
      font-weight: 500;
      color: var(--navy);
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--line);
      backdrop-filter: blur(8px);
      padding: 7px 16px;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .screens-badges span::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
    }

    /* ---------- Trust strip ---------- */
    .trust-strip {
      padding: 40px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .trust-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 32px;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-width: 150px;
      flex: 1;
    }

    .trust-item .num {
      font-family: var(--disp-font);
      font-weight: 700;
      font-size: 32px;
      color: var(--navy);
    }

    .trust-item .lbl {
      font-size: 14px;
      color: #6B7789;
      line-height: 1.4;
    }

    /* ---------- Section heads ---------- */
    .section-head {
      max-width: 640px;
      margin-bottom: 56px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .eyebrow {
      font-family: var(--coord-font);
      font-size: 12.5px;
      color: var(--green);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      display: block;
      margin-bottom: 16px;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.8vw, 42px);
      margin-bottom: 18px;
    }

    .section-head p {
      font-size: 17px;
      color: var(--ink);
      line-height: 1.6;
    }

    /* ---------- Features ---------- */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width:860px) {
      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:560px) {
      .feature-grid {
        grid-template-columns: 1fr;
      }
    }

    .feature-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px;
      transition: all .25s ease;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 480px) {
      .feature-card {
        padding: 24px;
      }
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px -12px rgba(11, 27, 51, 0.1);
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-light);
      font-size: 20px;
    }

    .feature-card:nth-child(3n-1) .feature-icon {
      background: var(--green-light);
    }

    .feature-card h3 {
      font-size: 19px;
      margin-bottom: 12px;
    }

    .feature-card p {
      font-size: 15px;
      color: var(--ink);
      line-height: 1.6;
    }

    /* ---------- Use cases ---------- */
    .usecase-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    @media (max-width:860px) {
      .usecase-strip {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width:560px) {
      .usecase-strip {
        grid-template-columns: 1fr;
      }
    }

    .usecase {
      background: white;
      padding: 32px 24px;
      transition: background 0.3s ease;
    }

    .usecase:hover {
      background: #FAFCFF;
    }

    .usecase .coord {
      margin-bottom: 18px;
    }

    .usecase h3 {
      font-size: 16.5px;
      margin-bottom: 10px;
    }

    .usecase p {
      font-size: 14px;
      color: var(--ink);
      line-height: 1.55;
    }

    /* ---------- How it works ---------- */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }

    @media (max-width:860px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    .step {
      position: relative;
      padding-top: 10px;
    }

    .step .step-coord {
      font-family: var(--coord-font);
      font-size: 14px;
      color: var(--blue);
      margin-bottom: 18px;
      display: inline-block;
      background: var(--blue-light);
      padding: 4px 12px;
      border-radius: 100px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .step p {
      font-size: 15px;
      color: var(--ink);
      line-height: 1.6;
    }

    .step-line {
      position: absolute;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--green));
      width: 48px;
      border-radius: 3px;
    }

    /* ---------- Export & Reports (NEW) ---------- */
    .export-section {
      background: transparent;
      border-top: 1px solid var(--line);
    }

    .export-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (max-width: 860px) {
      .export-grid {
        grid-template-columns: 1fr;
      }
    }

    .export-visual {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .export-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: white;
      padding: 16px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 16px;
      border: 1px solid var(--line);
    }

    .export-icon {
      font-size: 24px;
    }

    .export-text h4 {
      font-family: var(--body-font);
      font-size: 16px;
      margin-bottom: 4px;
    }

    .export-text p {
      font-size: 13px;
      color: var(--ink);
    }

    /* ---------- Security (NEW) ---------- */
    .security-banner {
      background: var(--navy);
      border-radius: 24px;
      padding: 48px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      box-shadow: 0 20px 40px rgba(11, 27, 51, 0.2);
    }

    @media (max-width: 640px) {
      .security-banner {
        padding: 32px 24px;
        border-radius: 18px;
      }
    }

    @media (max-width: 480px) {
      .security-badges {
        flex-direction: column;
        gap: 20px;
      }
    }

    @media (max-width: 860px) {
      .security-banner {
        flex-direction: column;
        text-align: center;
      }
    }

    .security-text h2 {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .security-text p {
      font-size: 16px;
      color: #A9B8CE;
      max-width: 500px;
      line-height: 1.6;
    }

    .security-badges {
      display: flex;
      gap: 24px;
    }

    .badge-item {
      text-align: center;
    }

    .badge-item .icon {
      font-size: 32px;
      margin-bottom: 12px;
      display: block;
    }

    .badge-item span {
      font-size: 13px;
      font-weight: 600;
      color: white;
      letter-spacing: 0.5px;
    }

    /* ---------- Pricing (NEW) ---------- */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (max-width: 720px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    .pricing-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 40px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    @media (max-width: 480px) {
      .pricing-card {
        padding: 28px 24px;
        border-radius: 18px;
      }
    }

    .pricing-card:hover {
      transform: translateY(-4px);
    }

    .pricing-card.popular {
      border: 2px solid var(--blue);
      box-shadow: 0 20px 40px -10px rgba(27, 118, 224, 0.15);
    }

    .badge-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--blue);
      color: white;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 16px;
      border-radius: 100px;
    }

    .pricing-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .pricing-card p.desc {
      font-size: 15px;
      color: var(--ink);
      margin-bottom: 24px;
      height: 48px;
    }

    .price {
      font-family: var(--disp-font);
      font-size: 48px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 32px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .price span {
      font-size: 16px;
      font-weight: 400;
      color: #6B7789;
      font-family: var(--body-font);
    }

    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 32px 0;
    }

    .plan-features li {
      font-size: 15px;
      color: var(--ink);
      margin-bottom: 16px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .plan-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
    }

    .pricing-card .btn {
      width: 100%;
    }

    /* ---------- Testimonials ---------- */
    .testimonials {
      background: transparent;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 860px) {
      .test-grid {
        grid-template-columns: 1fr;
      }
    }

    .test-card {
      background: var(--white);
      padding: 32px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: 0 20px 40px -20px rgba(11, 27, 51, 0.12);
    }

    .test-stars {
      color: #F59E0B;
      font-size: 18px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .test-quote {
      font-size: 15px;
      line-height: 1.6;
      color: var(--navy);
      margin-bottom: 24px;
      font-style: italic;
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .test-author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: var(--blue);
    }

    .test-author-info h4 {
      font-family: var(--body-font);
      font-size: 14px;
      margin: 0 0 2px 0;
    }

    .test-author-info p {
      font-size: 12px;
      color: #6B7789;
    }

    /* ---------- CTA band ---------- */
    .cta-band {
      background: var(--navy);
      border-radius: 32px;
      padding: 80px 48px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 80px -20px rgba(11, 27, 51, 0.5);
    }

    @media (max-width: 640px) {
      .cta-band {
        padding: 48px 24px;
        border-radius: 22px;
      }
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(27, 118, 224, 0.4), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(95, 185, 58, 0.35), transparent 50%);
    }

    .cta-band>* {
      position: relative;
    }

    .cta-band h2 {
      color: white;
      font-size: clamp(32px, 4.5vw, 48px);
      margin-bottom: 20px;
    }

    .cta-band p {
      color: #DCEBFF;
      font-size: 18px;
      margin-bottom: 40px;
      max-width: 520px;
      margin-inline: auto;
      line-height: 1.6;
    }

    .cta-band .btn-row {
      justify-content: center;
      margin-bottom: 0;
    }

    @media (max-width: 480px) {
      .cta-band .btn-row {
        align-items: center;
      }

      .cta-band .btn-row .btn {
        width: 100%;
        max-width: 320px;
      }
    }

    .cta-band .btn-ghost {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
    }

    .cta-band .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: white;
    }

    .cta-band .btn-primary {
      background: white;
      color: var(--navy);
    }

    .cta-band .btn-primary:hover {
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
      transform: translateY(-3px) scale(1.02);
    }

    /* ---------- FAQ ---------- */
    .faq-list {
      max-width: 760px;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 24px 0;
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: var(--disp-font);
      font-weight: 600;
      font-size: 18px;
      gap: 20px;
      transition: color 0.2s ease;
    }

    .faq-q:hover {
      color: var(--blue);
    }

    .faq-q .plus {
      font-size: 24px;
      font-weight: 400;
      color: var(--blue);
      transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .faq-item.open .plus {
      transform: rotate(45deg);
      color: var(--navy);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
      font-size: 15px;
      color: var(--ink);
      line-height: 1.6;
      opacity: 0;
    }

    .faq-item.open .faq-a {
      max-height: 250px;
      padding-top: 16px;
      opacity: 1;
    }

    /* ---------- Footer ---------- */
    footer {
      background: linear-gradient(160deg, var(--navy), #071324 85%);
      padding: 80px 0 32px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(560px circle at 12% 0%, rgba(27, 118, 224, 0.16), transparent 60%),
        radial-gradient(480px circle at 92% 100%, rgba(95, 185, 58, 0.14), transparent 60%);
      pointer-events: none;
    }

    footer .wrap {
      position: relative;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-brand .logo-mark {
      color: var(--white);
    }

    .footer-brand p {
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.55);
      max-width: 300px;
      margin-top: 18px;
      line-height: 1.6;
    }

    .footer-cols {
      display: contents;
    }

    @media (max-width: 720px) {
      .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 460px) {
      .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    .footer-col h4 {
      font-size: 13.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--white);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-col a {
      display: block;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 14px;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--white);
      transform: translateX(2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ---------- Legal pages (Privacy / Terms) ---------- */
    .legal-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .legal-meta .coord {
      background: rgba(255, 255, 255, 0.08);
      color: #BFE0FF;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .legal-meta .coord::before {
      box-shadow: 0 0 0 3px rgba(95, 185, 58, 0.25);
    }

    .legal-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 56px;
      align-items: start;
    }

    @media (max-width: 900px) {
      .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    .legal-toc {
      position: sticky;
      top: 96px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px 20px;
    }

    @media (max-width: 900px) {
      .legal-toc {
        position: static;
      }
    }

    .legal-toc h4 {
      font-size: 12.5px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8492A6;
      margin-bottom: 14px;
    }

    .legal-toc a {
      display: block;
      font-size: 14px;
      color: var(--ink);
      padding: 7px 0;
      border-left: 2px solid transparent;
      padding-left: 12px;
      margin-left: -13px;
      transition: all 0.2s ease;
    }

    .legal-toc a:hover {
      color: var(--blue);
      border-left-color: var(--blue-light);
    }

    .legal-content {
      max-width: 720px;
    }

    .legal-callout {
      background: var(--blue-light);
      border: 1px solid rgba(27, 118, 224, 0.15);
      border-radius: var(--radius);
      padding: 24px 26px;
      margin-bottom: 48px;
    }

    .legal-callout h4 {
      font-size: 14.5px;
      color: var(--blue-deep);
      margin-bottom: 10px;
    }

    .legal-callout ul {
      margin: 0;
      padding-left: 20px;
    }

    .legal-callout li {
      font-size: 14.5px;
      color: var(--navy);
      line-height: 1.7;
    }

    .legal-section {
      padding-top: 8px;
      margin-bottom: 48px;
      scroll-margin-top: 96px;
    }

    .legal-section:last-child {
      margin-bottom: 0;
    }

    .legal-section .step-num {
      font-family: var(--coord-font);
      font-size: 13px;
      color: var(--blue-deep);
      background: var(--blue-light);
      display: inline-block;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 14px;
    }

    .legal-section h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .legal-section h3 {
      font-size: 17px;
      margin: 24px 0 10px;
    }

    .legal-section p {
      font-size: 15px;
      color: var(--ink);
      line-height: 1.75;
      margin-bottom: 14px;
    }

    .legal-section ul {
      margin: 0 0 14px;
      padding-left: 20px;
    }

    .legal-section li {
      font-size: 15px;
      color: var(--ink);
      line-height: 1.75;
      margin-bottom: 8px;
    }

    .legal-section a {
      color: var(--blue);
      font-weight: 500;
    }

    .legal-section a:hover {
      text-decoration: underline;
    }

    .legal-divider {
      border: none;
      border-top: 1px solid var(--line);
      margin: 48px 0;
    }

    .legal-footnote {
      font-size: 13.5px;
      color: #8492A6;
      line-height: 1.7;
    }


    .page-hero {
      padding: 88px 0 64px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(165deg, #0B1B33 0%, #0E2547 55%, #0B1B33 100%);
    }

    .page-hero .wrap {
      position: relative;
      z-index: 1;
    }

    .page-hero-bg {
      position: absolute;
      inset: -10%;
      background:
        radial-gradient(560px circle at 82% 0%, rgba(95, 185, 58, 0.25), transparent 60%),
        radial-gradient(620px circle at 4% 30%, rgba(27, 118, 224, 0.28), transparent 58%);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 18px;
    }

    .breadcrumb a {
      color: #8FC1FF;
      font-weight: 500;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .page-hero h1 {
      font-size: 44px;
      max-width: 720px;
      margin-bottom: 16px;
      color: var(--white);
    }

    @media (max-width:720px) {
      .page-hero h1 {
        font-size: 32px;
      }
    }

    .page-hero .lead {
      max-width: 640px;
      font-size: 17px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.68);
    }

    /* ---------- About Page ---------- */
    .mission-split {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: center;
    }

    @media (max-width:900px) {
      .mission-split {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .mission-copy h2 {
      font-size: 32px;
      margin-bottom: 18px;
    }

    .mission-copy p {
      color: var(--ink);
      line-height: 1.75;
      font-size: 15.5px;
      margin-bottom: 16px;
    }

    .mission-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .mission-stat-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 22px;
      box-shadow: 0 10px 30px rgba(11, 27, 51, 0.04);
    }

    .mission-stat-card .num {
      display: block;
      font-family: var(--disp-font);
      font-weight: 700;
      font-size: 30px;
      color: var(--blue-deep);
      margin-bottom: 6px;
    }

    .mission-stat-card .lbl {
      font-size: 13.5px;
      color: #8492A6;
      line-height: 1.4;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width:860px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
    }

    .value-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 32px rgba(11, 27, 51, 0.06);
    }

    .value-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
    }

    .value-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .value-card p {
      font-size: 14.5px;
      color: #64748B;
      line-height: 1.6;
    }

    .timeline {
      border-left: 2px solid var(--line);
      margin-left: 8px;
      padding-left: 36px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .timeline-item {
      position: relative;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -44px;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--blue);
    }

    .timeline-item .tl-year {
      font-family: var(--coord-font);
      font-size: 13px;
      color: var(--blue-deep);
      background: var(--blue-light);
      display: inline-block;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 8px;
    }

    .timeline-item h4 {
      font-size: 17px;
      margin-bottom: 6px;
    }

    .timeline-item p {
      font-size: 14.5px;
      color: #64748B;
      line-height: 1.6;
      max-width: 560px;
    }

    /* ---------- Contact Page ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 48px;
      align-items: start;
    }

    @media (max-width:900px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-info-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-info-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 11px;
      background: var(--green-light);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
    }

    .contact-info-card h4 {
      font-size: 15.5px;
      margin-bottom: 4px;
    }

    .contact-info-card p,
    .contact-info-card a {
      font-size: 14px;
      color: #64748B;
      line-height: 1.55;
    }

    .contact-info-card a:hover {
      color: var(--blue);
    }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(11, 27, 51, 0.06);
    }

    @media (max-width:520px) {
      .contact-form-card {
        padding: 28px 22px;
      }
    }

    .contact-form-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .contact-form-card>.form-sub {
      font-size: 14.5px;
      color: #64748B;
      margin-bottom: 26px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    @media (max-width:560px) {
      .form-row {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      font-family: var(--body-font);
      font-size: 14.5px;
      color: var(--navy);
      padding: 13px 16px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: var(--paper);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 4px var(--blue-light);
    }

    .form-submit {
      width: 100%;
      border: none;
      cursor: pointer;
      font-family: var(--body-font);
    }

    .form-note {
      font-size: 12.5px;
      color: #94A3B8;
      margin-top: 14px;
      text-align: center;
    }

    .form-success {
      display: none;
      align-items: center;
      gap: 12px;
      background: var(--green-light);
      color: #2F6B1B;
      border-radius: 12px;
      padding: 16px 18px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .form-success.show {
      display: flex;
    }

    .map-embed {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      height: 260px;
      margin-top: 18px;
    }

    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }