/* ==========================================================================
   AI Vending — styles.css
   Mobile-first. Brand: cián-kék #29ABE2 → kék #1F74E0, navy #26303B.
   ========================================================================== */

:root {
  --cyan: #29ABE2;
  --blue: #1F74E0;
  --navy: #26303B;
  --white: #FFFFFF;
  --bg-light: #F4F8FC;
  --cta-blue: #1F84E5;
  --cta-blue-hover: #1667C4;
  --gradient: linear-gradient(135deg, var(--cyan), var(--blue));
  --text-muted: #5B6B7A;
  --border-soft: #E2ECF5;
  --shadow-soft: 0 18px 44px rgba(38, 48, 59, 0.10);
  --shadow-card: 0 10px 28px rgba(38, 48, 59, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

body {
  margin: 0;
  font-family: 'Manrope', 'Hanken Grotesk', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

@media (min-width: 900px) {
  .container { padding: 0 32px; }
}

.section { padding: 72px 0; }
@media (min-width: 900px) { .section { padding: 112px 0; } }

.section--alt { background: var(--bg-light); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head--center { margin-inline: auto; text-align: center; }

h1, h2, h3 {
  font-family: 'Sora', 'Manrope', 'Hanken Grotesk', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  line-height: 1.15;
}

h3 { font-size: clamp(19px, 2.6vw, 22px); line-height: 1.3; }

.section-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-muted);
}

/* Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--cta-blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(31, 132, 229, 0.32);
}
.btn--primary:hover { background: var(--cta-blue-hover); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(31, 132, 229, 0.4); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-soft);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--sm { padding: 11px 20px; font-size: 14px; }

.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

/* Header -------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--border-soft); box-shadow: 0 6px 24px rgba(38,48,59,0.06); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo-icon { height: 38px; width: 38px; }
.header__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  display: none;
}
.header__logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
}
@media (min-width: 420px) { .header__logo-text { display: block; } }

.header__nav {
  display: none;
}
@media (min-width: 1000px) {
  .header__nav {
    display: flex;
    gap: 28px;
    margin-inline: auto;
  }
  .header__nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 6px 0;
  }
  .header__nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s var(--ease);
  }
  .header__nav a:hover::after { transform: scaleX(1); }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.header__phone svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
@media (min-width: 640px) { .header__phone { display: flex; } }

.header__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--blue);
}
.header__phone-icon svg { width: 18px; height: 18px; }
@media (min-width: 640px) { .header__phone-icon { display: none; } }

.header__cta {
  display: none;
  animation: headerCtaPulse 2.6s ease-in-out infinite;
}
@media (min-width: 560px) { .header__cta { display: inline-flex; } }
.header__cta:hover { animation-play-state: paused; }

@keyframes headerCtaPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(31, 132, 229, 0.32), 0 0 0 0 rgba(41, 171, 226, 0.35); }
  50% { box-shadow: 0 12px 28px rgba(31, 132, 229, 0.32), 0 0 0 8px rgba(41, 171, 226, 0); }
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 10px;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg-light); }
.hamburger svg { width: 22px; height: 22px; color: var(--navy); }
@media (min-width: 1000px) { .hamburger { display: none; } }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav__inner { padding: 28px 20px 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  padding: 16px 8px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav__phone {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue);
  font-size: 17px;
}
.mobile-nav__cta { margin-top: 20px; width: 100%; }
@media (min-width: 1000px) { .mobile-nav { display: none; } }

/* Hero ------------------------------------------------------------------ */

.hero {
  position: relative;
  padding: 44px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(41, 171, 226, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(31, 116, 224, 0.10), transparent 55%),
    var(--white);
}
@media (min-width: 900px) { .hero { padding: 84px 0 96px; } }

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}

.hero__title {
  font-size: clamp(34px, 6.4vw, 58px);
  line-height: 1.08;
}
.accent-blue {
  color: var(--blue);
  font-weight: 800;
}

.hero__subtitle {
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 52ch;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scrolldown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  padding: 15px 8px;
}
.hero__scrolldown svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.hero__scrolldown:hover svg { transform: translateY(3px); }

.hero__visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero__visual { min-height: 460px; } }

.hero__stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 520 / 640;
}

.hero__fallback-img, .hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__fallback-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.hero__canvas { opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none; }
.hero__canvas canvas { width: 100% !important; height: 100% !important; display: block; border-radius: var(--radius-lg); }
.hero__stage.is-3d-ready .hero__canvas { opacity: 1; pointer-events: auto; }
.hero__stage.is-3d-ready .hero__fallback-img { opacity: 0; }

.hero__hint {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.hero__stage:not(.is-3d-ready) .hero__hint { display: none; }

/* Positioning bar --------------------------------------------------------- */

.positioning {
  text-align: center;
  padding: 64px 0 56px;
}
.positioning__claim {
  font-size: clamp(26px, 5vw, 40px);
  max-width: 18ch;
  margin: 0 auto;
}

.perks {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  text-align: left;
}
@media (min-width: 760px) { .perks { grid-template-columns: repeat(4, 1fr); } }

.perk {
  padding: 22px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}
.perk__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.perk__icon svg { width: 22px; height: 22px; }
.perk__title { font-size: 16px; font-weight: 800; }
.perk__text { margin-top: 6px; font-size: 14.5px; color: var(--text-muted); }

/* Steps ("Hogyan működik") ------------------------------------------------- */

.steps {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.step__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.step__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step__body { padding: 28px 26px 32px; }
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: -52px;
  border: 3px solid var(--white);
  position: relative;
  z-index: 1;
}
.step__title { margin-bottom: 10px; }
.step__text { color: var(--text-muted); font-size: 15.5px; }

.trust-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 16px; height: 16px; color: var(--blue); }

/* Why good — two columns --------------------------------------------------- */

.why-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.why-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}
.why-card--highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.why-card--highlight .why-card__text { color: rgba(255,255,255,0.72); }
.why-card__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.why-card--highlight .why-card__label { color: var(--cyan); }

.why-list { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.why-list strong { font-weight: 800; }
.why-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.why-card--highlight .why-list svg { color: var(--cyan); }

.section-cta {
  margin-top: 40px;
  text-align: center;
}
.section-cta p { font-size: 17px; font-weight: 700; margin-bottom: 18px; }

/* Featured photo cards (felhasználási területek) ---------------------------- */

.use-featured {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 700px) { .use-featured { grid-template-columns: repeat(3, 1fr); } }

.use-featured__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.use-featured__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.use-featured__card:hover img { transform: scale(1.05); }
.use-featured__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 27, 36, 0.75) 100%);
}
.use-featured__caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* Cards grid (felhasználási területek) ------------------------------------- */

.use-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .use-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .use-grid { grid-template-columns: repeat(4, 1fr); } }

.use-card {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.use-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.use-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.use-card__icon svg { width: 22px; height: 22px; }
.use-card__title { font-size: 15.5px; font-weight: 800; }
.use-card__text { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); }

/* Típusok cards ------------------------------------------------------------ */

.models-scroller {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .models-scroller { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .models-scroller { grid-template-columns: repeat(3, 1fr); } }

.model-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.model-card__visual {
  background: var(--bg-light);
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 200px;
}
.model-card__visual img { height: 100%; width: auto; }
.model-card__body { padding: 22px 22px 26px; }
.model-card__name { font-size: 17px; font-weight: 800; }
.model-card__capacity {
  margin-top: 10px;
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.model-card__capacity span { font-size: 14px; font-weight: 600; color: var(--text-muted); margin-left: 4px; }
.model-card__specs {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.model-card__fit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  font-size: 13.5px;
  font-style: italic;
  color: var(--navy);
}

/* Chip-style model card variant (Dupla ajtós hűtő) -------------------------- */

.model-card__name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.model-card--chip .model-card__name { font-size: 15.5px; }
.model-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.model-card--chip .model-card__capacity {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.model-card__capacity .model-card__unit {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-left: 0;
}
.model-card--chip .model-card__capacity > span:last-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 0;
}
.model-card__chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-card__chip {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
}
.model-card--chip .model-card__fit {
  font-style: normal;
}
.model-card--chip .model-card__fit strong { font-weight: 800; }

.models-footnote {
  margin-top: 36px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Tech & trust -------------------------------------------------------------- */

.tech-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 760px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-soft);
}
.tech-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tech-card__icon svg { width: 24px; height: 24px; }
.tech-card__title { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.tech-card__text { font-size: 14.5px; color: var(--text-muted); }

/* Mit vállalunk (process) ---------------------------------------------------- */

.process {
  display: grid;
  gap: 18px;
}
@media (min-width: 700px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process { grid-template-columns: repeat(3, 1fr); } }

.process-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}
.process-item__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(38,48,59,0.08);
}
.process-item__title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.process-item__text { font-size: 14px; color: var(--text-muted); }

.process-footer {
  margin-top: 44px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.process-footer strong { font-size: 18px; }
.process-footer span { color: rgba(255,255,255,0.7); font-size: 14.5px; }

/* FAQ ------------------------------------------------------------------------ */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.faq-item__q .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.faq-item__q .faq-icon svg { width: 13px; height: 13px; color: var(--blue); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--gradient); }
.faq-item.is-open .faq-icon svg { color: var(--white); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-item__a-inner {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Closing CTA + form ----------------------------------------------------------- */

.closing {
  background:
    radial-gradient(900px 460px at 90% 0%, rgba(41,171,226,0.12), transparent 60%),
    var(--bg-light);
}

.closing__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 980px) { .closing__grid { grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; } }

.closing__intro h2 { max-width: 14ch; }
.closing__intro p { margin-top: 18px; font-size: 16.5px; color: var(--text-muted); max-width: 46ch; }

.closing__phone {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.closing__phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.closing__phone-icon svg { width: 20px; height: 20px; }
.closing__phone-text small { display: block; color: var(--text-muted); font-size: 13px; font-weight: 600; }
.closing__phone-text strong { font-size: 18px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
  position: relative;
}
@media (min-width: 600px) { .form-card { padding: 40px; } }

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.field label .opt { font-weight: 500; color: var(--text-muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(41,171,226,0.14);
  outline: none;
}
.field textarea { resize: vertical; min-height: 96px; }

.field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field--checkbox input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--cta-blue);
}
.field--checkbox label { font-size: 13.5px; font-weight: 500; color: var(--text-muted); margin: 0; }
.field--checkbox a { color: var(--blue); font-weight: 700; text-decoration: underline; }

.form-actions { margin-top: 24px; }
.form-actions .btn { width: 100%; }

.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-feedback {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-feedback.is-visible { display: block; }
.form-feedback__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-feedback__icon svg { width: 26px; height: 26px; }
.form-feedback--error .form-feedback__icon { background: #E0533D; }
.form-feedback h3 { margin-bottom: 8px; }
.form-feedback p { color: var(--text-muted); font-size: 15px; }
.form.is-hidden { display: none; }

/* Footer ------------------------------------------------------------------------ */

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 28px;
}
.footer__top {
  display: grid;
  gap: 32px;
}
@media (min-width: 760px) { .footer__top { grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; } }

.footer__brand-text {
  font-family: 'Sora', 'Manrope', 'Hanken Grotesk', 'Segoe UI', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__brand-text small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-top: 2px;
}
.footer__brand p { font-size: 14.5px; color: rgba(255,255,255,0.6); max-width: 32ch; }

.footer__phone {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}
.footer__phone svg { width: 18px; height: 18px; color: var(--cyan); }

.footer__heading { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14.5px; color: rgba(255,255,255,0.82); }
.footer__links a:hover { color: var(--cyan); }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Reveal-on-scroll ---------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Legal pages ------------------------------------------------------------------- */

.legal {
  padding: 56px 0 100px;
}
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 8px; }
.legal .legal__updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; margin-top: 40px; margin-bottom: 14px; }
.legal p, .legal li { font-size: 15.5px; color: var(--navy); }
.legal ul { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; padding-left: 20px; list-style: disc; }
.legal p + p { margin-top: 12px; }
.legal .placeholder {
  background: #FFF7E0;
  border: 1px dashed #E0B93D;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  color: #7A5B00;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-weight: 700;
  color: var(--blue);
}
