/* =========================================================
   Thirr Karrotrec — enterprise refresh
   Brand pivot: logo-blue is the primary, red used sparingly
   for emergency CTAs only. Typography tightened. Spacing
   scale unified on an 8px grid.
   ========================================================= */

:root {
  /* Brand */
  --brand-50:  #eaf1ff;
  --brand-100: #d6e3ff;
  --brand-200: #aac4ff;
  --brand-300: #7aa0f7;
  --brand-400: #4a78e8;
  --brand-500: #1f55d6;        /* primary, matches logo */
  --brand-600: #0f3fb3;
  --brand-700: #0a2f8a;
  --brand-800: #082362;
  --brand-900: #061a44;

  /* Neutral */
  --ink-900: #0a1426;
  --ink-700: #1f2a3d;
  --ink-500: #45526a;
  --ink-400: #6b7890;
  --ink-300: #94a0b5;
  --ink-200: #c6cfdd;
  --ink-100: #e5eaf2;
  --ink-50:  #f3f6fb;
  --ink-0:   #ffffff;

  /* Accent */
  --red:     #e0252d;
  --red-600: #c01e25;
  --green:   #15a368;
  --gold:    #c6932c;

  /* Surfaces */
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --line: rgba(10, 20, 38, 0.08);
  --line-strong: rgba(10, 20, 38, 0.14);

  /* Aliases used by legacy classes */
  --ink: var(--ink-900);
  --navy: var(--brand-700);
  --navy-2: var(--brand-500);
  --muted: var(--ink-500);
  --blue: var(--brand-500);

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(10, 20, 38, 0.04);
  --shadow-sm: 0 4px 12px rgba(10, 20, 38, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 20, 38, 0.07);
  --shadow-lg: 0 24px 60px rgba(10, 20, 38, 0.10);
  --shadow-xl: 0 40px 90px rgba(10, 20, 38, 0.14);
  --shadow: var(--shadow-md);
  --shadow-soft: var(--shadow-sm);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;

  /* Layout */
  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px var(--gutter);
  background: rgba(247, 249, 252, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(10, 20, 38, 0.05);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(15, 63, 179, 0.20);
}
.brand-text {
  color: var(--brand-700);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
}
.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: color 160ms ease, background 160ms ease;
}
.main-nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-700);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.header-phone::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 163, 104, 0.18);
}
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-btn {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-400);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}
.lang-btn.is-active { color: #fff; background: var(--brand-700); }

.header-store-actions { display: none; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--brand-700);
}

/* ---------- Layout ---------- */
.section-shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-block { padding: clamp(64px, 9vw, 112px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 13px; }
.btn-red {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(224, 37, 45, 0.28);
}
.btn-red:hover { background: var(--red-600); box-shadow: 0 16px 34px rgba(224, 37, 45, 0.34); }
.btn-whatsapp {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(21, 163, 104, 0.26);
}
.btn-primary {
  color: #fff;
  background: var(--brand-700);
  box-shadow: 0 12px 28px rgba(15, 63, 179, 0.24);
}
.btn-primary:hover { background: var(--brand-600); }
.btn-ghost {
  color: var(--brand-700);
  background: #fff;
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--brand-50); border-color: var(--brand-200); }

/* ---------- Store buttons ---------- */
.download-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.store-button {
  display: inline-grid;
  align-content: center;
  min-width: 160px;
  min-height: 54px;
  padding: 8px 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--ink-900);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-button span {
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.78;
  text-transform: uppercase;
}
.store-button strong { font-size: 16px; line-height: 1.18; font-weight: 800; }
.store-play { background: linear-gradient(135deg, #0a2f8a, #1f55d6); }
.store-apple { background: linear-gradient(135deg, #161a23, #2d3340); }
.download-row-app { margin-top: 24px; }
.download-row-contact { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(28px, 5vw, 56px) 0 clamp(20px, 4vw, 48px); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 160px);
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 7px 13px 7px 9px;
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-xs);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(21, 163, 104, 0.18);
}
.hero-copy h1,
.section-heading h2,
.app-copy h2,
.about-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(40px, 5.4vw, 70px);
  overflow-wrap: anywhere;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-500);
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.6;
}
.cta-row, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-keywords span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-700);
  font-size: 12.5px;
  font-weight: 700;
}
.hero-keywords span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}

.hero-media {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 520px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--brand-900);
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 68, 0) 35%, rgba(6, 26, 68, 0.65) 100%),
    linear-gradient(45deg, rgba(15, 63, 179, 0.18), transparent 60%);
}
.hero-overlay-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  color: var(--ink-900);
  box-shadow: 0 14px 36px rgba(6, 26, 68, 0.18);
}
.pulse-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(21, 163, 104, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(21, 163, 104, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(21, 163, 104, 0.06); }
}
.hero-overlay-card strong { display: block; font-size: 14.5px; font-weight: 800; }
.hero-overlay-card small { display: block; margin-top: 2px; color: var(--ink-500); font-size: 12.5px; font-weight: 700; }

/* Hero floating stat */
.hero-floating {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(6, 26, 68, 0.18);
}
.hero-floating strong {
  color: var(--brand-700);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-floating span {
  color: var(--ink-500);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Quick contact ---------- */
.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -16px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}
.quick-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.quick-icon svg { width: 22px; height: 22px; fill: currentColor; }
.quick-call .quick-icon { color: var(--red); background: rgba(224, 37, 45, 0.10); }
.quick-whatsapp .quick-icon { color: var(--green); background: rgba(21, 163, 104, 0.12); }
.quick-app .quick-icon { color: var(--brand-600); background: rgba(15, 63, 179, 0.10); }
.quick-card strong { display: block; color: var(--ink-900); font-size: 15.5px; font-weight: 800; }
.quick-card small { display: block; margin-top: 2px; color: var(--ink-500); font-size: 13px; font-weight: 600; }

/* ---------- Stats band (full-bleed) ---------- */
.stats-band-full {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(36px, 5vw, 56px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(60% 120% at 0% 50%, rgba(15, 63, 179, 0.08), transparent 60%),
    radial-gradient(50% 120% at 100% 50%, rgba(31, 85, 214, 0.06), transparent 60%),
    #fff;
}
.stats-band-inner { max-width: var(--max); margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stats-grid.stats-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}
.stat-item { padding: 8px 18px; border-left: 1px solid var(--line); }
.stat-item:first-child { border-left: 0; padding-left: 4px; }
.stat-item strong {
  display: block;
  color: var(--brand-700);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(32px, 3.6vw, 50px);
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.stat-item span {
  display: block;
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* ---------- Section headings ---------- */
.section-heading { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-500);
}
.section-heading h2,
.app-copy h2,
.about-card h2,
.contact-copy h2 {
  font-size: clamp(32px, 3.6vw, 50px);
}
.section-heading p,
.app-copy p,
.about-card p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--ink-500);
  font-size: 16.5px;
  line-height: 1.6;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 500ms ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 68, 0) 30%, rgba(6, 26, 68, 0.78) 100%);
}
.service-card > div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.service-card h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.service-card p { margin: 0; color: rgba(255, 255, 255, 0.84); font-size: 13.5px; font-weight: 500; }
.service-wide { grid-row: span 2; min-height: 614px; }
.service-wide img { min-height: 614px; }
.service-wide h3 { font-size: clamp(26px, 2.6vw, 36px); }

.service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}
.service-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-500);
}
.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-700);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}

/* Outside-subscription services note */
.services-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #fff, var(--brand-50));
  box-shadow: var(--shadow-xs);
}
.services-note-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand-700);
}
.services-note-icon svg { width: 22px; height: 22px; }
.services-note strong {
  display: block;
  color: var(--ink-900);
  font-size: 15px;
  font-weight: 800;
}
.services-note p {
  margin: 6px 0 0;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* ---------- Process ---------- */
.process-band {
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 0% 100%, rgba(31, 85, 214, 0.45), transparent 60%),
    radial-gradient(40% 50% at 100% 0%, rgba(74, 120, 232, 0.35), transparent 60%);
  pointer-events: none;
}
.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.process-band .section-label { background: rgba(255, 255, 255, 0.10); color: #fff; }
.process-band .section-label::before { background: #6fe7b1; }
.process-band h2 { color: #fff; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.step {
  position: relative;
  min-height: 200px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: background 220ms ease, border-color 220ms ease;
}
.step:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.24); }
.step span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  color: #6fe7b1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.step span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #6fe7b1, transparent);
}
.step h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.step p { margin: 0; color: rgba(255, 255, 255, 0.74); font-size: 13.5px; font-weight: 500; line-height: 1.55; }

/* ---------- App section ---------- */
.app-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}
.feature-list { display: grid; gap: 8px; margin-top: 24px; }
.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
}
.feature-list span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-50);
  background-image: linear-gradient(135deg, var(--brand-400), var(--brand-600));
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--brand-200);
  flex: 0 0 auto;
}
.app-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  border-radius: var(--r-2xl);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(31, 85, 214, 0.16), transparent 60%),
    linear-gradient(135deg, var(--brand-50), #ffffff);
  border: 1px solid var(--line);
  overflow: hidden;
}
.app-media::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(31, 85, 214, 0.10);
  filter: blur(6px);
}
.app-media img {
  position: relative;
  width: min(70%, 400px);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(10, 20, 38, 0.18);
}

/* ---------- Plans ---------- */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.subscription-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.subscription-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }
.subscription-card.is-featured {
  border-color: #f9a8d4;
  box-shadow: 0 22px 60px rgba(219, 39, 119, 0.16);
}
.subscription-card.is-featured::before {
  content: "Vetëm për femra";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: #db2777;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
html[lang="en"] .subscription-card.is-featured::before { content: "Ladies only"; }
.subscription-top {
  min-height: 96px;
  padding: 22px;
  color: #fff;
  background: var(--brand-700);
  position: relative;
  overflow: hidden;
}
.subscription-top::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.subscription-top span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.subscription-top.basic { background: linear-gradient(135deg, var(--brand-800), var(--brand-500)); }
.subscription-top.plus { background: linear-gradient(135deg, #be185d, #ec4899); }
.subscription-top.premium { background: linear-gradient(135deg, var(--brand-900), #0a8e5b); }
.subscription-card.is-featured .subscription-price { color: #be185d; }
.subscription-body { padding: 24px; display: flex; flex-direction: column; height: calc(100% - 96px); }
.subscription-body h3 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.subscription-body > p {
  min-height: 56px;
  margin: 10px 0 0;
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}
.subscription-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
  color: var(--brand-700);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.subscription-price::after {
  content: " / muaj";
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-400);
  letter-spacing: 0;
}
html[lang="en"] .subscription-price::after { content: " / month"; }
.subscription-body ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.subscription-body li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.subscription-body { position: relative; }
.plan-info-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-700);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  align-self: flex-start;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.plan-info-btn::before {
  content: "i";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-700);
  color: #fff;
  font-family: "Space Grotesk", serif;
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
}
.plan-info-btn:hover {
  background: var(--brand-50);
  border-color: var(--brand-200);
  transform: translateY(-1px);
}
.subscription-card.is-featured .plan-info-btn { color: #be185d; }
.subscription-card.is-featured .plan-info-btn::before { background: #be185d; }
.subscription-card.is-featured .plan-info-btn:hover { background: #fdf2f8; border-color: #f9a8d4; }

.subscription-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%230f3fb3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2 6.7 11l5.8-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.plans-exclusions {
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px dashed var(--brand-200);
  border-radius: var(--r-xl);
  background: #fff;
}
.plans-exclusions strong {
  display: block;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plans-exclusions ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 22px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.plans-exclusions li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-700);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}
.plans-exclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><line x1='4' y1='4' x2='10' y2='10' stroke='%231f55d6' stroke-width='2' stroke-linecap='round'/><line x1='10' y1='4' x2='4' y2='10' stroke='%231f55d6' stroke-width='2' stroke-linecap='round'/></svg>") center/12px no-repeat;
  box-shadow: inset 0 0 0 1.5px var(--brand-300);
}
.plans-exclusions p {
  margin: 14px 0 0;
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
}

.plans-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--brand-100);
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--brand-50), #fff);
}
.plans-download h3 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 21px;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.plans-download p {
  margin: 6px 0 0;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 600;
}
.download-row-plans { margin-top: 0; flex: 0 0 auto; }

/* Legacy plan grid (unused but retained) */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { min-height: 176px; padding: 24px; border: 1px solid var(--line); border-radius: var(--r-xl); background: #fff; box-shadow: var(--shadow-sm); }
.plan-card strong { display: block; color: var(--ink-900); font-size: 19px; line-height: 1.15; }
.plan-card span { display: block; margin-top: 10px; color: var(--ink-500); font-size: 14px; font-weight: 600; }
.plan-price { display: inline-flex !important; width: fit-content; margin-top: 18px !important; padding: 8px 12px; border-radius: 999px; color: #fff !important; background: var(--brand-700); font-size: 13px !important; font-weight: 800 !important; }
.catalog-note { margin: 16px 0 0; color: var(--ink-400); font-size: 13px; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink-900);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%230f3fb3' stroke-width='2.4' stroke-linecap='round' d='M4 6l4 4 4-4'/></svg>") center / 14px no-repeat;
  transition: transform 220ms ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px 22px;
  color: var(--ink-500);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- About ---------- */
.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
.about-card { padding: 36px; border-radius: var(--r-2xl); background: var(--bg); border: 1px solid var(--line); }
.about-stats { display: grid; gap: 14px; }
.about-stats div {
  padding: 26px 28px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-stats div::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.about-stats strong {
  display: block;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.about-stats span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.74); font-weight: 700; font-size: 14px; }

/* ---------- Contact ---------- */
.contact-section { padding-bottom: clamp(60px, 8vw, 96px); }
.contact-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-2xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact-copy { padding: 6px; }
.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--bg);
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-900);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink-900);
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-400);
  box-shadow: 0 0 0 4px rgba(31, 85, 214, 0.12);
}
.form-note { margin: 0; color: var(--ink-400); font-size: 12.5px; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { padding: 56px var(--gutter) 32px; color: rgba(255, 255, 255, 0.72); background: var(--brand-900); position: relative; overflow: hidden; }
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(31, 85, 214, 0.30), transparent 60%),
    radial-gradient(40% 50% at 100% 100%, rgba(74, 120, 232, 0.18), transparent 60%);
  pointer-events: none;
}
.footer-main {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; background: #fff; }
.footer-brand p { margin: 0; max-width: 360px; font-size: 13.5px; font-weight: 600; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 22px; color: #fff; font-size: 13.5px; font-weight: 700; }
.footer-links a { transition: color 160ms ease; }
.footer-links a:hover { color: var(--brand-200); }
.footer-coverage {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-coverage strong {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 6px;
}
.footer-coverage span {
  display: inline-flex;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 600;
}
.site-footer small {
  display: block;
  position: relative;
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12.5px;
}

/* ---------- Legal page ---------- */
.legal-header { position: sticky; }
.legal-page { padding: 54px 0 86px; }
.legal-hero {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(80% 100% at 90% 10%, rgba(15, 63, 179, 0.10), transparent 50%),
    linear-gradient(135deg, #ffffff, var(--brand-50));
  box-shadow: var(--shadow-sm);
}
.legal-hero h1 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.legal-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink-500);
  font-size: 17px;
}
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.legal-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-700);
  font-size: 12.5px;
  font-weight: 700;
}
.legal-content { display: grid; gap: 12px; margin-top: 18px; }
.legal-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.legal-card h2 { margin: 0 0 8px; color: var(--ink-900); font-size: 20px; letter-spacing: -0.02em; font-weight: 700; }
.legal-card p { margin: 0; color: var(--ink-500); font-size: 15px; line-height: 1.6; }
.legal-contact-card { background: linear-gradient(135deg, #ffffff, var(--brand-50)); }
.legal-actions { margin-top: 16px; }

/* ---------- Plan terms modal ---------- */
.plan-terms-modal {
  width: min(720px, calc(100% - 28px));
  max-height: min(86vh, 820px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--r-2xl);
  background: transparent;
  color: var(--ink-900);
  overflow: visible;
}
.plan-terms-modal::backdrop {
  background: rgba(10, 20, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.plan-terms-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: min(86vh, 820px);
  border-radius: var(--r-2xl);
  background: #fff;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.plan-terms-head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 26px 30px 18px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.94));
  border-bottom: 1px solid var(--line);
}
.plan-terms-head .section-label { margin-bottom: 10px; }
.plan-terms-head h3 {
  margin: 0;
  color: var(--ink-900);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.plan-terms-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-500);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.plan-terms-close svg { width: 16px; height: 16px; }
.plan-terms-close:hover { color: var(--brand-700); background: var(--brand-50); border-color: var(--brand-200); }

.plan-terms-intro {
  margin: 0;
  padding: 18px 30px 0;
  color: var(--ink-500);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.55;
}
.plan-terms-list {
  flex: 1 1 auto;
  margin: 18px 0 0;
  padding: 0 30px;
  list-style: none;
  counter-reset: terms;
  overflow-y: auto;
}
.plan-terms-list li {
  position: relative;
  padding: 12px 0 12px 38px;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  counter-increment: terms;
}
.plan-terms-list li:first-child { border-top: 0; }
.plan-terms-list li::before {
  content: counter(terms, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  color: var(--brand-700);
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.plan-terms-list a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 3px; }
.plan-terms-note {
  margin: 0;
  padding: 14px 30px 18px;
  color: var(--ink-400);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}
.plan-terms-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 30px 26px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.plan-terms-foot .btn { min-height: 46px; }
@media (max-width: 700px) {
  .plan-terms-head, .plan-terms-intro, .plan-terms-list, .plan-terms-note, .plan-terms-foot { padding-left: 20px; padding-right: 20px; }
  .plan-terms-list { padding-left: 20px; }
  .plan-terms-list li { padding-left: 36px; }
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(880px, 100%);
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.cookie-text { flex: 1 1 auto; min-width: 0; }
.cookie-text strong {
  display: block;
  color: var(--ink-900);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.cookie-text p {
  margin: 4px 0 0;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.cookie-text a { color: var(--brand-700); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}
@media (max-width: 700px) {
  .cookie-banner { bottom: 10px; left: 10px; right: 10px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; padding: 14px 16px; gap: 12px; }
  .cookie-actions { justify-content: flex-end; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .site-header.menu-open .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    z-index: 3;
  }
  .site-header.menu-open .main-nav a { padding: 11px 14px; }
  .site-header.menu-open .header-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(74px + 340px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    z-index: 2;
  }
  .hero-inner, .process-layout, .app-section, .about-layout, .contact-card { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .hero-media { min-height: 480px; aspect-ratio: 16/11; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-wide { grid-row: auto; grid-column: span 2; min-height: 380px; }
  .service-wide img { min-height: 380px; }
  .plans-exclusions ul { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: 0; border-top: 1px solid var(--line); padding: 14px 4px 4px; }
  .stat-item:nth-child(-n+2) { border-top: 0; padding-top: 4px; }
}

@media (max-width: 700px) {
  .site-header { min-height: 72px; padding: 10px 16px; }
  .brand-logo { width: 42px; height: 42px; border-radius: 11px; }
  .brand-text { font-size: 12px; }
  .section-shell { width: min(100% - 32px, var(--max)); }
  .hero-copy h1 { max-width: 100%; font-size: clamp(28px, 7.5vw, 38px); line-height: 1.08; letter-spacing: -0.03em; overflow-wrap: normal; }
  .hero-copy p { font-size: 14.5px; line-height: 1.6; }
  .hero-media { min-height: 360px; border-radius: 26px; aspect-ratio: 4/3.5; }
  .hero-overlay-card { left: 14px; right: 14px; bottom: 14px; padding: 14px; }
  .hero-floating { top: 14px; right: 14px; padding: 10px 14px; }
  .hero-floating strong { font-size: 20px; }
  .quick-contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-wide { grid-column: auto; min-height: 320px; }
  .service-wide img { min-height: 320px; }
  .steps, .subscription-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .plans-exclusions ul { grid-template-columns: 1fr; }
  .subscription-card.is-featured { transform: none; }
  .plans-download { flex-direction: column; align-items: flex-start; }
  .download-row-plans { flex: 1 1 auto; }
  .process-band { border-radius: 0; }
  .app-media { min-height: 360px; border-radius: 26px; }
  .app-media img { width: min(82%, 320px); }
  .contact-card, .about-card { padding: 22px; border-radius: 26px; }
  .footer-main, .footer-brand { align-items: flex-start; flex-direction: column; }
  .header-phone { display: none; }
  .download-row { gap: 8px; max-width: calc(100vw - 32px); }
  .store-button { min-width: 138px; min-height: 50px; padding: 8px 14px; }
  .store-button strong { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .pulse-dot { animation: none; }
}
