/* =============================================
   BOBCLASS STUDIO MANAGER — LANDING PAGE CSS
   Font: Reddit Sans
   Palette: Soft Lavender base · Dark Clay accent
   ============================================= */

:root {
  /* ---- Lavender base palette ---- */
  --lav-50:       #F4F4FF;   /* near-white with a hint of lavender */
  --lav-100:      #EAEAFF;   /* light lavender tint */
  --lav-200:      #D3D3FF;   /* signature lavender */
  --lav-300:      #B8B8F8;   /* mid lavender */
  --lav-400:      #9898E0;   /* muted purple-blue */
  --lav-500:      #6B6BC4;   /* deeper lavender */

  /* ---- Dark Clay accent ---- */
  --clay:         #F26C4F;   /* Dark Clay — primary CTA */
  --clay-dark:    #D4542F;   /* hover state */
  --clay-pale:    #FDE8E3;   /* light clay tint for backgrounds */

  /* ---- Ink / text ---- */
  --ink:          #1A1830;   /* near-black with lavender undertone */
  --ink-soft:     #3D3B5C;   /* body text */
  --ink-muted:    #5C5977;   /* secondary / captions — darkened from #6B6890 for WCAG AA on white */

  /* ---- Neutrals ---- */
  --white:        #FFFFFF;
  --surface:      #F4F4FF;   /* page background */
  --surface-alt:  #FFFFFF;   /* section alternating background */
  --border:       #D3D3FF;   /* borders */
  --border-light: #E8E8FF;   /* subtle borders */

  /* ---- Semantic ---- */
  --green:        #3D8B6E;
  --green-pale:   #E6F4EE;

  /* ---- Typography ---- */
  --font-display: 'Reddit Sans', 'Helvetica Neue', sans-serif;
  --font-body:    'Reddit Sans', 'Helvetica Neue', sans-serif;

  /* ---- Shape ---- */
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;

  /* ---- Shadows ---- */
  --shadow-soft:  0 2px 16px rgba(26,24,48,0.07);
  --shadow-card:  0 4px 28px rgba(26,24,48,0.10);

  --max-width:    1120px;
  --section-gap:  120px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--lav-200);
  outline-offset: 3px;
}

/* ---- FOCUS VISIBLE ---- */
:focus-visible {
  outline: 2px solid var(--lav-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.btn-primary:focus-visible,
.btn-nav:focus-visible {
  outline-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(242,108,79,0.25);
}
.btn-outline:focus-visible {
  outline-color: var(--clay);
}
a:focus-visible {
  border-radius: 2px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; font-size: inherit; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-header.centered { text-align: center; margin-bottom: 72px; }
.section-intro { margin-top: 18px; font-size: 17px; color: var(--ink-muted); }

/* ---- LOGO SVG ---- */
.logo-svg {
  display: block;
  height: 28px;
  width: auto;
  pointer-events: none; /* never intercept clicks */
}
.logo-svg--white { /* footer version — all paths already set to white in HTML */ }
.footer-brand .logo-svg { margin-bottom: 14px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clay);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(242,108,79,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
}
.btn-outline:hover { background: var(--clay-pale); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding: 13px 0;
}
.btn-ghost:hover { color: var(--clay); }
.btn-nav {
  background: var(--clay);
  color: var(--white);
  padding: 9px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--clay-dark); }
.btn-large { padding: 16px 34px; font-size: 16px; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: visible;
}
/* Use pseudo-element for blur so nav doesn't create a stacking context */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,244,255,0.92);
  z-index: -1;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .nav::before {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* Slightly more transparent since blur adds visual opacity */
    background: rgba(244,244,255,0.82);
  }
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(26,24,48,0.07);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clay); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nav-mobile a { font-size: 16px; font-weight: 500; color: var(--ink-soft); }
.nav-mobile.open { display: flex; }

/* ---- LANGUAGE PICKER ---- */
.lang-picker { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  height: 36px;
}
.lang-trigger:hover { border-color: var(--clay); background: var(--clay-pale); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-code { letter-spacing: 0.05em; }
.lang-chevron {
  transition: transform 0.2s;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.lang-trigger[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-width: 150px;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
}
.lang-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s;
}
.lang-dropdown li:hover,
.lang-dropdown li[aria-selected="true"] { background: var(--lav-100); color: var(--ink); }
.lang-dropdown li[aria-selected="true"] { font-weight: 600; }
.lang-dropdown li span { font-size: 18px; line-height: 1; }
.lang-mobile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 4px 0;
}
.lang-mobile-flags { display: flex; gap: 6px; }
.lmf-btn {
  background: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 20px;
  cursor: pointer;
  padding: 3px 4px;
  line-height: 1;
  transition: border-color 0.15s, background 0.15s;
}
.lmf-btn:hover { border-color: var(--border); background: var(--lav-100); }
.lmf-btn.active { border-color: var(--clay); background: var(--clay-pale); }

/* ---- CURRENCY PICKER ---- */
.currency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
}
.currency-picker { position: relative; }
.currency-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  height: 32px;
}
.currency-trigger:hover { border-color: var(--clay); background: var(--clay-pale); }
.currency-flag { font-size: 16px; line-height: 1; }
.currency-code { letter-spacing: 0.05em; }
.currency-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.97);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow-y: auto;
  max-height: 320px;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 9999;
}
.currency-dropdown.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.currency-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.currency-dropdown li:hover,
.currency-dropdown li[aria-selected="true"] { background: var(--lav-100); color: var(--ink); }
.currency-dropdown li[aria-selected="true"] { font-weight: 600; }
.currency-dropdown li span { font-size: 18px; line-height: 1; }

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-lines::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: -200px; right: -150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(211,211,255,0.5) 0%, transparent 70%);
}
.hero-bg-lines::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -100px; left: -100px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242,108,79,0.08) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; max-width: 860px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-headline {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-headline em {
  font-style: normal;
  color: var(--clay);
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-trust {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.7s 0.7s ease forwards;
}
.hero-trust strong { font-size: 18px; letter-spacing: 0.05em; }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--lav-300));
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%    { transform: scaleY(0); transform-origin: top; }
  50%   { transform: scaleY(1); transform-origin: top; }
  51%   { transform-origin: bottom; }
  100%  { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- WHAT IS BOBCLASS ---- */
.what { padding: var(--section-gap) 0; background: var(--surface-alt); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.what-text .section-title { margin-bottom: 24px; }
.what-text p { color: var(--ink-soft); margin-bottom: 16px; }
.what-text p:last-of-type { margin-bottom: 28px; }
.what-bullets { display: flex; flex-direction: column; gap: 10px; }
.what-bullets li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.what-bullets li svg { color: var(--clay); flex-shrink: 0; }
.what-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }

/* ---- Flip animation ---- */
.device-flipper {
  width: 100%;
  height: 100%;
  position: relative;
}
.device-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-face--front { animation: face-front 11s ease-in-out infinite; }
.device-face--back  { animation: face-back  11s ease-in-out infinite; }

@keyframes face-front {
  0%, 40%  { opacity: 1; transform: scaleX(1); }
  45%      { opacity: 0; transform: scaleX(0); }
  95%      { opacity: 0; transform: scaleX(0); }
  100%     { opacity: 1; transform: scaleX(1); }
}
@keyframes face-back {
  0%, 45%  { opacity: 0; transform: scaleX(0); }
  50%      { opacity: 1; transform: scaleX(1); }
  90%      { opacity: 1; transform: scaleX(1); }
  95%      { opacity: 0; transform: scaleX(0); }
  100%     { opacity: 0; transform: scaleX(0); }
}

/* ---- iPad mockup ---- */
.ipad-mockup { display: flex; justify-content: center; align-items: center; height: 100%; width: 100%; }
.ipad-shell {
  width: 100%;
  max-width: 620px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 6px #1a1830, 0 20px 50px rgba(26,24,48,0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: inherit;
}
/* Status bar */
.ipad-status { display: flex; align-items: center; justify-content: space-between; padding: 8px 16px 4px; background: #fff; }
.ipad-time { font-size: 10px; font-weight: 700; color: #1a1830; }
.ipad-status-icons { display: flex; align-items: center; gap: 5px; color: #1a1830; }
.ipad-battery { font-size: 9px; font-weight: 600; color: #1a1830; }
/* Tabs */
.ipad-tabs { display: flex; align-items: center; gap: 16px; padding: 2px 16px 0; background: #fff; border-bottom: 1px solid #e5e5e5; font-size: 10px; font-weight: 600; color: #999; }
.ipad-tab { padding-bottom: 5px; }
.ipad-tab-active { color: #1F53AB; border-bottom: 2px solid #1F53AB; }
/* Main split */
.ipad-main { display: flex; flex: 1; overflow: hidden; }
/* Calendar side */
.ipad-cal { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.ipad-month-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 10px 3px; border-bottom: 1px solid #eee; }
.ipad-month-title { font-size: 10px; font-weight: 700; color: #1a1830; }
.ipad-month-nav { display: flex; align-items: center; gap: 5px; color: #666; }
/* Day headers */
.ipad-day-headers { display: grid; grid-template-columns: 30px repeat(7, 1fr); border-bottom: 1px solid #eee; padding: 3px 0; }
.ipad-timegutter {}
.ipad-dayhdr { text-align: center; font-size: 7px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .04em; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ipad-dayhdr span { font-size: 9px; font-weight: 600; color: #555; }
.ipad-today-hdr { color: #1F53AB; }
.ipad-today-pill { background: #E3783B; color: #fff !important; border-radius: 50%; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 8px !important; font-weight: 700; }
/* Grid */
.ipad-grid {
  display: grid;
  grid-template-columns: 30px repeat(7, 1fr);
  grid-template-rows: repeat(14, 20px);
  flex: 1;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.ipad-times { grid-column: 1; grid-row: 1/-1; display: flex; flex-direction: column; }
.ipad-times span { font-size: 6.5px; color: #bbb; height: 20px; display: flex; align-items: flex-start; padding-top: 1px; padding-left: 2px; }
.ipad-col { display: grid; grid-template-rows: repeat(14, 20px); padding: 0 1px; position: relative; }
.ipad-col-today { background: rgba(31,83,171,0.03); }
.ipad-ev { border-radius: 3px; padding: 1px 3px; overflow: hidden; font-size: 6.5px; line-height: 1.3; }
.ipad-ev b { display: block; font-weight: 700; }
.ipad-ev span { display: block; opacity: .8; }
.ipad-ev-lavender { background: #ebe7f9; color: #5b4b8a; }
.ipad-ev-green    { background: #d4f0e0; color: #2d7a50; }
.ipad-ev-purple   { background: #c8b8f0; color: #3d2a80; }
.ipad-ev-pink     { background: #f8c8d8; color: #8a2a4a; }
.ipad-ev-blue     { background: #c8e0f8; color: #1a4a80; }
.ipad-ev-orange   { background: #fde8d4; color: #8a4020; }
.ipad-ev-teal     { background: #c8f0ee; color: #1a6a68; }
.ipad-ev-selected { outline: 2px solid #1F53AB; }
/* Now line */
.ipad-now-line {
  position: absolute; left: 0; right: 0;
  top: calc(4 * 20px + 10px);
  height: 1.5px; background: #E3783B; z-index: 2;
  grid-column: 1/-1;
}
.ipad-now-dot { position: absolute; left: -3px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: #E3783B; display: block; }
/* Today button */
.ipad-today-btn {
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  background: #E3783B; color: #fff; font-size: 8px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap; z-index: 3;
}
/* Detail panel */
.ipad-detail {
  width: 160px;
  flex-shrink: 0;
  border-left: 1px solid #e5e5e5;
  background: #FEF7FF;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 7px;
  overflow: hidden;
}
.ipad-detail-header { display: flex; align-items: center; gap: 6px; padding-bottom: 6px; border-bottom: 1px solid #eee; }
.ipad-detail-title { font-size: 9px; font-weight: 700; color: #1a1830; }
.ipad-detail-row { display: flex; align-items: flex-start; gap: 6px; }
.ipad-detail-icon { color: #999; margin-top: 1px; flex-shrink: 0; }
.ipad-detail-label { font-size: 7px; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1px; }
.ipad-detail-value { font-size: 8px; font-weight: 600; color: #1a1830; line-height: 1.3; }
.ipad-detail-blue { color: #1F53AB; }
.ipad-detail-green { color: #2d7a50; }
.ipad-color-swatch { display: inline-block; width: 10px; height: 10px; border-radius: 2px; background: #c8e0f8; vertical-align: middle; margin-left: 4px; }
/* Bottom nav */
.ipad-bottom-nav { display: flex; justify-content: space-around; padding: 5px 4px 8px; background: #fff; border-top: 1px solid #eee; }
.ipad-nav-item { display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: 7px; color: #999; position: relative; }
.ipad-nav-active { color: #1F53AB; }
.ipad-badge { position: absolute; top: -2px; right: -4px; background: #E3783B; color: #fff; font-size: 5.5px; font-weight: 700; width: 9px; height: 9px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ---- iPhone mockup ---- */
.phone-mockup { display: flex; justify-content: center; align-items: center; height: 100%; }
.phone-shell {
  width: 220px;
  height: 464px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 0 0 8px #1a1830, 0 24px 60px rgba(26,24,48,0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: inherit;
}
/* Status bar */
.phone-status { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 4px; background: #fff; }
.phone-time { font-size: 12px; font-weight: 700; color: #1a1830; }
.phone-status-icons { display: flex; align-items: center; gap: 5px; color: #1a1830; }
/* Tabs */
.phone-tabs { display: flex; align-items: center; gap: 10px; padding: 4px 14px 6px; background: #fff; border-bottom: 1px solid #eee; font-size: 11px; font-weight: 600; color: #999; }
.phone-tab-active { color: #1F53AB; border-bottom: 2px solid #1F53AB; padding-bottom: 2px; }
/* Month row */
.phone-month-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 14px; background: #fff; }
.phone-month-title { font-size: 12px; font-weight: 700; color: #1a1830; }
.phone-month-nav { display: flex; align-items: center; gap: 6px; color: #555; }
/* Day columns */
.phone-day-cols { display: grid; grid-template-columns: 36px 1fr 1fr 1fr; background: #fff; padding: 0 0 4px; border-bottom: 1px solid #eee; }
.phone-day-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.phone-day-label { font-size: 9px; font-weight: 600; color: #999; text-transform: uppercase; }
.phone-day-num { font-size: 13px; font-weight: 600; color: #555; }
.phone-day-today .phone-day-label { color: #1F53AB; }
.phone-today-num { background: #E3783B; color: #fff; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
/* Calendar grid */
.phone-cal-grid {
  display: grid;
  grid-template-columns: 36px 1fr 1fr 1fr;
  grid-template-rows: repeat(12, 22px);
  flex: 1;
  overflow: clip;
  background: #fafafa;
  position: relative;
}
.phone-time-col { grid-column: 1; grid-row: 1 / -1; display: flex; flex-direction: column; padding-top: 2px; }
.phone-time-col span { font-size: 8px; color: #bbb; height: 22px; display: flex; align-items: flex-start; padding-left: 4px; }
.phone-cal-col { display: grid; grid-template-rows: repeat(12, 22px); padding: 2px 2px 0; gap: 1px; }
.phone-col-t { grid-column: 2; }
.phone-col-f { grid-column: 3; }
.phone-col-s { grid-column: 4; }
.phone-event { border-radius: 4px; padding: 2px 4px; overflow: hidden; font-size: 8px; line-height: 1.3; }
.phone-ev-title { font-weight: 700; }
.phone-ev-sub { opacity: .8; }
.phone-ev-lavender { background: #e8e4f8; color: #5b4b8a; }
.phone-ev-green    { background: #d4f0e0; color: #2d7a50; }
.phone-ev-purple   { background: #c8b8f0; color: #3d2a80; }
.phone-ev-pink     { background: #f8c8d8; color: #8a2a4a; }
.phone-ev-blue     { background: #c8e0f8; color: #1a4a80; }
.phone-ev-orange   { background: #fde8d4; color: #8a4020; }
/* Now line */
.phone-now-line {
  position: absolute;
  left: 36px; right: 0;
  top: calc(6 * 22px + 8px);
  height: 1.5px;
  background: #E3783B;
  grid-column: 1 / -1;
  z-index: 2;
}
.phone-now-dot { position: absolute; left: -4px; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: #E3783B; display: block; }
/* Bottom nav */
.phone-bottom-nav { display: flex; justify-content: space-around; padding: 6px 4px 10px; background: #fff; border-top: 1px solid #eee; }
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 7.5px; color: #999; position: relative; }
.phone-nav-active { color: #1F53AB; }
.phone-badge { position: absolute; top: -3px; right: -4px; background: #E3783B; color: #fff; font-size: 6px; font-weight: 700; width: 10px; height: 10px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.what-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.what-card-1 { width: 280px; top: 0; left: 0; animation: float1 5s ease-in-out infinite; }
.what-card-2 { width: 180px; bottom: 30px; left: 60px; animation: float2 5.5s 0.5s ease-in-out infinite; }
.what-card-3 { width: 200px; top: 80px; right: 0; animation: float1 6s 1s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.wc-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 10px; }
.wc-dot--green { background: var(--green); }
.wc-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin-bottom: 12px; }
.wc-row { display: flex; gap: 8px; align-items: baseline; padding: 5px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.wc-row:last-child { border-bottom: none; }
.wc-time { color: var(--ink-muted); width: 38px; flex-shrink: 0; }
.wc-name { flex: 1; color: var(--ink-soft); font-weight: 500; }
.wc-spots { font-size: 11px; color: var(--lav-400); font-weight: 600; }
.wc-big { font-size: 28px; font-weight: 700; color: var(--ink); line-height: 1; margin: 4px 0; letter-spacing: -0.02em; }
.wc-sub { font-size: 12px; font-weight: 600; color: var(--green); }
.wc-name-lg { font-size: 20px; font-weight: 700; color: var(--ink); margin: 4px 0; letter-spacing: -0.01em; }

/* ---- FEATURES ---- */
.features { padding: var(--section-gap) 0; background: var(--surface); }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border-light); }
.feature-block:last-child { border-bottom: none; }
.feature-block--alt .feature-content { order: 2; }
.feature-block--alt .feature-visual { order: 1; }
.feature-number { font-size: 64px; font-weight: 800; color: var(--lav-200); line-height: 1; margin-bottom: 4px; letter-spacing: -0.04em; }
.feature-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin-bottom: 14px; }
.feature-title { font-size: clamp(26px, 2.8vw, 36px); font-weight: 700; line-height: 1.18; color: var(--ink); margin-bottom: 18px; letter-spacing: -0.02em; }
.feature-desc { color: var(--ink-soft); margin-bottom: 24px; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li { position: relative; padding-left: 18px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
.feature-visual {
  background: var(--lav-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scheduling */
.fv-week { width: 100%; }
.fv-week-header { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; margin-bottom: 10px; }
.fv-week-header span { font-size: 11px; font-weight: 700; text-align: center; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.fv-week-body { display: grid; grid-template-columns: repeat(6,1fr); grid-template-rows: repeat(3,72px); gap: 6px; }
.fv-slot { border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6px; line-height: 1.3; }
.fv-slot--pilates { background: rgba(242,108,79,0.12); color: var(--clay-dark); }
.fv-slot--yoga    { background: rgba(107,107,196,0.15); color: var(--lav-500); }
.fv-slot--barre   { background: rgba(61,139,110,0.15); color: var(--green); }

/* Payments tiles */
.fv-packs { display: flex; gap: 16px; flex-direction: column; width: 100%; }
.fv-pack { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 18px 22px; position: relative; }
.fv-pack--highlight { border-color: var(--clay); background: var(--clay-pale); }
.fv-pack-name { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 2px; }
.fv-pack-price { font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.fv-pack-price span { font-size: 15px; font-weight: 500; color: var(--ink-muted); }
.fv-pack-sub { font-size: 12px; font-weight: 500; color: var(--ink-muted); margin-top: 2px; }
.fv-pack-icon { font-size: 22px; margin-bottom: 6px; }

/* Booking page mockup */
.feature-visual--booking { padding: 0; overflow: hidden; align-items: stretch; }
.bp-mockup { width: 100%; display: flex; flex-direction: column; font-family: inherit; }
.bp-nav {
  background: var(--lav-500);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bp-nav-brand { color: #fff; font-size: 11px; font-weight: 700; white-space: nowrap; }
.bp-nav-tabs { display: flex; gap: 20px; margin-left: auto; }
.bp-nav-tab { color: rgba(255,255,255,0.72); font-size: 12px; font-weight: 600; padding-bottom: 3px; white-space: nowrap; }
.bp-nav-tab--active { color: #fff; border-bottom: 2px solid #fff; }
.bp-content { display: flex; flex-direction: column; }
.bp-date-hdr {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}
.bp-time-slot {
  background: var(--lav-400);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  text-align: center;
  letter-spacing: 0.02em;
}
.bp-class-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}
.bp-class-info { flex: 1; min-width: 0; }
.bp-class-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.bp-class-meta { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.bp-class-detail { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.bp-book-btn {
  background: var(--clay);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  cursor: default;
  flex-shrink: 0;
  letter-spacing: 0.07em;
}
.bp-panels-wrap {
  display: grid;
}
.bp-content {
  grid-area: 1 / 1;
}
.bp-panel--hidden {
  visibility: hidden;
  pointer-events: none;
}
.bp-nav-tab[data-bp-tab] { cursor: pointer; }

/* Appointments panel */
.bp-appt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
}
.bp-appt-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.bp-select-btn {
  background: var(--lav-500);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 14px;
  cursor: default;
  flex-shrink: 0;
  letter-spacing: 0.07em;
}

/* Store panel */
.bp-store-hdr {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 18px 8px;
  background: #fff;
}
.bp-store-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin: 0 12px 8px;
  background: #fff;
}
.bp-store-info { flex: 1; min-width: 0; }
.bp-store-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.bp-store-type { font-size: 11px; color: var(--ink-muted); margin-top: 2px; }
.bp-store-price { font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* Clients */
.feature-visual--clients { flex-direction: column; align-items: stretch; gap: 16px; }
.fv-client-card { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: var(--radius-md); padding: 14px 18px; border: 1.5px solid var(--border-light); }
.fv-client-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--clay-pale); color: var(--clay); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.fv-client-avatar-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.fv-client-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.fv-client-tag { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 3px; }
.fv-tag--champion { background: var(--green-pale); color: var(--green); }
.fv-client-stats { display: flex; gap: 12px; }
.fv-stat { flex: 1; background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-sm); padding: 12px 14px; text-align: center; }
.fv-stat-n { display: block; font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.fv-stat-l { display: block; font-size: 10px; font-weight: 600; color: var(--ink-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.07em; }
.fv-client-history { background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; }
.fv-client-meta { font-size: 12px; color: var(--ink-muted); margin-top: 3px; font-weight: 500; }
.fv-contact-buttons { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.fv-contact-btn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; cursor: default; transition: border-color 0.15s, color 0.15s; }
.fv-contact-btn:hover { border-color: var(--clay); color: var(--clay); }
.fv-contact-btn--active { background: var(--lav-100); border-color: var(--lav-100); color: #1F53AB; }

/* WhatsApp message modal */
.fv-msg-modal {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(26,24,48,0.18);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  border: 1px solid var(--border-light);
}
.fv-msg-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--lav-100); color: #1F53AB; display: flex; align-items: center; justify-content: center; }
.fv-msg-title { font-size: 17px; font-weight: 700; color: var(--ink); text-align: center; }
.fv-msg-label { font-size: 12px; font-weight: 600; color: var(--ink-muted); align-self: flex-start; }
.fv-msg-select {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
}
.fv-msg-actions { display: flex; gap: 10px; width: 100%; margin-top: 4px; }
.fv-msg-cancel {
  flex: 1; padding: 10px; border-radius: 999px; border: 1.5px solid var(--border);
  background: none; font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: default;
}
.fv-msg-next {
  flex: 1; padding: 10px; border-radius: 999px; border: none;
  background: #1F53AB; color: var(--white); font-size: 14px; font-weight: 700; cursor: default;
}
.fv-hist-row { display: flex; gap: 10px; padding: 9px 14px; font-size: 12px; border-bottom: 1px solid var(--border-light); }
.fv-hist-row:last-child { border-bottom: none; }
.fv-hist-date { color: var(--ink-muted); width: 90px; flex-shrink: 0; font-weight: 500; }
.fv-hist-cls { flex: 1; color: var(--ink-soft); font-weight: 500; }
.fv-present { color: var(--green); font-weight: 700; }

/* ---- PRICING ---- */
.pricing { padding: var(--section-gap) 0; background: var(--surface-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 32px; }
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lav-50);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card--featured { border-color: var(--clay); background: var(--clay-pale); }
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--clay);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin-bottom: 8px; }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 10px; letter-spacing: -0.03em; }
.pricing-period { font-size: 18px; font-weight: 400; color: var(--ink-muted); }
.pricing-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; min-height: 44px; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; font-weight: 500; color: var(--ink-soft); padding-left: 16px; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); opacity: 0.6; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note { font-size: 13px; color: var(--ink-muted); text-align: center; }
.pricing-note a { color: var(--clay); text-decoration: underline; }

/* ---- CLOSING ---- */
.closing { padding: 64px 0; position: relative; overflow: hidden; background: var(--surface); }
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(211,211,255,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; }
.closing-cta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.closing-proof { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; font-size: 13px; font-weight: 500; color: var(--ink-muted); }
.cp-sep { color: var(--lav-300); }
.cp-item strong { color: var(--ink-soft); }

/* ---- CONTACT ---- */
.contact { padding: var(--section-gap) 0; background: var(--surface-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text p { color: var(--ink-soft); margin-top: 20px; margin-bottom: 24px; line-height: 1.7; }
.contact-email-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}
.contact-email-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-rotating-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.contact-rotating-text.fade-out { opacity: 0; }

/* ---- Who uses ---- */
.who-uses { padding: var(--section-gap) 0; background: var(--surface-alt); }
.who-professions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 56px;
}
.who-tag {
  background: var(--clay-pale);
  color: var(--clay-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
}
.who-customers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.who-card-studio {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.who-card-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}
.who-card-location {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.who-card-owner {
  font-size: 13px;
  color: var(--ink-muted);
}
.who-owner-label {
  font-weight: 600;
}
@media (max-width: 640px) {
  .who-customers { grid-template-columns: 1fr 1fr; }
}

/* ---- FAQ ---- */
.faq { padding: var(--section-gap) 0; background: var(--surface); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--ink-muted);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--clay); }
.faq-item[open] .faq-chevron { color: var(--clay); }
.faq-a {
  padding: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 640px;
}
.faq-a a {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.faq-a a:hover {
  color: var(--clay-dark);
  text-decoration-color: var(--clay-dark);
}

/* ---- FOOTER ---- */
.footer { background: #EDEDED; color: var(--ink-soft); padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid #D4D4D4; margin-bottom: 32px; }
.footer-brand p { font-size: 14px; color: var(--ink-muted); margin-top: 4px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.footer-col a:hover { color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-muted); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .lang-picker { order: -1; }
  .lang-dropdown { right: auto; left: 0; }
  .hero-headline { font-size: clamp(32px,8vw,50px); }
  .what-grid, .feature-block, .feature-block--alt, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-email-card { padding: 36px 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .feature-block--alt .feature-content { order: 0; }
  .feature-block--alt .feature-visual  { order: 0; }
  .what-visual { height: 500px; }
  .ipad-detail { width: 130px; }
  .ipad-detail-value { font-size: 7.5px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .footer-links { gap: 32px; }
  .fv-client-stats { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .closing-cta { flex-direction: column; align-items: center; }
}
