﻿:root {
      --primary: #0f172a;
      --accent: #0369a1;
      --accent-hover: #0284c7;
      --accent-light: #38bdf8;
      --accent-dim: rgba(3, 105, 161, 0.15);
      --accent-ring: rgba(56, 189, 248, 0.35);
      --black: #010102;
      --black-soft: #06080c;
      --surface: rgba(15, 23, 42, 0.72);
      --surface-solid: #0a0e14;
      --text: #f8fafc;
      --muted: #94a3b8;
      --border: rgba(148, 163, 184, 0.22);
      --radius: 12px;
      --radius-lg: 16px;
      --font-heading: "Poppins", "Inter", system-ui, sans-serif;
      --font-body: "Open Sans", "Inter", system-ui, sans-serif;
      --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.28);
      --bento-shell: linear-gradient(180deg, rgba(148, 163, 184, 0.1), rgba(15, 23, 42, 0.55));
      --bento-inset: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      --bento-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.45);
      /* legacy aliases */
      --bmw-blue: var(--accent);
      --bmw-blue-light: var(--accent-light);
      --bmw-blue-glow: var(--accent-ring);
      --bmw-blue-dim: var(--accent-dim);
      --platinum: var(--text);
      --chrome: var(--muted);
      --silver: var(--muted);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      scroll-padding-top: 80px;
    }

    body {
      font-family: var(--font-body);
      background: var(--black);
      color: var(--text);
      line-height: 1.55;
      overflow-x: hidden;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    a { color: inherit; text-decoration: none; }

    picture { display: block; }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ─── Ambient background ─── */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .ambient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      animation: orbFloat 14s ease-in-out infinite;
    }

    .ambient-orb.a {
      width: 55vw;
      height: 55vw;
      top: -20%;
      right: -15%;
      background: radial-gradient(circle, var(--bmw-blue-glow), transparent 70%);
    }

    .ambient-orb.b {
      width: 40vw;
      height: 40vw;
      bottom: 10%;
      left: -10%;
      background: radial-gradient(circle, rgba(28, 105, 212, 0.25), transparent 70%);
      animation-delay: -5s;
    }

    .grid-floor {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(56, 189, 248, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.02) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
      opacity: 0.25;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-2%, 3%) scale(1.04); }
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      padding: 18px 0;
      background: linear-gradient(to bottom, rgba(1,1,2,0.85), transparent);
      transition: background 0.5s, border 0.5s, padding 0.5s;
    }

    .header.scrolled {
      background: rgba(15, 23, 42, 0.88);
      backdrop-filter: blur(20px) saturate(1.2);
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }

    .header-inner {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: flex-start;
      align-self: flex-start;
      flex-shrink: 0;
      min-width: 0;
      margin: 0;
      padding: 0;
      line-height: 0;
    }

    .logo-img {
      display: block;
      height: 64px;
      width: auto;
      max-width: min(360px, 58vw);
      object-fit: contain;
      object-position: left top;
    }

    .header-right {
      display: flex;
      align-items: flex-start;
      align-self: flex-start;
      gap: 16px;
      flex-shrink: 0;
      padding-top: 1px;
    }

    .header-phone {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-self: flex-start;
      text-align: right;
      font-weight: 600;
      font-size: 15px;
      line-height: 1.2;
      transition: color 0.2s ease;
    }

    .header-phone:hover { color: var(--accent-light); }

    .header-phone small {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    .phone-reveal:not(.is-revealed) {
      cursor: pointer;
    }

    .phone-reveal__line {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      line-height: 1.15;
    }

    .header-phone .phone-reveal__line {
      justify-content: flex-end;
    }

    .phone-reveal__value {
      display: inline;
      line-height: inherit;
      white-space: nowrap;
    }

    .phone-reveal__eye {
      display: block;
      width: 1em;
      height: 1em;
      min-width: 16px;
      min-height: 16px;
      max-width: 18px;
      max-height: 18px;
      flex: 0 0 auto;
      align-self: center;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      opacity: 0.72;
      transform: translateY(0.04em);
    }

    .cta-call-btn .phone-reveal__line,
    .mobile-bar-call .phone-reveal__line,
    footer .phone-reveal__line {
      align-items: center;
    }

    .phone-reveal.is-revealed .phone-reveal__eye {
      display: none;
    }

    .phone-reveal:not(.is-revealed) .phone-reveal__fade {
      display: inline;
      vertical-align: baseline;
      user-select: none;
      pointer-events: none;
      -webkit-mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 6%,
        rgba(0, 0, 0, 0.7) 38%,
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        #000 0%,
        #000 6%,
        rgba(0, 0, 0, 0.7) 38%,
        transparent 100%
      );
    }
    .phone-reveal__hint {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.02em;
    }

    .header-call-mobile.is-revealed {
      box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45);
    }

    .header-call-mobile {
      display: none;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--accent-dim);
      border: 1px solid rgba(56, 189, 248, 0.2);
      color: var(--accent-light);
      flex-shrink: 0;
    }

    .header-call-mobile svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 250;
      padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
      background: rgba(10, 10, 11, 0.96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border);
      gap: 10px;
      box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    }

    .mobile-bar a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-align: center;
    }

    .mobile-bar-call {
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid var(--border);
      color: var(--text);
    }

    .mobile-bar-book {
      background: var(--accent);
      color: #fff;
      border: 1px solid rgba(56, 189, 248, 0.25);
      box-shadow: 0 4px 16px rgba(3, 105, 161, 0.35);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      color: #fff;
    }

    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: var(--accent);
      border: 1px solid rgba(56, 189, 248, 0.25);
      box-shadow: 0 8px 28px rgba(3, 105, 161, 0.35);
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(3, 105, 161, 0.45);
    }

    .btn-primary:focus-visible {
      outline: 2px solid var(--accent-light);
      outline-offset: 3px;
    }

    .header-right .btn-primary {
      align-self: flex-start;
      padding: 12px 20px;
      min-height: 44px;
    }

    .btn-ghost {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .btn-ghost:hover {
      border-color: var(--accent-light);
      color: var(--accent-light);
    }

    /* ─── Hero (UI UX Pro Max: Trust & Authority) ─── */
    .hero {
      --hero-primary: #0f172a;
      --hero-accent: #0369a1;
      --hero-accent-hover: #0284c7;
      --hero-accent-ring: rgba(3, 105, 161, 0.35);
      --hero-text: #f8fafc;
      --hero-muted: #94a3b8;
      --hero-border: rgba(148, 163, 184, 0.22);
      --hero-surface: rgba(15, 23, 42, 0.72);
      --hero-font-heading: "Poppins", "Inter", system-ui, sans-serif;
      --hero-font-body: "Open Sans", "Inter", system-ui, sans-serif;
      position: relative;
      z-index: 1;
      min-height: 82vh;
      min-height: 82dvh;
      display: flex;
      align-items: flex-start;
      overflow: hidden;
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-visual-inner {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--hero-primary);
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 100% 40%;
      transform: translateX(20%);
      filter: contrast(1.05) saturate(1.02) brightness(0.82);
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg,
          rgba(15, 23, 42, 0.98) 0%,
          rgba(15, 23, 42, 0.94) 30%,
          rgba(15, 23, 42, 0.72) 48%,
          rgba(15, 23, 42, 0.28) 66%,
          transparent 86%),
        linear-gradient(180deg,
          rgba(15, 23, 42, 0.65) 0%,
          transparent 18%,
          transparent 78%,
          rgba(15, 23, 42, 0.88) 100%);
      pointer-events: none;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      background: radial-gradient(ellipse 50% 48% at 92% 44%, rgba(3, 105, 161, 0.12), transparent 68%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      min-height: 82vh;
      min-height: 82dvh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding-top: calc(76px + 6vh);
      padding-bottom: 32px;
    }

    .hero-main {
      max-width: 580px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hero-utp {
      font-family: var(--hero-font-heading);
      font-size: clamp(28px, 4.2vw, 42px);
      font-weight: 700;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--hero-text);
      margin: 0 0 16px;
      text-wrap: balance;
    }

    .hero-utp-line {
      display: block;
    }

    .hero-utp .accent {
      color: #38bdf8;
    }

    .hero-sub-lines {
      display: block;
    }

    .hero-sub-lines--break {
      display: block;
    }

    @media (min-width: 961px) {
      .hero-sub-lines { display: inline; }
      .hero-sub-lines--break { display: block; }
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      font-family: var(--hero-font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--hero-text);
      background: var(--hero-surface);
      border: 1px solid var(--hero-border);
      backdrop-filter: blur(12px);
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      stroke: #38bdf8;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-sub {
      font-family: var(--hero-font-body);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.55;
      color: var(--hero-muted);
      margin: 0 0 22px;
      max-width: 540px;
      text-wrap: pretty;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      z-index: 1;
      margin-bottom: 48px;
    }

    .btn-hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 32px;
      border-radius: 10px;
      font-family: var(--hero-font-body);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: none;
      color: #fff;
      background: var(--hero-accent);
      border: 1px solid rgba(56, 189, 248, 0.25);
      box-shadow: 0 10px 32px rgba(3, 105, 161, 0.35);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
      max-width: 100%;
    }

    .btn-hero-cta:hover {
      background: var(--hero-accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 14px 36px rgba(3, 105, 161, 0.45);
    }

    .btn-hero-cta:focus-visible {
      outline: 2px solid #38bdf8;
      outline-offset: 3px;
    }

    .btn-hero-cta:active {
      transform: translateY(0);
    }

    .hero-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--hero-font-body);
      font-size: 13px;
      font-weight: 500;
      color: var(--hero-muted);
    }

    .hero-note svg {
      width: 14px;
      height: 14px;
      stroke: #22c55e;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* 21st.dev bento shell pattern */
    .bento-shell {
      padding: 6px;
      border-radius: 20px;
      background: var(--bento-shell);
      box-shadow: var(--bento-shadow), var(--bento-inset);
    }

    .bento-inner {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.92);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .bento-inner::before {
      content: "";
      position: absolute;
      inset: 0 0 50% 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
      pointer-events: none;
      z-index: 0;
    }

    .bento-inner > * { position: relative; z-index: 1; }

    .hero-proof {
      width: 100%;
      margin-top: auto;
      padding-top: 0;
    }

    .hero-proof-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      padding: 0;
      background: rgba(15, 23, 42, 0.92);
    }

    .proof-item {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      gap: 2px 14px;
      align-items: center;
      padding: 20px 22px;
      height: 100%;
      transition: background 0.2s ease;
    }

    .proof-item + .proof-item {
      border-left: 1px solid rgba(148, 163, 184, 0.14);
    }

    .proof-item:hover {
      background: rgba(3, 105, 161, 0.08);
    }

    .proof-icon {
      grid-row: 1 / 3;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(3, 105, 161, 0.15);
      border: 1px solid rgba(56, 189, 248, 0.2);
      color: #38bdf8;
    }

    .proof-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .proof-num {
      font-family: var(--hero-font-heading);
      font-size: clamp(28px, 3.2vw, 38px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--hero-text);
      white-space: nowrap;
    }

    .proof-label {
      font-family: var(--hero-font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--hero-text);
      line-height: 1.2;
      white-space: nowrap;
    }

    .proof-note {
      grid-column: 2;
      font-family: var(--hero-font-body);
      font-size: 12px;
      color: var(--hero-muted);
    }

    /* ─── Sections ─── */
    section {
      position: relative;
      z-index: 1;
      padding: 72px 0;
    }

    section.dark-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.4) 20%, rgba(15, 23, 42, 0.4) 80%, transparent);
      pointer-events: none;
    }

    .section-head { margin-bottom: 36px; }
    .section-head.compact { margin-bottom: 28px; }

    .section-tag {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-tag::after {
      content: "";
      flex: 0 0 32px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent-light), transparent);
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(26px, 3.5vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 0;
      color: var(--text);
    }

    .section-sub {
      color: var(--muted);
      max-width: 520px;
      margin-top: 12px;
      font-size: 15px;
      line-height: 1.55;
    }

    .about-master-name {
      margin-top: 10px;
      font-family: var(--font-heading);
      font-size: clamp(20px, 2.4vw, 26px);
      font-weight: 600;
      color: var(--accent-light);
      letter-spacing: 0.02em;
    }

    .pain-steps {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .pain-step {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
    }

    .pain-step.reverse .pain-step-visual { order: 2; }
    .pain-step.reverse .pain-step-body { order: 1; }

    .pain-step-visual {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: inherit;
    }

    .pain-step-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .pain-step-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 45%);
    }

    .pain-step-body .bento-inner { padding: 28px 30px; }

    .pain-step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      margin-bottom: 14px;
      border-radius: 8px;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      background: var(--accent-dim);
      border: 1px solid rgba(56, 189, 248, 0.2);
      color: var(--accent-light);
    }

    .pain-step-quote {
      font-family: var(--font-heading);
      font-size: clamp(20px, 2.4vw, 26px);
      font-weight: 600;
      line-height: 1.3;
      color: var(--text);
      margin-bottom: 14px;
    }

    .pain-step-problem {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .pain-step-solution {
      padding: 16px 18px;
      border-radius: 10px;
      background: rgba(3, 105, 161, 0.12);
      border: 1px solid rgba(56, 189, 248, 0.18);
    }

    .pain-step-solution strong {
      display: block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--accent-light);
      margin-bottom: 6px;
    }

    .pain-step-solution p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.55;
      margin: 0;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .process-step {
      display: grid;
      grid-template-columns: minmax(240px, 340px) 1fr;
      gap: 0;
      transition: transform 0.2s ease;
    }

    .process-step:hover { transform: translateY(-2px); }

    .process-step-media {
      position: relative;
      min-height: 220px;
      overflow: hidden;
      border-radius: inherit;
    }

    .process-step-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .process-step-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 55%, rgba(15, 23, 42, 0.35) 100%);
    }

    .process-step-body .bento-inner {
      padding: 28px 32px;
      height: 100%;
    }

    .process-step-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .process-step-num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      background: var(--accent-dim);
      border: 1px solid rgba(56, 189, 248, 0.2);
      color: var(--accent-light);
    }

    .process-step-title {
      font-family: var(--font-heading);
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 600;
      color: var(--text);
      line-height: 1.25;
    }

    .process-step-lead {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .process-step-details {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .process-step-details li {
      position: relative;
      padding-left: 18px;
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
    }

    .process-step-details li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent-light);
      opacity: 0.7;
    }

    .symptoms-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .symptoms-item {
      transition: transform 0.2s ease;
    }

    .symptoms-item:hover { transform: translateY(-2px); }

    .symptoms-item .bento-inner {
      padding: 22px 24px;
      height: 100%;
      display: flex;
      gap: 16px;
      align-items: center;
      transition: box-shadow 0.25s ease;
    }

    .symptoms-item:hover .bento-inner {
      box-shadow: 0 4px 16px rgba(3, 105, 161, 0.18), inset 0 0 0 1px rgba(56, 189, 248, 0.12);
    }

    .symptoms-item .symptom-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-dim);
      border: 1px solid rgba(56, 189, 248, 0.22);
      color: var(--accent-light);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      animation: symptomIconGlow 4s ease-in-out infinite;
    }

    .symptoms-item:nth-child(2) .symptom-icon { animation-delay: -0.6s; }
    .symptoms-item:nth-child(3) .symptom-icon { animation-delay: -1.2s; }
    .symptoms-item:nth-child(4) .symptom-icon { animation-delay: -1.8s; }
    .symptoms-item:nth-child(5) .symptom-icon { animation-delay: -2.4s; }
    .symptoms-item:nth-child(6) .symptom-icon { animation-delay: -3s; }

    @keyframes symptomIconGlow {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
        border-color: rgba(56, 189, 248, 0.22);
      }
      50% {
        box-shadow: 0 0 18px rgba(56, 189, 248, 0.14);
        border-color: rgba(56, 189, 248, 0.38);
      }
    }

    .symptoms-item:hover .symptom-icon {
      animation-play-state: paused;
      transform: scale(1.08);
      box-shadow: 0 0 22px rgba(56, 189, 248, 0.28);
      border-color: rgba(56, 189, 248, 0.45);
    }

    .symptoms-item .symptom-icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      transition: transform 0.3s ease;
    }

    .symptoms-item:hover .symptom-icon svg {
      transform: scale(1.06);
    }

    .symptoms-item .symptom-text {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.45;
    }

    .symptoms-cta {
      margin-top: 28px;
      padding: 0;
      border: none;
      background: none;
    }

    .symptoms-cta .bento-inner {
      padding: 24px 28px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background:
        linear-gradient(90deg, rgba(3, 105, 161, 0.18) 0%, rgba(15, 23, 42, 0.92) 55%),
        rgba(15, 23, 42, 0.92);
      border-left: 3px solid var(--accent-light);
      box-shadow: 0 4px 20px rgba(3, 105, 161, 0.12), inset 0 0 0 1px rgba(56, 189, 248, 0.1);
    }

    .symptoms-cta p {
      flex: 1;
      min-width: 240px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      line-height: 1.55;
      margin: 0;
    }

    .symptoms-cta .btn { flex-shrink: 0; white-space: nowrap; }

    .pricing-band {
      position: relative;
      z-index: 1;
      padding: 0;
      background: none;
    }

    .pricing-band .bento-inner {
      padding: 40px 44px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      background:
        linear-gradient(135deg, rgba(3, 105, 161, 0.45) 0%, rgba(2, 132, 199, 0.25) 40%, rgba(15, 23, 42, 0.95) 100%),
        rgba(15, 23, 42, 0.92);
      box-shadow: 0 8px 32px rgba(3, 105, 161, 0.2), inset 0 0 0 1px rgba(56, 189, 248, 0.2);
    }

    .pricing-band-copy { max-width: 560px; }

    .pricing-band-title {
      font-family: var(--font-heading);
      font-size: clamp(24px, 3.2vw, 32px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 10px;
    }

    .pricing-band-title span {
      display: block;
      color: var(--accent-light);
    }

    .pricing-band-sub {
      font-size: 15px;
      color: rgba(248, 250, 252, 0.82);
      line-height: 1.55;
      margin: 0;
    }

    .pricing-band .btn-primary {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .compare-wrap { margin-top: 0; }

    .compare-inner { overflow: hidden; }

    .compare-header,
    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .compare-header {
      border-bottom: 1px solid var(--border);
    }

    .compare-col {
      padding: 18px 24px;
      font-size: 14px;
      line-height: 1.45;
    }

    .compare-header .compare-col {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      padding: 22px 24px;
    }

    .compare-col-service {
      background: rgba(15, 23, 42, 0.5);
      color: var(--muted);
      border-right: 1px solid var(--border);
    }

    .compare-col-me {
      background: rgba(3, 105, 161, 0.1);
      color: var(--text);
    }

    .compare-header .compare-col-service { color: var(--muted); }
    .compare-header .compare-col-me { color: var(--accent-light); }

    .compare-row + .compare-row {
      border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    .compare-row { transition: background 0.2s ease; }
    .compare-row:hover .compare-col-service { background: rgba(15, 23, 42, 0.65); }
    .compare-row:hover .compare-col-me { background: rgba(3, 105, 161, 0.16); }

    .compare-row .compare-col {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .compare-mark {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .compare-mark svg {
      width: 12px;
      height: 12px;
      stroke-width: 2.5;
    }

    .compare-col-service .compare-mark {
      background: rgba(148, 163, 184, 0.12);
      color: var(--muted);
    }

    .compare-col-me .compare-mark {
      background: var(--accent-dim);
      color: var(--accent-light);
    }

    .compare-col-service .compare-mark svg { stroke: currentColor; fill: none; }
    .compare-col-me .compare-mark svg { stroke: currentColor; fill: none; }

    .about-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: center;
      padding: 0;
      border: none;
      background: none;
      box-shadow: none;
    }

    .about-panel > .bento-shell:last-child .bento-inner { padding: 32px; }

    .about-visual-wrap {
      height: 100%;
      width: 100%;
      min-width: 0;
    }

    .about-visual {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 280px;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: inherit;
      background: #0a0e14;
    }

    .about-visual.bento-inner {
      background: #0a0e14;
      box-shadow: none;
    }

    .about-visual.bento-inner::before {
      display: none;
    }

    .about-visual picture {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .about-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 12%;
    }

    .about-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 2;
      padding: 12px 16px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .about-badge strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 700;
      color: var(--accent-light);
    }

    .about-badge span {
      font-size: 11px;
      color: var(--muted);
    }

    .about-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 20px;
    }

    .about-points li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .about-point-body {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      min-width: 0;
    }

    .about-points li strong {
      display: block;
      color: var(--text);
      font-weight: 600;
      font-size: 15px;
      line-height: 1.35;
    }

    .about-point-body span {
      display: block;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }

    .about-points li::before {
      content: "";
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--accent-light);
    }

    .faq-wrap {
      padding: 8px;
      border-radius: 20px;
      background: var(--bento-shell);
      box-shadow: var(--bento-shadow), var(--bento-inset);
      border: none;
    }

    .faq-list {
      width: 100%;
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.92);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
      overflow: hidden;
    }

    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 600;
      padding: 20px 24px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      transition: color 0.2s ease, background 0.2s ease;
      line-height: 1.4;
    }

    .faq-q:hover { color: var(--accent-light); background: rgba(3, 105, 161, 0.06); }

    .faq-q:focus-visible {
      outline: 2px solid var(--accent-light);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .faq-q::after {
      content: "+";
      font-size: 22px;
      font-weight: 300;
      color: var(--accent-light);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
      padding: 0 24px;
      text-wrap: pretty;
    }

    .faq-item.open .faq-a {
      max-height: 480px;
      padding-bottom: 20px;
    }

    .cta-section { padding: 72px 0 88px; }

    .cta-panel {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 0;
      padding: 8px;
      border-radius: 22px;
      border: none;
      background: var(--bento-shell);
      box-shadow: var(--bento-shadow), var(--bento-inset);
      overflow: hidden;
    }

    .cta-visual {
      position: relative;
      min-height: 460px;
      border-radius: 16px;
      overflow: hidden;
    }

    .cta-visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 55% center;
    }

    .cta-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 25%, rgba(15, 23, 42, 0.95) 100%),
        linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent 45%);
    }

    .cta-body {
      padding: 32px 32px 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 1;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.92);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .cta-call-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 999px;
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      background: var(--accent);
      border: 1px solid rgba(56, 189, 248, 0.25);
      box-shadow: 0 8px 24px rgba(3, 105, 161, 0.35);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .cta-call-btn:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }

    .cta-call-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .cta-badge {
      display: inline-block;
      width: fit-content;
      padding: 6px 12px;
      margin-bottom: 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--accent-light);
      background: var(--accent-dim);
      border: 1px solid rgba(56, 189, 248, 0.2);
    }

    .cta-phone {
      font-family: var(--font-heading);
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 700;
      color: var(--accent-light);
      margin-bottom: 6px;
      display: inline-block;
      transition: color 0.2s ease;
    }

    .cta-phone:hover { color: #7dd3fc; }

    .cta-address {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    input, textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: rgba(15, 23, 42, 0.6);
      color: var(--text);
      font: inherit;
      font-size: 14px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input::placeholder, textarea::placeholder { color: var(--muted); }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--accent-light);
      box-shadow: 0 0 0 3px var(--accent-dim);
    }

    textarea { min-height: 96px; resize: vertical; }

    .form-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    .form-status {
      display: none;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.45;
    }

    .form-status.is-visible { display: block; }

    .form-status.success {
      border: 1px solid rgba(56, 189, 248, 0.35);
      background: rgba(3, 105, 161, 0.15);
      color: var(--text);
    }

    .form-status.error {
      border: 1px solid rgba(248, 113, 113, 0.35);
      background: rgba(127, 29, 29, 0.2);
      color: #fecaca;
    }

    .form-submitting {
      opacity: 0.7;
      pointer-events: none;
    }

    footer {
      position: relative;
      z-index: 1;
      padding: 28px 0;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 13px;
      color: var(--muted);
    }

    footer a {
      color: var(--accent-light);
      transition: color 0.2s ease;
    }

    footer a:hover { color: #7dd3fc; }

    .glass-card, .why-grid, .master-grid, .check-list, .tags, .process-track,
    section.stats-bar, .stats-grid, .stats-connector { display: none; }

    /* ─── Scroll reveal ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    .cta-body .section-title {
      font-size: clamp(22px, 3vw, 28px);
      margin-bottom: 8px;
    }

    .cta-body .section-sub {
      font-size: 14px;
      margin-bottom: 20px;
    }

    /* ─── Mobile ─── */
    @media (max-width: 960px) {
      .container { padding-left: 20px; padding-right: 20px; }

      section { padding: 52px 0; }
      .cta-section { padding: 52px 0 64px; }

      .about-panel, .cta-panel { grid-template-columns: 1fr; }
      .pain-step, .process-step { grid-template-columns: 1fr; }
      .pain-steps { gap: 28px; }

      .symptoms-proof { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .symptoms-item .bento-inner { padding: 18px 16px; gap: 12px; }
      .symptoms-cta { margin-top: 20px; }
      .symptoms-cta .bento-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
      }
      .symptoms-cta .btn { width: 100%; min-height: 48px; }

      .pricing-band .bento-inner {
        padding: 24px 20px;
        flex-direction: column;
        align-items: stretch;
      }
      .pricing-band .btn { width: 100%; min-height: 48px; }
      .pricing-band-title { font-size: clamp(22px, 5.5vw, 28px); }

      .compare-header, .compare-row { grid-template-columns: 1fr; }
      .compare-col { padding: 16px 18px; }
      .compare-header .compare-col { padding: 18px; }
      .compare-col-service { border-right: none; border-bottom: 1px solid rgba(148, 163, 184, 0.12); }
      .compare-header .compare-col-service { border-bottom: none; }
      .compare-row .compare-col-service { padding-bottom: 10px; }
      .compare-row .compare-col-me { padding-top: 10px; }

      .pain-step.reverse .pain-step-visual,
      .pain-step.reverse .pain-step-body { order: unset; }
      .pain-step-visual { aspect-ratio: 16/10; }
      .pain-step-body .bento-inner { padding: 22px 20px; }
      .pain-step-quote { font-size: clamp(18px, 4.5vw, 22px); }

      .process-steps { gap: 14px; }
      .process-step { grid-template-columns: 1fr; }
      .process-step-media { min-height: 180px; }
      .process-step-media::after {
        background: linear-gradient(0deg, rgba(15, 23, 42, 0.5) 0%, transparent 50%);
      }
      .process-step-body .bento-inner { padding: 20px; }

      .about-panel { grid-template-columns: 1fr; gap: 20px; }
      .about-visual-wrap { min-height: 0; }
      .about-panel > .bento-shell:last-child .bento-inner { padding: 22px 20px; }
      .about-points { gap: 18px; }
      .about-points li strong { font-size: 14px; }
      .about-point-body span { font-size: 13px; }
      .about-visual {
        aspect-ratio: 16/11;
        min-height: 240px;
      }

      .section-head { margin-bottom: 28px; }
      .section-head.compact { margin-bottom: 22px; }
      .section-title { font-size: clamp(22px, 5.5vw, 30px); }

      .ambient { display: none; }

      .hero {
        min-height: auto;
        background:
          radial-gradient(ellipse 90% 60% at 50% 110%, rgba(3, 105, 161, 0.18) 0%, transparent 55%),
          linear-gradient(180deg, #0f172a 0%, #0a1020 100%);
      }

      .hero-visual {
        display: none;
      }

      .hero-visual img {
        transform: none;
      }

      .pain-step-visual.bento-shell,
      .process-step-media.bento-shell {
        position: relative;
      }

      .pain-step-visual .bento-inner,
      .process-step-media .bento-inner {
        position: absolute;
        inset: 5px;
      }

      .pain-step-visual img,
      .process-step-media img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 180px;
        object-fit: cover;
      }

      .about-visual.bento-inner {
        position: relative;
        width: 100%;
        aspect-ratio: 16/11;
        min-height: 240px;
        padding: 0;
      }

      .about-visual picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
      }

      .about-visual img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 12%;
      }

      .hero .container.hero-inner {
        min-height: auto;
        padding-top: 84px;
        padding-bottom: 24px;
      }

      .hero-main {
        max-width: 100%;
        width: 100%;
        position: relative;
        z-index: 1;
      }

      .header {
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid var(--border);
      }

      .header.scrolled {
        background: rgba(15, 23, 42, 0.99);
      }

      .hero-utp {
        font-size: clamp(24px, 6.2vw, 32px);
        line-height: 1.15;
        color: #f8fafc;
      }

      .hero-sub {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #e2e8f0;
      }
      .hero-sub-lines { display: block; margin-bottom: 0.35em; }
      .hero-sub-lines:last-child { margin-bottom: 0; }
      .hero-actions { width: 100%; }
      .btn-hero-cta {
        width: 100%;
        min-height: 52px;
        padding: 16px 20px;
        font-size: 14px;
      }
      .hero-proof { width: 100%; }
      .hero-proof.bento-shell { padding: 4px; }

      .hero-proof-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .proof-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 2px;
        padding: 14px 4px;
        text-align: center;
        min-width: 0;
      }

      .proof-item + .proof-item {
        border-left: 1px solid rgba(148, 163, 184, 0.14);
      }

      .proof-icon {
        grid-row: auto;
        width: 32px;
        height: 32px;
        margin: 0 auto 2px;
      }

      .proof-icon svg { width: 16px; height: 16px; }

      .proof-num {
        grid-column: 1;
        font-size: clamp(17px, 4.8vw, 22px);
      }

      .proof-label {
        grid-column: 1;
        font-size: clamp(9px, 2.6vw, 11px);
        letter-spacing: -0.02em;
      }

      .proof-note { display: none; }

      .bento-shell { padding: 5px; border-radius: 16px; }

      .faq-wrap { padding: 6px; }
      .faq-q { padding: 18px 18px; font-size: 14px; gap: 12px; }
      .faq-a { padding: 0 18px; font-size: 14px; }
      .faq-item.open .faq-a { padding-bottom: 18px; }

      .cta-panel {
        padding: 6px;
        grid-template-columns: 1fr;
      }
      .cta-visual {
        min-height: 200px;
        order: -1;
        border-radius: 14px 14px 0 0;
      }
      .cta-visual::after {
        background:
          linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
      }
      .cta-body { padding: 24px 20px 28px; }
      .cta-call-btn { width: 100%; justify-content: center; min-height: 48px; }

      .header { padding: 10px 0; }
      .header.scrolled { padding: 8px 0; }
      .header-phone { display: none; }
      .header-call-mobile { display: flex; }
      .header-right .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
      }

      .logo-img {
        height: 52px;
        max-width: min(300px, 62vw);
      }

      .mobile-bar { display: flex; }
      body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

      input, textarea, select { font-size: 16px; }
    }

    @media (max-width: 480px) {
      .container { padding-left: 16px; padding-right: 16px; }

      section { padding: 44px 0; }

      .symptoms-proof { grid-template-columns: 1fr; }
      .symptoms-item .bento-inner {
        flex-direction: row;
        align-items: center;
      }

      .cta-panel { padding: 5px; }
      .cta-body { padding: 20px 16px 24px; }

      .header-right .btn-primary { padding: 10px 14px; font-size: 12px; }

      .logo-img {
        height: 46px;
        max-width: min(270px, 68vw);
      }

      .pain-step-problem,
      .pain-step-solution p,
      .process-step-lead { font-size: 14px; }

      footer { padding: 24px 16px calc(16px + env(safe-area-inset-bottom, 0px)); font-size: 12px; }
    }

    @media (max-width: 360px) {
      .proof-item { padding: 12px 2px; }
      .proof-num { font-size: 16px; }
      .proof-label { font-size: 9px; }
      .hero-utp { font-size: 22px; }
      .header-right .btn-primary { padding: 10px 12px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
