/* ============================================================
   GenehmigungsOS — Landing Page
   ============================================================ */

:root {
  /* Brand */
  --green: #16a34a;
  --green-bright: #22c55e;
  --green-lime: #7ac043;
  --forest: #14532d;
  --forest-deep: #0f3d22;
  --teal: #0f9d8c;

  --navy: #16283c;
  --ink: #1f2d3d;
  --slate: #5b6b7b;
  --muted: #8493a3;

  --pink: #e11d62;
  --gold: #d4940a;

  --bg: #ffffff;
  --bg-soft: #f4f7f5;
  --bg-mint: #eef6f0;
  --line: #e4eae6;
  --card: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 40, 30, .06);
  --shadow: 0 14px 40px -18px rgba(16, 60, 40, .28);
  --shadow-lg: 0 30px 70px -28px rgba(16, 60, 40, .4);

  --maxw: 1160px;
  --nav-h: 88px;
  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; height: auto; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }

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

.accent-green { color: var(--green); }
.accent-pink { color: var(--pink); }
.grad {
  background: linear-gradient(100deg, var(--green) 0%, var(--teal) 60%, var(--green-lime) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Icons (inline SVG line icons) ---------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 24px; height: 24px; display: block; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature__ico { color: var(--green); }
.feature__ico .ico { width: 26px; height: 26px; }
.step__ico { color: var(--green); }
.step__ico .ico { width: 30px; height: 30px; }
.banner__ico { color: var(--green); display: inline-flex; }
.banner__ico .ico { width: 28px; height: 28px; }
.ico--stat { width: 30px; height: 30px; margin: 0 auto; color: var(--green); }
.ico--trend-down, .ico--trend-up { width: 56px; height: 28px; stroke-width: 2.2; }
.ico--trend-down { color: #dc2626; }
.ico--trend-up { color: var(--green-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  padding: .72rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-bright) 100%);
  color: #fff; box-shadow: 0 10px 24px -10px rgba(22,163,74,.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(22,163,74,.8); }
.btn--ghost { background: #fff; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn--lg { padding: .92rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.nav.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--nav-h); }

.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand__logo { height: 60px; width: auto; display: block; }
.brand__mark { width: 38px; height: 38px; display: block; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; color: var(--navy); letter-spacing: -.02em; }
.brand__os { color: var(--green-bright); }

.nav__links { display: flex; gap: 1.7rem; margin-left: auto; }
.nav__links a { font-weight: 500; color: var(--slate); font-size: .96rem; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--green); border-radius: 2px; transition: width .2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: .25rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(closest-side at 78% 18%, rgba(34,197,94,.16), transparent 70%),
    radial-gradient(closest-side at 12% 80%, rgba(15,157,140,.14), transparent 70%),
    linear-gradient(180deg, #fbfdfb 0%, #ffffff 60%);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px; opacity: .35;
  -webkit-mask-image: radial-gradient(closest-side at 50% 30%, #000, transparent 80%);
  mask-image: radial-gradient(closest-side at 50% 30%, #000, transparent 80%);
}
.hero__inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 500;
  color: var(--green); background: var(--bg-mint); border: 1px solid #d4e9da;
  padding: .35rem .9rem; border-radius: 999px; font-size: .85rem; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 600; }
.hero__lead { margin: 1.3rem 0 1.9rem; font-size: 1.16rem; color: var(--slate); max-width: 36ch; }
.hero__lead strong { color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero__trust li { font-size: .92rem; color: var(--slate); }
.hero__trust strong { color: var(--forest); display: block; font-family: var(--font-head); font-size: 1.02rem; }

/* Hero screenshot */
.hero__visual { perspective: 1500px; }
.hero__visual img { width: 100%; height: auto; display: block; }

/* Desktop: dashboard runs off the right viewport edge for a large, prominent visual.
   Width = distance to the viewport edge (full-bleed) + an extra overhang that gets
   clipped by .hero { overflow: hidden }, so the dashboard bleeds off-screen right. */
@media (min-width: 981px) {
  .hero__visual { overflow: visible; }
  .hero__visual img {
    width: calc(100% + max(24px, 50vw - var(--maxw) / 2 + 24px) + 14vw);
    max-width: none;
  }
}
.hero__shot {
  width: 100%; height: auto; display: block;
  border-radius: 16px; box-shadow: var(--shadow-lg);
  transform: rotateY(-6deg) rotateX(2deg); transition: transform .4s ease;
}
.hero__visual:hover .hero__shot { transform: rotateY(-2deg) rotateX(1deg); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section--soft, .problem { background: var(--bg-soft); }
.solution { background: #fff; }
.steps { background: var(--bg-mint); }
.compare { background: var(--bg-soft); }
.pricing { background: #fff; }
.team { background: var(--bg-soft); }

.section__head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; font-size: .78rem; color: var(--green); margin-bottom: .9rem;
}
.kicker--light { color: #bff0cf; }
.section__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section__sub { margin-top: .8rem; color: var(--green); font-family: var(--font-head); font-size: 1.15rem; }
.section__note { margin-top: 18px; text-align: center; color: var(--muted); font-size: .82rem; font-style: italic; }

/* ---------- 3-card grid ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; }
.pcard__num { font-family: var(--font-head); font-weight: 600; color: #fff; background: var(--forest); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: .92rem; }
.pcard h3 { margin: 1rem 0 .6rem; font-size: 1.18rem; color: var(--forest); }
.pcard__q { color: var(--slate); font-style: italic; }
.pcard hr { border: 0; border-top: 1px solid var(--line); margin: 1.1rem 0; }
.pcard p { color: var(--slate); }

/* ---------- Banners ---------- */
.banner { display: flex; align-items: center; gap: 1rem; margin-top: 36px; padding: 22px 26px; border-radius: var(--radius); }
.banner__ico { font-size: 1.6rem; flex: 0 0 auto; }
.banner p { color: var(--ink); }
.banner--warn { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.banner--vision { background: linear-gradient(100deg, var(--bg-mint), #fff); border: 1px solid #d8ebde; }
.banner--vision em { color: var(--green); font-style: normal; font-weight: 600; }
.banner--rev { background: var(--forest); color: #eafff0; border: 0; }
.banner--rev p, .banner--rev strong { color: #eafff0; }

/* ---------- Solution ---------- */
.solution__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.feature-list { list-style: none; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature__ico { font-size: 1.5rem; width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; background: var(--bg-mint); border-radius: 14px; }
.feature-list h3 { font-size: 1.16rem; color: var(--green); margin-bottom: .35rem; }
.feature-list p { color: var(--slate); }

.solution__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { background: linear-gradient(160deg,#fff,#f6faf7); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--green); display: block; }
.stat span { font-size: .86rem; color: var(--slate); }

/* ---------- Steps ---------- */
.steps__track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps__track::before { content:""; position:absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, #bcd9c5 0 12px, transparent 12px 22px); z-index: 0; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -14px; left: 22px; font-family: var(--font-head); font-weight: 600; color: #fff; background: var(--green); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-size: .82rem; box-shadow: 0 6px 14px -6px rgba(22,163,74,.8); }
.step__ico { font-size: 1.7rem; display: block; margin: 14px 0 12px; }
.step h3 { font-size: 1.12rem; color: var(--forest); margin-bottom: .5rem; }
.step p { color: var(--slate); font-size: .94rem; }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.ctable { width: 100%; border-collapse: collapse; min-width: 720px; }
.ctable th, .ctable td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: .92rem; }
.ctable thead th { font-family: var(--font-head); font-weight: 500; color: var(--slate); background: var(--bg-soft); }
.ctable .ctable__feature { text-align: left; font-weight: 600; color: var(--navy); width: 30%; }
.ctable tbody td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.ctable .yes { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.ctable .part { color: var(--muted); font-size: .82rem; font-style: italic; }
.ctable .ctable__us { background: var(--bg-mint); }
.ctable thead .ctable__us { color: var(--forest); font-weight: 700; border-bottom: 2px solid var(--green); }
.ctable tbody tr:last-child td { border-bottom: 0; }

/* ---------- Pricing ---------- */
.pricing__grid { align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; }
.price--featured { border: 2px solid var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-family: var(--font-head); font-size: .78rem; padding: .3rem .9rem; border-radius: 999px; }
.price__phase { font-family: var(--font-head); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.price__phase--gold { color: var(--gold); } .price__phase--green { color: var(--green); } .price__phase--navy { color: var(--navy); }
.price__meta { color: var(--muted); font-size: .84rem; margin-top: .2rem; }
.price__val { font-family: var(--font-head); font-weight: 600; font-size: 2.5rem; color: var(--navy); margin: 1rem 0 .2rem; }
.price__val small { display: block; font-size: .82rem; font-weight: 400; color: var(--slate); font-family: var(--font-body); margin-top: .2rem; }
.price__note { font-size: .85rem; color: var(--slate); font-style: italic; margin-bottom: .6rem; }
.price ul { list-style: none; margin-top: 1.1rem; display: grid; gap: .65rem; }
.price li { padding-left: 1.7rem; position: relative; color: var(--slate); font-size: .94rem; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ---------- Team ---------- */
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 920px; margin: 0 auto; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .2s, box-shadow .2s; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member__photo {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--bg-mint), #dcefe2);
  color: var(--forest); font-family: var(--font-head); font-weight: 600; font-size: 1.6rem;
  background-size: cover; background-position: center; /* set background-image for a real photo */
}
.member__name { font-size: 1.16rem; color: var(--navy); }
.member__role { color: var(--green); font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-top: .2rem; }
.member__bio { color: var(--slate); font-size: .92rem; margin-top: .7rem; }
.member__link { display: inline-block; margin-top: .9rem; color: var(--green); font-family: var(--font-head); font-weight: 500; font-size: .88rem; }
.member__link:hover { color: var(--forest); }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 55%, #0a2e1a 100%); color: #eafff0; padding: 88px 0; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(closest-side at 85% 15%, rgba(34,197,94,.3), transparent 60%); }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; }
.cta__copy h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta__copy p { margin-top: 1rem; color: #c9e8d3; font-size: 1.08rem; max-width: 42ch; }
.cta__form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 30px; backdrop-filter: blur(8px); display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; color: #bfe6cb; font-weight: 500; }
.field__opt { color: #8fc4a0; font-weight: 400; }
.field input { padding: .8rem 1rem; border-radius: 11px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.95); font-size: .98rem; font-family: var(--font-body); color: var(--ink); }
.field input:focus { outline: 2px solid var(--green-bright); outline-offset: 1px; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: #c9e8d3; line-height: 1.5; }
.consent input { margin-top: .2rem; width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--green-bright); cursor: pointer; }
.consent a { color: #9fe7b4; text-decoration: underline; text-underline-offset: 2px; }
.cta__hint { font-size: .8rem; color: #9fd3ae; text-align: center; }
.cta__hint.is-success { color: #7CFFA8; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #0c1f15; color: #b8ccbf; padding: 50px 0 36px; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 30px; align-items: center; }
.footer__brand .brand__word { color: #fff; font-size: 1.3rem; }
.footer__brand p { margin-top: .5rem; font-size: .88rem; color: #8aa593; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__links a { font-size: .92rem; color: #b8ccbf; }
.footer__links a:hover { color: #fff; }
.footer__legal { font-size: .82rem; color: #7a937f; text-align: right; }

/* ---------- Legal / text pages ---------- */
.legal { padding: 64px 0 80px; background: linear-gradient(180deg, #fbfdfb, #fff); min-height: 60vh; }
.legal .container { max-width: 820px; }
.legal__back { display: inline-flex; align-items: center; gap: .4rem; color: var(--green); font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: 1.6rem; }
.legal__back:hover { color: var(--forest); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .4rem; }
.legal__updated { color: var(--muted); font-size: .88rem; margin-bottom: 2.2rem; }
.legal h2 { font-size: 1.3rem; color: var(--forest); margin: 2.2rem 0 .7rem; }
.legal h3 { font-size: 1.05rem; color: var(--navy); margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--slate); margin-bottom: .7rem; }
.legal ul { padding-left: 1.3rem; margin-bottom: .7rem; }
.legal li { margin-bottom: .35rem; }
.legal a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--ink); }
.legal .todo { background: #fff7e6; border: 1px dashed var(--gold); color: #946400; padding: .15rem .45rem; border-radius: 6px; font-size: .9em; }
.legal address { font-style: normal; color: var(--ink); line-height: 1.8; }

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__shot { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 540px; margin: 0 auto; }
  .hero__shot { transform: none; }
  .solution__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr; text-align: left; gap: 22px; }
  .footer__legal { text-align: left; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 1rem; box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a { padding: .35rem 0; font-size: 1.05rem; }
  .cards-3, .steps__track, .solution__stats { grid-template-columns: 1fr; }
  .steps__track::before { display: none; }
  .price--featured { transform: none; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
}

/* ---------- Phones ---------- */
@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .container { padding: 0 18px; }

  .brand__logo { height: 44px; }

  .hero { padding: 40px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__lead { font-size: 1.05rem; margin: 1.1rem 0 1.6rem; max-width: none; }
  .hero__trust { gap: .9rem 1.4rem; margin-top: 1.8rem; padding-top: 1.3rem; }
  .hero__actions { width: 100%; }
  .btn--lg { width: 100%; }

  .section { padding: 52px 0; }
  .section__head h2 { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  /* Card / list inner padding a touch tighter */
  .pcard, .price, .member { padding: 26px 22px; }
  .feature-list li { padding: 20px; gap: .85rem; }
  .step { padding: 24px 20px; }

  /* Banners stack icon above text */
  .banner { flex-direction: column; align-items: flex-start; gap: .6rem; padding: 20px 22px; }

  .price__val { font-size: 2.1rem; }

  .cta { padding: 60px 0; }
  .cta__form { padding: 22px; }

  .footer { padding: 40px 0 30px; }
  .footer__links { gap: .9rem 1.2rem; }
}

/* ---------- Small phones ---------- */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.85rem; }
  .brand__logo { height: 40px; }
  .hero__trust { gap: .8rem; }
  .hero__trust li { font-size: .88rem; }
}
