:root {
  --bg: #f6f3ed;
  --bg-elevated: #ffffff;
  --ink: #0c1820;
  --ink-soft: #3d4f5c;
  --muted: #6b7d8a;
  --line: rgba(12, 24, 32, 0.08);
  --navy: #0a1f2b;
  --navy-mid: #123244;
  --teal: #1a4a5e;
  --gold: #d4a853;
  --gold-light: #f0d9a0;
  --cream: #faf7f2;
  --danger: #c44536;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 24px 80px rgba(10, 31, 43, 0.12);
  --shadow-soft: 0 8px 32px rgba(10, 31, 43, 0.06);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}
.container-narrow { width: min(720px, calc(100% - 48px)); }

/* Background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(165deg, #eef4f7 0%, var(--bg) 40%, #f0ebe3 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(26, 74, 94, 0.35), transparent 70%);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 10%; left: -100px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.25), transparent 70%);
  animation-delay: -6s;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 31, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 43, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.05); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 102;
}
.logo-img {
  display: block;
  height: 38px;
  width: auto;
}
.logo-img-footer {
  height: 48px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language — fixed side pill */
.lang-fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  opacity: 0.92;
  transition: opacity 0.2s var(--ease);
}
.lang-fab:hover { opacity: 1; }
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  gap: 2px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.lang-switch-btn {
  min-width: 36px;
  padding: 5px 9px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, box-shadow 0.2s;
}
.lang-switch-btn:hover { color: var(--ink); }
.lang-switch-btn.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 31, 43, 0.2);
}
.lang-switch-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.btn:focus-visible,
.nav a:focus-visible,
.link-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body.nav-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 11px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10, 31, 43, 0.25);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(10, 31, 43, 0.32); }
.btn-outline {
  background: rgba(255,255,255,0.6);
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { background: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost-dark {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Hero */
.hero {
  padding: 32px 0 48px;
  position: relative;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-grid > * {
  min-width: 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  font-weight: 700;
}
.hero-lead {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-dark { color: var(--muted); }
.gradient-text {
  background: linear-gradient(120deg, var(--teal) 0%, #2a6b82 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 12px 0 20px;
}

/* Device composition — browser + phone */
.device-compose {
  position: relative;
  width: min(100%, 500px);
  min-height: 300px;
  padding: 0 0 28px 0;
}
.device-pedestal {
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 0;
  height: 55%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(26, 74, 94, 0.12), transparent 68%),
    linear-gradient(180deg, transparent, rgba(10, 31, 43, 0.04));
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  z-index: 0;
  pointer-events: none;
}
.browser-frame {
  position: relative;
  z-index: 1;
  width: 88%;
  background: var(--bg-elevated);
  border-radius: 16px;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.8) inset,
    0 28px 64px rgba(10, 31, 43, 0.14);
  border: 1px solid rgba(10, 31, 43, 0.08);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transform-origin: center left;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f0f2f4;
  border-bottom: 1px solid var(--line);
}
.browser-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}
.browser-bar span:nth-child(1) { background: #ff6b6b; }
.browser-bar span:nth-child(2) { background: #ffd166; }
.browser-bar span:nth-child(3) { background: #06d6a0; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.browser-content { padding: 0; }
.mock-hero-img {
  position: relative;
  height: 110px;
  background:
    linear-gradient(to top, rgba(10,31,43,0.5), transparent 50%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=800&q=80") center/cover;
}
.mock-lines {
  padding: 14px 16px 16px;
  max-width: 72%;
}
.mock-line {
  height: 8px;
  background: #e8ecef;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mock-line.w70 { width: 70%; }
.mock-line.w45 { width: 45%; }
.mock-booking {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.mock-field {
  flex: 1;
  height: 32px;
  background: #f3f5f7;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.mock-btn {
  padding: 0 14px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
}

/* iPhone — kompaktowy, unosi się przy prawym dolnym rogu */
.iphone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 172px;
  z-index: 3;
  filter: drop-shadow(0 24px 48px rgba(10, 31, 43, 0.22));
  animation: phone-float 6.5s ease-in-out infinite;
  transform-origin: center bottom;
  will-change: transform;
}
.iphone-shell {
  position: relative;
  background: linear-gradient(145deg, #2a2a2e, #111113);
  border-radius: 32px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.iphone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 16px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.iphone-screen {
  background: #f4f7f9;
  border-radius: 26px;
  overflow: hidden;
  height: 248px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
}
.app-icons { color: var(--ink); opacity: 0.7; display: flex; }
.app-hero-card {
  margin: 2px 10px 8px;
  padding: 10px 12px;
  background: linear-gradient(145deg, #0f2d3d, #1a4a5e);
  border-radius: 12px;
  color: #fff;
}
.app-greet {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.app-place {
  margin: 2px 0 0;
  font-size: 9px;
  color: rgba(255,255,255,0.6);
}
.app-unit {
  margin: 4px 0 0;
  font-size: 9px;
  font-weight: 600;
  color: #e8c56a;
}
.app-label {
  margin: 0 10px 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
}
.app-tiles {
  padding: 0 10px;
  display: grid;
  gap: 6px;
}
.app-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #dde4e8;
  border-radius: 10px;
}
.app-tile-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #eef3f6;
  color: #0f2d3d;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-tile-icon svg { width: 13px; height: 13px; }
.app-tile strong {
  font-size: 10px;
  font-weight: 600;
  color: #0f2d3d;
  line-height: 1;
}
.app-tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 10px 6px;
  background: #fff;
  border-top: 1px solid #dde4e8;
  margin-top: auto;
}
.app-tabs span {
  width: 18px;
  height: 4px;
  border-radius: 4px;
  background: #d8e0e6;
}
.app-tabs span.on {
  background: #0f2d3d;
  width: 22px;
}
.iphone-home-indicator {
  width: 72px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 4px;
  margin: 4px auto 6px;
  opacity: 0.18;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Sections */
.section { padding: 64px 0; }
.section-problem {
  padding-top: 48px;
  background: var(--cream);
}
.section-head { margin-bottom: 36px; max-width: 560px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-weight: 700;
}
.section-head h2 em {
  font-style: normal;
  color: var(--teal);
}
.section-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
  max-width: 48ch;
}
.section-head.center .section-sub { margin-inline: auto; }

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.problem-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(196, 69, 54, 0.1);
  color: var(--danger);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.problem-card p { margin: 0; font-weight: 500; color: var(--ink-soft); }
.problem-outcome {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  padding: 28px 32px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
}
.problem-outcome strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.problem-outcome p { margin: 0; opacity: 0.85; }

/* Social proof */
.social-proof {
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}
.social-proof-inner {
  display: grid;
  gap: 20px;
  text-align: center;
}
.social-proof-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.social-proof-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
}
.social-stat {
  display: grid;
  gap: 4px;
}
.social-stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.social-stat span {
  font-size: 13px;
  color: var(--muted);
}
.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.social-proof-logos span {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Features */
.section-solution {
  background: linear-gradient(165deg, #f0f5f7 0%, var(--cream) 45%, #ebe4d8 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.feature-card {
  grid-column: span 3;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.feature-card--wide { grid-column: span 6; }
.feature-card--navy {
  background: linear-gradient(145deg, var(--navy) 0%, #1a4a5e 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(10, 31, 43, 0.18);
}
.feature-card--teal {
  background: linear-gradient(145deg, #1a4a5e 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(26, 74, 94, 0.2);
}
.feature-card--gold {
  background: linear-gradient(145deg, #f7f0e4 0%, #fff 55%, #f3e8d4 100%);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: var(--shadow-soft);
}
.feature-card--sand {
  background: linear-gradient(145deg, #fff 0%, #f6f3ed 100%);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(10, 31, 43, 0.14);
}
.feature-card--navy:hover,
.feature-card--teal:hover {
  box-shadow: 0 18px 52px rgba(10, 31, 43, 0.28);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature-card--navy .feature-icon,
.feature-card--teal .feature-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
}
.feature-card--gold .feature-icon,
.feature-card--sand .feature-icon {
  background: linear-gradient(135deg, rgba(10, 31, 43, 0.07), rgba(26, 74, 94, 0.1));
  color: var(--teal);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.feature-card--navy h3,
.feature-card--teal h3 { color: #fff; }
.feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.feature-card--navy p,
.feature-card--teal p { color: rgba(255, 255, 255, 0.82); }
.feature-card--gold p,
.feature-card--sand p { color: var(--ink-soft); }

/* Steps */
.section-steps { background: var(--navy); color: #fff; }
.section-steps .eyebrow { color: var(--gold-light); }
.section-steps h2 { color: #fff; }
.steps-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background 0.25s;
}
.step:hover { background: rgba(255,255,255,0.07); }
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  opacity: 0.9;
}
.step h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 1.15rem;
}
.step p { margin: 0; opacity: 0.75; font-size: 15px; }

/* Case study */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.case-visual { position: relative; }
.case-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(to top, rgba(10,31,43,0.55), transparent 50%),
    url("https://images.unsplash.com/photo-1540202404-a2f29016b523?auto=format&fit=crop&w=900&q=80") center/cover;
  box-shadow: var(--shadow);
}
.case-badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-copy h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
}
.case-location {
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 16px;
  font-size: 14px;
}
.case-desc { color: var(--ink-soft); margin: 0 0 20px; }
.case-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}
.case-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}
.case-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.case-quote {
  margin: 0 0 20px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.case-quote p { margin: 0 0 12px; font-style: italic; color: var(--ink-soft); line-height: 1.55; }
.case-quote footer { display: grid; gap: 2px; }
.case-quote cite { font-style: normal; font-weight: 700; color: var(--navy); }
.case-quote footer span { font-size: 13px; color: var(--muted); }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px;
}
.case-metric {
  padding: 16px 14px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}
.case-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.case-metric span { font-size: 12px; color: var(--muted); line-height: 1.35; }

/* Reviews */
.section-reviews { background: var(--navy); color: #fff; }
.section-reviews .eyebrow { color: var(--gold-light); }
.section-reviews h2 { color: #fff; }
.section-reviews .section-sub { color: rgba(255, 255, 255, 0.72); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.review-card-featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.review-card blockquote { margin: 0 0 20px; flex: 1; }
.review-card blockquote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: #fff; }
.review-author span { font-size: 12px; color: rgba(255, 255, 255, 0.62); }

.link-arrow {
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-arrow:hover { gap: 8px; }

/* Pricing */
.section-pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1.75rem 3.25rem auto 1fr auto;
  column-gap: 24px;
  row-gap: 8px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 8px;
}
.price-card-featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  z-index: 1;
}
.price-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.price-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
  align-self: end;
}
.price-was {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #8d9da8;
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: #a8b6c0;
  white-space: nowrap;
  align-self: end;
}
.price-was-empty {
  visibility: hidden;
  text-decoration: none;
  pointer-events: none;
}
.price-was span {
  font-variant-numeric: tabular-nums;
}
.price-was-suffix {
  font-size: 0.7em;
  font-weight: 600;
  margin-left: 0.08em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.045em;
  color: var(--navy);
  align-self: end;
}
.price-amount .price-amount-main span,
.price-amount > span:not(.price-from) {
  font-variant-numeric: tabular-nums;
}
.price-amount-launch {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.35em 0.5em;
  white-space: nowrap;
}
.price-from {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--teal);
  text-transform: lowercase;
}
.price-amount-launch .price-amount-main {
  display: inline;
}
.price-card-featured .price-was {
  color: #7f919c;
  text-decoration-color: #95a5b0;
}
.price-card-featured .price-from {
  color: var(--gold);
}
.price-card-featured .price-amount {
  color: var(--navy);
}
.price-amount-custom {
  font-size: clamp(2rem, 3.5vw, 2.35rem);
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}
.price-period {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
  align-self: start;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  align-self: start;
}
.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-soft);
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* CTA */
.cta-panel {
  padding: 56px 56px 52px;
  background: linear-gradient(135deg, var(--navy) 0%, #153a4f 50%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 100%;
  overflow-x: clip;
}
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.cta-copy p {
  margin: 0 auto 32px;
  max-width: 48ch;
  opacity: 0.85;
  font-size: 1.05rem;
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 16px;
}
.cta-form input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.cta-form input::placeholder { color: #9aa8b3; }
.cta-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cta-note {
  margin: 20px 0 0;
  padding: 0 8px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.7;
}

/* Intake form */
.intake-form {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}
.intake-step {
  width: 100%;
  min-width: 0;
}
.intake-progress {
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
  margin: 0 0 20px;
}
.intake-step { display: none; }
.intake-step.active { display: block; }
.intake-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 16px;
}
.intake-hint {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.8;
}
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  width: 100%;
  min-width: 0;
}
.intake-grid label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  min-width: 0;
}
.intake-grid .span-2 { grid-column: span 2; }
.field-hint {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.75;
  line-height: 1.4;
}
.field-hint code {
  font-size: 11px;
  background: rgba(255,255,255,0.15);
  padding: 1px 5px;
  border-radius: 4px;
}
.subdomain-out {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.intake-subdomain-preview .intake-hint {
  margin: 4px 0 0;
  font-weight: 400;
  opacity: 0.75;
  font-size: 12px;
}
.intake-photo-preview {
  margin-top: 8px;
}
.intake-photo-preview img {
  max-width: 160px;
  max-height: 100px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
}
.intake-photo-cell input[type="file"],
.intake-prop-photos input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.intake-grid input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.file-picker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.file-picker-btn {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.file-picker-btn:hover {
  background: rgba(255,255,255,0.2);
}
.file-picker-name {
  flex: 1 1 140px;
  min-width: 0;
  font-size: 13px;
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-picker-name.is-empty {
  opacity: 0.65;
  font-style: italic;
}
.intake-prop-photos .file-picker {
  margin-top: 8px;
}
.intake-grid input:not([type="color"]),
.intake-grid select,
.intake-notes textarea {
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.intake-grid textarea {
  resize: vertical;
  min-height: 88px;
}
.intake-grid input[type="color"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 48px;
  padding: 4px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  cursor: pointer;
}
.intake-grid input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 2px;
}
.intake-grid input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 8px;
}
.intake-grid input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 8px;
}
.intake-grid input:not([type="color"]):focus,
.intake-grid select:focus,
.intake-notes textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.intake-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 14px;
}
.intake-table th {
  text-align: left;
  font-weight: 600;
  padding: 8px 6px;
  opacity: 0.85;
}
.intake-table td { padding: 6px; }
.intake-props-list {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
}
.intake-prop-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.intake-prop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.intake-prop-label {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.intake-prop-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  min-width: 0;
}
.intake-prop-fields label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  min-width: 0;
}
.intake-prop-fields .span-2 { grid-column: span 2; }
.intake-prop-fields input,
.intake-prop-fields textarea {
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font: inherit;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.intake-prop-photos {
  min-width: 0;
  max-width: 100%;
}
.intake-prop-photos input[type="file"].file-picker-input {
  width: 1px;
  max-width: 1px;
}
.intake-prop-photos-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.ip-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.ip-photo-thumb {
  position: relative;
  width: 72px;
  height: 54px;
}
.ip-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.25);
}
.ip-photo-rm {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.intake-table input {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.intake-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 16px;
}
.intake-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.intake-notes {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  min-width: 0;
  width: 100%;
}
.intake-summary-list {
  margin: 0;
  display: grid;
  gap: 10px;
}
.intake-summary-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  font-size: 14px;
}
.intake-summary-list dt {
  opacity: 0.75;
  font-weight: 600;
}
.intake-summary-list dd { margin: 0; }
.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}
.intake-actions[hidden] { display: none !important; }
#intake-submit:not([hidden]) { display: inline-flex; }
#intake-next[hidden], #intake-prev[hidden], #intake-submit[hidden] { display: none !important; }
.intake-error {
  background: rgba(196, 69, 54, 0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}
.intake-success {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.intake-success strong { display: block; font-size: 1.2rem; margin-bottom: 8px; }
.intake-success p { margin: 0; opacity: 0.9; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-ghost-sm {
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.btn-ghost-sm:hover { background: rgba(255,255,255,0.25); }

/* Founder */
.section-founder {
  padding: clamp(48px, 8vw, 88px) 0;
  background: linear-gradient(180deg, var(--cream) 0%, #ebe6dc 100%);
  border-top: 1px solid var(--line);
  overflow-x: clip;
}
.founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.founder-visual {
  margin: 0;
  width: 100%;
  max-width: 360px;
}
.founder-photo-wrap {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #1a4a5e 0%, var(--navy) 100%);
  line-height: 0;
}
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.founder-copy {
  min-width: 0;
}
.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.founder-name {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.founder-role {
  margin: 0 0 24px;
  font-size: clamp(13px, 1.8vw, 14px);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  line-height: 1.45;
}
.founder-story {
  display: grid;
  gap: 16px;
}
.founder-story p {
  margin: 0;
  font-size: clamp(15px, 1.9vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--line);
}
.footer-inner { text-align: center; }
.logo-footer { justify-content: center; margin-bottom: 12px; }
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 8px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 0 0 12px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover { color: var(--teal); }
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Legal pages */
.legal-main {
  padding: calc(var(--header-h) + 48px) 0 64px;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
}
.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--navy);
}
.legal-updated {
  margin: 0 0 32px;
  font-size: 14px;
  color: var(--muted);
}
.legal-content h2 {
  font-size: 1.125rem;
  margin: 28px 0 10px;
  color: var(--navy);
}
.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-actions {
  margin-top: 32px;
  text-align: center;
}
.legal-header .logo { pointer-events: auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual {
    justify-content: center;
    max-width: 480px;
    margin-inline: auto;
  }
  .device-compose { width: 100%; }
  .features-grid { grid-template-columns: repeat(6, 1fr); }
  .feature-card { grid-column: span 3; }
  .feature-card--wide { grid-column: span 3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: 1fr; }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: stretch;
  }
  .founder-visual {
    max-width: min(280px, 72vw);
    margin: 0 auto;
  }
  .founder-copy h2,
  .founder-name,
  .founder-role,
  .founder-story {
    text-align: left;
  }
  .case-grid { grid-template-columns: 1fr; }
  .case-image { aspect-ratio: 16/10; max-height: 400px; }
  .price-card-featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .header-menu {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: rgba(246, 243, 237, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header.nav-open .header-menu {
    display: flex;
  }
  .header-menu .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .header-menu .nav a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .header-cta {
    margin-top: auto;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid var(--line);
  }
  .header-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .lang-fab {
    right: auto;
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .problem-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 20px;
  }
  .price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-rows: none;
    grid-row: auto;
    text-align: center;
    padding: 32px 20px 28px;
  }
  .price-label,
  .price-was,
  .price-amount,
  .price-period,
  .price-amount-launch {
    align-self: center;
    width: 100%;
    text-align: center;
    justify-content: center;
    white-space: normal;
  }
  .price-amount {
    font-size: clamp(3rem, 14vw, 3.6rem);
  }
  .price-was {
    font-size: clamp(1.3rem, 5.5vw, 1.55rem);
  }
  .price-amount-launch {
    flex-wrap: wrap;
    white-space: normal;
    gap: 0.2em 0.45em;
  }
  .price-amount-custom {
    font-size: clamp(2.15rem, 9vw, 2.65rem);
  }
  .price-card ul {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    text-align: left;
  }
  .price-card .btn {
    max-width: 22rem;
    margin-inline: auto;
  }
  .section-cta {
    overflow-x: clip;
  }
  .section-cta .container {
    width: min(1140px, calc(100% - 40px));
  }
  .cta-panel {
    padding: 28px 18px 24px;
    border-radius: var(--radius);
  }
  .cta-copy h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
    line-height: 1.25;
  }
  .cta-copy p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .intake-grid { grid-template-columns: 1fr; }
  .intake-grid .span-2 { grid-column: auto; }
  .intake-prop-fields { grid-template-columns: 1fr; }
  .intake-prop-fields .span-2 { grid-column: auto; }
  .intake-checks { grid-template-columns: 1fr; }
  .intake-summary-list div { grid-template-columns: 1fr; }
  .intake-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }
  .intake-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  #intake-add-prop {
    width: 100%;
    justify-content: center;
  }
  .section-founder {
    padding: 44px 0 40px;
  }
  .section-founder .container {
    width: min(1140px, calc(100% - 40px));
  }
  .founder-grid {
    gap: 20px;
  }
  .founder-visual {
    max-width: min(220px, 64vw);
    margin: 0 auto 8px;
  }
  .founder-copy {
    width: 100%;
  }
  .founder-copy h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.55rem);
    margin-bottom: 10px;
    text-align: left;
  }
  .founder-name {
    font-size: 1.15rem;
    text-align: left;
  }
  .founder-role {
    margin-bottom: 16px;
    padding-inline: 0;
    line-height: 1.45;
    text-align: left;
  }
  .founder-copy .eyebrow {
    text-align: left;
  }
  .founder-story {
    gap: 12px;
  }
  .founder-story p {
    font-size: 15px;
    line-height: 1.62;
  }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card--wide { grid-column: span 1; }
  .social-proof-stats { gap: 20px; }
  .hero { padding-bottom: 32px; overflow: visible; }
  .section { padding: 56px 0; }
  .section-problem { padding-top: 36px; }
  .container {
    width: min(1140px, calc(100% - 40px));
  }
  .device-compose {
    min-height: 0;
    padding-bottom: 16px;
  }
  .device-pedestal { display: none; }
  .browser-frame {
    width: 100%;
    transform: none;
    box-shadow: var(--shadow-soft);
  }
  .mock-lines { max-width: 65%; }
  .iphone {
    width: 148px;
    right: -4px;
    bottom: 4px;
    animation: phone-float-mobile 7s ease-in-out infinite;
  }
  .iphone-screen { height: 228px; }
  @keyframes phone-float-mobile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  .hero-visual {
    padding-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .iphone { animation: none !important; }
}
