/* FarmacoOra Landing — Design system
   Affidabile · Semplice · Umano · Rassicurante · Moderno
*/

:root {
  /* Brand */
  --teal: #0E8A7A;
  --teal-strong: #0A6B5E;
  --teal-soft: #E0F5F1;
  --teal-mid: #B5E4DA;
  --teal-glow: rgba(14, 138, 122, 0.18);

  --blue: #2B6CB0;
  --blue-soft: #E8F1FB;
  --blue-mid: #A8C8EB;

  --success: #1B7A45;
  --success-soft: #D6F0E0;

  --gold: #C9A227;
  --gold-soft: #FBF3D8;

  /* Surfaces */
  --bg: #F5F9F8;
  --bg-deep: #E8F0EE;
  --surface: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.72);

  --text: #0F1714;
  --text-secondary: #2A3832;
  --text-muted: #5A6B64;
  --border: #D0DCD6;
  --border-soft: #E4EDE9;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 20, 0.04), 0 2px 8px rgba(15, 23, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 20, 0.08), 0 2px 6px rgba(15, 23, 20, 0.04);
  --shadow-lg: 0 24px 64px rgba(15, 23, 20, 0.12), 0 8px 16px rgba(15, 23, 20, 0.06);
  --shadow-phone: 0 40px 80px rgba(14, 138, 122, 0.18), 0 16px 32px rgba(15, 23, 20, 0.1);

  /* Type */
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --nav-h: 72px;
  --page-max: 1120px;
  --page-pad: clamp(1.25rem, 4vw, 2rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.25, 0.64, 1);
  --dur: 0.55s;
  --dur-fast: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur: 0.01ms;
    --dur-fast: 0.01ms;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 450;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Atmosphere ── */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 15% -10%, rgba(14, 138, 122, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 5%, rgba(43, 108, 176, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(181, 228, 218, 0.35), transparent 60%),
    linear-gradient(180deg, #F7FBFA 0%, var(--bg) 40%, #EEF5F3 100%);
}

.atmosphere__mesh {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 28s var(--ease-out) infinite alternate;
}

.atmosphere__mesh--1 {
  top: -15%;
  left: -10%;
  background: var(--teal-mid);
}

.atmosphere__mesh--2 {
  top: 40%;
  right: -20%;
  background: var(--blue-mid);
  animation-delay: -8s;
  animation-duration: 34s;
}

.atmosphere__mesh--3 {
  bottom: -20%;
  left: 30%;
  background: #D4F0E8;
  animation-delay: -16s;
  animation-duration: 40s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

/* ── Layout ── */
.container {
  width: min(100% - 2 * var(--page-pad), var(--page-max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  position: relative;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-strong);
  margin-bottom: 1rem;
}

.section__eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.section__title {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.section__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38ch;
  line-height: 1.55;
}

.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__header--center .section__title {
  max-width: 22ch;
}

.section__header--center .section__eyebrow::before {
  display: none;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(160deg, #14A090 0%, var(--teal) 45%, var(--teal-strong) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--teal-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 138, 122, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: var(--surface-glass);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1.0625rem;
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  background: var(--text);
  color: #fff;
  transition: transform var(--dur-fast) var(--ease-spring), opacity var(--dur-fast);
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.store-badge__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-badge__meta small {
  font-size: 0.65rem;
  opacity: 0.7;
  font-weight: 500;
}

.store-badge__meta strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), backdrop-filter var(--dur-fast);
}

.navbar.is-scrolled {
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border-soft), var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2 * var(--page-pad), var(--page-max));
  margin-inline: auto;
  gap: 1.5rem;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  z-index: 2;
}

.navbar__logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 550;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.navbar__link:hover {
  color: var(--text);
  background: rgba(14, 138, 122, 0.08);
}

.navbar__cta {
  display: none;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  z-index: 2;
}

.navbar__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile {
  position: fixed;
  inset: 0;
  background: rgba(245, 249, 248, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur);
  z-index: 1;
}

.navbar__mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 900px) {
  .navbar__links,
  .navbar__cta {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }
}

/* ── Hero ── */
.hero {
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2rem;
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  background: linear-gradient(135deg, var(--teal-strong) 0%, var(--teal) 40%, #1A9B8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 550;
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 32ch;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.hero__payoff {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--teal-strong);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 420px;
}

.hero__glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.6; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

.hero__phones {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__phone-slot {
  position: absolute;
  transition: transform var(--dur) var(--ease-out);
}

.hero__phone-slot--main {
  z-index: 3;
  bottom: 0;
  animation: float-y 7s ease-in-out infinite;
}

.hero__phone-slot--left {
  z-index: 1;
  left: 0;
  bottom: 40px;
  opacity: 0.85;
  animation: float-y 8s ease-in-out infinite 0.5s;
}

.hero__phone-slot--left .phone {
  transform: rotate(-8deg);
}

.hero__phone-slot--right {
  z-index: 2;
  right: 0;
  bottom: 50px;
  opacity: 0.9;
  animation: float-y 7.5s ease-in-out infinite 1s;
}

.hero__phone-slot--right .phone {
  transform: rotate(8deg);
}

@keyframes float-y {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* Mobile / tablet: phone stays in document flow so it can't cover CTAs */
@media (max-width: 959px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    overflow: visible;
    padding-bottom: 2.5rem;
  }

  .hero__grid {
    gap: 2.75rem;
  }

  .hero__actions {
    position: relative;
    z-index: 5;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    min-height: 0;
    z-index: 1;
    margin-top: 0.5rem;
    overflow: visible;
  }

  .hero__phones {
    position: relative;
    height: auto;
    max-width: 240px;
    margin-inline: auto;
  }

  .hero__phone-slot {
    position: relative;
    inset: auto;
    animation: none;
  }

  .hero__phone-slot--main {
    position: relative;
    inset: auto;
    bottom: auto;
    z-index: 1;
    animation: none;
  }

  .hero__phone-slot--main .phone {
    width: 100%;
    max-width: 240px;
  }

  .hero__phone-slot--left,
  .hero__phone-slot--right {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero__phones,
  .hero__phone-slot--main .phone {
    max-width: 220px;
  }
}

/* ── Problem ── */
.problem {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 240, 238, 0.6) 100%);
}

.problem__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.problem-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  background: linear-gradient(145deg, #FEF3E8, #FDE8E0);
  color: #C45C2A;
}

.problem-card__icon svg {
  width: 24px;
  height: 24px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Solution ── */
.solution__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .solution__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 2rem 1.65rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card--organize {
  background: linear-gradient(160deg, #E0F5F1 0%, #F0FAF8 100%);
}

.feature-card--remind {
  background: linear-gradient(160deg, #E8F1FB 0%, #F2F7FC 100%);
}

.feature-card--monitor {
  background: linear-gradient(160deg, #D6F0E0 0%, #EEF8F2 100%);
}

.feature-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.feature-card--organize .feature-card__icon { color: var(--teal); }
.feature-card--remind .feature-card__icon { color: var(--blue); }
.feature-card--monitor .feature-card__icon { color: var(--success); }

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 28ch;
}

/* ── Showcase ── */
.showcase {
  background: linear-gradient(180deg, transparent, rgba(14, 138, 122, 0.04), transparent);
}

.showcase__layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 960px) {
  .showcase__layout {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: stretch;
  }
}

.showcase__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.showcase-step {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0.4;
  transition: opacity var(--dur) var(--ease-out);
  cursor: pointer;
}

.showcase-step:first-child {
  padding-top: 0;
}

.showcase-step:last-child {
  border-bottom: none;
}

.showcase-step.is-active {
  opacity: 1;
}

.showcase-step__label {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.showcase-step h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 0.5rem;
}

.showcase-step p {
  color: var(--text-muted);
  max-width: 36ch;
  font-size: 1rem;
}

.showcase__phone-sticky {
  display: none;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  height: fit-content;
  justify-content: center;
  align-items: flex-start;
}

@media (min-width: 960px) {
  .showcase__phone-sticky {
    display: flex;
  }
}

.showcase__phone-mobile {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 960px) {
  .showcase__phone-mobile {
    display: none;
  }
}

.showcase__screen-stack {
  position: relative;
  width: 280px;
}

.showcase__screen-stack .phone {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.showcase__screen-stack .phone.is-active {
  position: relative;
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* ── Premium ── */
.premium {
  position: relative;
}

.premium__panel {
  display: grid;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 245, 241, 0.95) 100%);
  border: 1px solid rgba(14, 138, 122, 0.15);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.premium__panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 65%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .premium__panel {
    grid-template-columns: 1fr 300px;
    align-items: center;
  }
}

.premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #F5E6A8, #E8D078);
  color: #5C4A0A;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.premium__title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
  max-width: 16ch;
}

.premium__lead {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 40ch;
}

.premium__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.premium__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 550;
  font-size: 1.05rem;
}

.premium__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium__check svg {
  width: 16px;
  height: 16px;
}

.premium__visual {
  display: flex;
  justify-content: center;
}

/* ── FAQ ── */
.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow var(--dur-fast);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--dur-fast) var(--ease-out);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 1.4rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* ── CTA band ── */
.cta-band {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.cta-band__inner {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, var(--teal-strong) 0%, var(--teal) 50%, #159A88 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 35%);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
  position: relative;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--teal-strong);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-band .btn--primary:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.cta-band .store-badges {
  justify-content: center;
  margin-top: 1.25rem;
  position: relative;
}

.cta-band .store-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

/* ── Footer ── */
.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, transparent, rgba(232, 240, 238, 0.5));
}

.footer__top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.5;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  padding: 0.3rem 0;
  color: var(--text-secondary);
  font-size: 0.975rem;
  font-weight: 500;
  transition: color var(--dur-fast);
}

.footer__col a:hover {
  color: var(--teal);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Hero: animate on load so first paint isn't blank before JS */
.hero .reveal {
  animation: hero-in var(--dur) var(--ease-out) forwards;
}

.hero .reveal-delay-1 { animation-delay: 0.1s; }
.hero .reveal-delay-2 { animation-delay: 0.2s; }
.hero .reveal-delay-3 { animation-delay: 0.32s; }

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
