/* =========================================================================
   aloo — clean rebuild (věrná podoba aloo.cz)
   Vzhled: světlý / bílý, nadpisy i text Poppins (bezpatkové), černé nadpisy / šedý text.
   Jediná tmavá plocha = footer.
   ========================================================================= */

/* ---------- Design tokens (odvozeno z aloo.cz) ---------- */
:root {
  --ink:        #000000;              /* nadpisy, logo */
  --text:       rgba(0,0,0,.72);      /* běžný tmavý text */
  --muted:      rgba(0,0,0,.51);      /* podnadpisy / popisky (jako originál) */
  --muted-2:    rgba(0,0,0,.38);
  --white:      #ffffff;
  --surface:    #fafafa;              /* jemné světlé pozadí */
  --line:       rgba(0,0,0,.10);      /* jemné linky */
  --dark:       #000000;              /* footer */
  --dark-muted: #9b9ca1;              /* text ve footeru (jako originál) */

  --radius:     16px;
  --radius-sm:  10px;

  --maxw:       1140px;
  --gutter:     clamp(20px, 5vw, 48px);

  --shadow:     0 18px 50px rgba(0,0,0,.10);

  --ease:       cubic-bezier(.4,.14,.3,1);

  --ff-sans:    "Poppins", Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p  { margin: 0; }

/* Nadpisy — Poppins bold, černé */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: clamp(56px, 8vw, 104px); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);   /* ~48px jako originál h2 */
  line-height: 1.1;
}
.section-sub { margin-top: 16px; color: var(--muted); font-size: 1.0625rem; font-weight: 400; }

/* ---------- Odkazy / CTA ---------- */
.link-cta {
  font-weight: 500; color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), opacity .2s var(--ease);
}
.link-cta:hover { border-bottom-color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 14px 30px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-weight: 500; font-size: .98rem;
  border: 1px solid var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); opacity: .88; }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); opacity: 1; }

/* ---------- Store badges ---------- */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badges img { height: 52px; width: auto; transition: transform .25s var(--ease); }
.store-badges a:hover img { transform: translateY(-2px); }

/* =========================================================================
   Header / navigace  (bílá, sticky)
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 84px; }
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 40px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__menu > li > a {
  font-size: .98rem; font-weight: 500; color: var(--ink);
  padding: 6px 0; position: relative;
  transition: opacity .2s var(--ease);
}
.nav__menu > li > a:hover { opacity: .55; }
.nav__cta a { font-weight: 600; }

/* Jazykový přepínač — rozbalovací roleta (<details>) */
.lang-select { position: relative; }
.lang-select > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .86rem; font-weight: 600; letter-spacing: .03em; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.lang-select > summary::-webkit-details-marker { display: none; }
.lang-select > summary::marker { content: ""; }
.lang-select > summary:hover { border-color: var(--ink); }
.lang-select__chev { width: 12px; height: 12px; flex: none; transition: transform .2s var(--ease); }
.lang-select[open] .lang-select__chev { transform: rotate(180deg); }
.lang-select__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 170px; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 6px;
  display: flex; flex-direction: column; max-height: 62vh; overflow-y: auto;
}
.lang-select__menu a {
  padding: 9px 12px; border-radius: 8px; font-size: .92rem; font-weight: 500; color: var(--muted);
  white-space: nowrap; transition: background .15s var(--ease), color .15s var(--ease);
}
.lang-select__menu a:hover { background: var(--surface); color: var(--ink); }
.lang-select__menu a.is-current { color: var(--ink); font-weight: 600; }
.lang-select__menu a.is-current::after { content: "✓"; float: right; margin-left: 14px; color: var(--muted-2); }
.lang-flag { display: inline-block; width: 19px; height: 13px; margin-right: 9px; border-radius: 2px; background-size: cover; background-position: center; vertical-align: -1px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.lang-select > summary .lang-flag { margin-right: 0; }
.flag-cz { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Crect width='6' height='4' fill='%23fff'/%3E%3Crect y='2' width='6' height='2' fill='%23d7141a'/%3E%3Cpath d='M0 0 3 2 0 4z' fill='%2311457e'/%3E%3C/svg%3E"); }
.flag-gb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0 0 60 30M60 0 0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0 60 30M60 0 0 30' stroke='%23C8102E' stroke-width='2'/%3E%3Crect x='25' width='10' height='30' fill='%23fff'/%3E%3Crect y='10' width='60' height='10' fill='%23fff'/%3E%3Crect x='27' width='6' height='30' fill='%23C8102E'/%3E%3Crect y='12' width='60' height='6' fill='%23C8102E'/%3E%3C/svg%3E"); }
.flag-pl { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Crect width='6' height='4' fill='%23fff'/%3E%3Crect y='2' width='6' height='2' fill='%23dc143c'/%3E%3C/svg%3E"); }
.flag-de { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 3'%3E%3Crect width='6' height='1' fill='%23000'/%3E%3Crect y='1' width='6' height='1' fill='%23dd0000'/%3E%3Crect y='2' width='6' height='1' fill='%23ffce00'/%3E%3C/svg%3E"); }

/* Hamburger */
.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  margin-left: auto; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span { top: 21px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Hero  (bílý, text vlevo + telefon vpravo)
   ========================================================================= */
.hero { background: var(--white); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 110px);
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);   /* ~72px */
  line-height: 1.05;
  letter-spacing: -.005em;
}
.hero__lead { margin-top: 24px; font-size: 1.0625rem; line-height: 1.7; color: var(--muted); max-width: 30em; }
.hero__cta { margin-top: 34px; }
.hero__note { margin-top: 16px; font-size: .9rem; color: var(--muted-2); }

.hero__media { display: flex; justify-content: center; }
.hero__media img {
  width: auto; max-height: 560px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* ---- Chat mockup (HTML/CSS náhrada obrázku telefonu) ---- */
.chat-mock {
  width: 322px; max-width: 100%;
  background: linear-gradient(180deg, #cfe7f5 0%, #e1f0fa 48%, #ecf6fc 100%);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 22px 15px 12px;
  display: flex; flex-direction: column;
  overflow: hidden;
  text-align: left;
}
.chat-mock__head { display: flex; align-items: center; justify-content: space-between; padding: 0 3px; }
.chat-mock__title { font-family: var(--ff-sans); font-weight: 700; font-size: 1.7rem; color: var(--ink); }
.chat-mock__add {
  width: 34px; height: 34px; flex: none;
  background: var(--ink); color: var(--white);
  border-radius: 50%; display: grid; place-items: center;
}
.chat-mock__add svg { width: 16px; height: 16px; }
.chat-mock__search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.55); border-radius: 14px;
  padding: 10px 13px; margin-top: 14px;
  color: var(--muted-2); font-size: .9rem;
}
.chat-mock__search svg { width: 15px; height: 15px; flex: none; }
.chat-mock__search .s-txt { flex: 1; }
.chat-mock__list { list-style: none; margin: 8px 0 0; padding: 0 3px; display: flex; flex-direction: column; }
.chat-row { display: flex; align-items: center; gap: 13px; padding: 8px 0; }
.chat-av {
  width: 46px; height: 46px; flex: none;
  border-radius: 15px;
  display: grid; place-items: center;
  font-family: var(--ff-sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em;
  background: #c5cbd1; color: #3f454c;
}
.chat-row__body { min-width: 0; }
.chat-row__name { display: block; font-family: var(--ff-sans); font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.2; }
.chat-row__msg {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-top: 2px; color: var(--muted); font-size: .77rem; line-height: 1.3;
}
.chat-mock__nav {
  display: flex; justify-content: space-around; align-items: center;
  margin-top: 12px; padding: 7px 6px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
}
.chat-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 5px 12px; border-radius: 15px; color: var(--muted-2); }
.chat-nav svg { width: 21px; height: 21px; }
.chat-nav span { font-size: .64rem; }
.chat-nav.is-active { color: var(--ink); background: rgba(255,255,255,.85); }

/* =========================================================================
   Klíčové vlastnosti  (bílá, 3 sloupce)
   ========================================================================= */
.features { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px) 32px; }
.feature-card { text-align: center; padding: 8px; }
.feature-card__icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); color: var(--ink);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* =========================================================================
   Bezpečnost / showcase (bílá, střídavě text + screenshot)
   ========================================================================= */
.security { background: var(--surface); }

/* Horní blok: čtvercový screenshot (bio) + dva textové bloky */
.sec-lead {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 6vw, 72px); align-items: center;
}
.sec-lead__media { display: flex; justify-content: center; }
.sec-lead__media img { width: 100%; max-width: 320px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.sec-lead__body h3 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: 14px; }
.sec-lead__body p  { color: var(--muted); font-size: 1.04rem; }
.sec-lead__sub { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.sec-lead__sub h4 { font-size: 1.35rem; margin-bottom: 8px; }
.sec-lead__sub p  { color: var(--muted); font-size: .98rem; }

/* Tři čtvercové obrázkové karty s popiskem pod obrázkem */
.sec-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 40px); margin-top: clamp(48px, 7vw, 84px); }
.sec-card { text-align: center; }
.sec-card img { width: 100%; max-width: 300px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); margin: 0 auto 22px; }
.sec-card h4 { font-size: 1.35rem; margin-bottom: 10px; }
.sec-card p  { color: var(--muted); font-size: .98rem; }

/* HTML/CSS mockupy obrazovek (nahrazují obrázkové screenshoty) */
.sec-mock {
  width: 100%; max-width: 300px; aspect-ratio: 1 / 1;
  margin: 0 auto 22px; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.05);
  background: linear-gradient(180deg, #cfe7f5 0%, #e6f2fb 55%, #eef7fc 100%);
  padding: 16px 15px; display: flex; flex-direction: column; text-align: left;
}
.sm-av {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  background: #c5cbd1; color: #3f454c;
  display: grid; place-items: center;
  font-family: var(--ff-sans); font-weight: 600; font-size: .8rem;
}
.sm-title { font-family: var(--ff-sans); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
/* Chat detail */
.sm-chat__top { display: flex; align-items: center; gap: 9px; padding-bottom: 11px; border-bottom: 1px solid rgba(0,0,0,.08); }
.sm-chat__top svg { width: 15px; height: 15px; color: var(--ink); flex: none; }
.sm-chat__top .sm-av { width: 34px; height: 34px; border-radius: 10px; font-size: .72rem; }
.sm-chat__id { line-height: 1.1; }
.sm-chat__name { font-weight: 700; font-size: .92rem; color: var(--ink); }
.sm-chat__status { font-size: .68rem; color: var(--muted-2); }
.sm-chat__dots { margin-left: auto; }
.sm-day { align-self: center; font-size: .68rem; color: var(--muted-2); margin: 11px 0 9px; }
.sm-bubbles { display: flex; flex-direction: column; gap: 7px; }
.sm-bubble { max-width: 80%; padding: 8px 11px; font-size: .74rem; line-height: 1.3; border-radius: 15px; }
.sm-bubble--out { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
.sm-bubble--in { align-self: flex-start; background: rgba(255,255,255,.8); color: var(--ink); border-bottom-left-radius: 5px; }
/* Nastavení */
.sm-title + .sm-profile { margin-top: 14px; }
.sm-profile { display: flex; align-items: center; gap: 11px; margin-bottom: 6px; }
.sm-profile__name { font-weight: 700; font-size: .9rem; color: var(--ink); line-height: 1.15; }
.sm-profile__mail { font-size: .68rem; color: var(--muted-2); }
.sm-set-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 0; border-top: 1px solid rgba(0,0,0,.08); font-size: .8rem; color: var(--ink); }
.sm-set-row .v { color: var(--muted); }
.sm-toggle { width: 34px; height: 20px; border-radius: 10px; background: #c3c9cf; position: relative; flex: none; }
.sm-toggle::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; }
.sm-toggle.on { background: var(--ink); }
.sm-toggle.on::after { left: 16px; }
/* Skupiny */
.sm-search { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.55); border-radius: 11px; padding: 8px 11px; margin: 12px 0 10px; color: var(--muted-2); font-size: .78rem; }
.sm-search svg { width: 13px; height: 13px; flex: none; }
.sm-grow { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.sm-grow li { display: flex; align-items: center; gap: 11px; }
.sm-gbody { min-width: 0; }
.sm-gname { font-weight: 700; font-size: .82rem; color: var(--ink); line-height: 1.15; }
.sm-gmsg { font-size: .68rem; color: var(--muted); line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sm-chat__name, .sm-chat__status, .sm-profile__name, .sm-profile__mail, .sm-gname { display: block; }
/* Ilustrované avatary (osoby) */
.chat-av, .sm-av { overflow: hidden; }
.av-face { color: transparent; font-size: 0; }
.av-face svg { width: 100%; height: 100%; display: block; }

/* =========================================================================
   Reference  (bílá, 3 citace)
   ========================================================================= */
.testimonials { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote-card {
  padding: 40px 34px; border-radius: 24px; border: 1px solid #ecedee;
  background: var(--white); display: flex; flex-direction: column; gap: 18px;
}
.quote-card__mark { width: 30px; height: 30px; color: var(--ink); flex: none; }
.quote-card blockquote {
  margin: 0; font-family: var(--ff-sans); font-weight: 300; font-style: normal;
  font-size: 1rem; line-height: 1.75; color: var(--muted);
}
.quote-card__who { margin-top: 8px; }
.quote-card__name { font-family: var(--ff-sans); font-weight: 500; font-size: 1rem; color: var(--ink); }
.quote-card__role { font-family: var(--ff-sans); color: var(--muted); font-size: .92rem; }

/* =========================================================================
   Ceník  (bílá, 2 plány)
   ========================================================================= */
.pricing { background: var(--surface); }
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; max-width: 1080px; margin-inline: auto; }
.plan {
  position: relative; padding: 42px; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--white); display: flex; flex-direction: column; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan__name { font-family: var(--ff-sans); font-weight: 700; font-size: 1.6rem; margin-bottom: 12px; color: var(--ink); }
.plan__desc { color: var(--muted); font-size: .98rem; min-height: 3em; }
.plan__price { margin: 26px 0 28px; }
.plan__amount { font-family: var(--ff-sans); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--ink); }
.plan__period { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }
.plan .btn { width: 100%; margin-top: auto; }
.pricing__download { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 56px); }
.pricing__download img { height: 56px; width: auto; transition: transform .25s var(--ease); }
.pricing__download a:hover img { transform: translateY(-2px); }
.pricing__note { text-align: center; color: var(--muted-2); font-size: .9rem; margin-top: 16px; }

/* =========================================================================
   FAQ (accordion, bílá)
   ========================================================================= */
.faq { background: var(--white); }
.faq__list { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px 4px; background: transparent; border: none; text-align: left;
  font-family: var(--ff-sans); font-weight: 700; font-size: 1.3rem; color: var(--ink);
}
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--ink); border-radius: 2px;
}
.faq__icon::before { width: 100%; height: 2px; }
.faq__icon::after  { width: 2px; height: 100%; transition: transform .3s var(--ease); }
.faq__item.is-open .faq__icon::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 4px 26px; color: var(--muted); font-size: 1rem; }

/* =========================================================================
   Finální CTA (světlá)
   ========================================================================= */
.cta-final { background: var(--white); text-align: center; }
.cta-final .section-title { margin-bottom: 16px; }
.cta-final p { color: var(--muted); max-width: 40em; margin: 0 auto 32px; font-size: 1.075rem; }
.cta-final .store-badges { justify-content: center; }

/* =========================================================================
   Footer (černý, bílé logo)
   ========================================================================= */
.site-footer { background: var(--dark); color: var(--dark-muted); padding-block: 64px 40px; font-size: .94rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand img { height: 40px; margin-bottom: 20px; }
.footer__brand p { max-width: 32em; color: var(--dark-muted); }
.footer__col h5 { color: var(--white); font-family: var(--ff-sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .86rem; color: rgba(255,255,255,.4); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer__legal a { transition: color .2s var(--ease); }
.footer__legal a:hover { color: var(--white); }

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta .store-badges { justify-content: center; }
  .hero__media { order: -1; margin-bottom: 8px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .sec-lead { grid-template-columns: 1fr; text-align: center; }
  .sec-lead__media { margin-bottom: 8px; }
  .sec-lead__sub { text-align: center; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__actions { display: none; }
  .nav__menu {
    position: fixed; inset: 84px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); padding: 12px var(--gutter) 26px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow); margin-left: 0;
  }
  body.menu-open .nav__menu { transform: translateY(0); }
  .nav__menu > li > a { padding: 14px 8px; font-size: 1.05rem; display: block; }
  .nav__menu .nav__mobile-actions { display: flex; gap: 20px; padding: 14px 8px; align-items: center; }
  .nav__mobile-actions .lang-select__menu { left: 0; right: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .sec-cards { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}
@media (min-width: 721px) { .nav__mobile-actions { display: none; } }
