/* =========================================================
   VILLANYSZERELŐ — GOOGLE ADS LANDING SITE
   Design tokens
   ========================================================= */
:root {
  --navy-950: #0b111a;
  --navy-900: #0e1420;
  --navy-850: #121a28;
  --navy-800: #16202f;
  --navy-700: #1c2739;
  --navy-border: #263349;
  --yellow-500: #f2b705;
  --yellow-400: #f7c928;
  --yellow-600: #d19f00;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --ink: #101623;
  --text-muted-dark: #aab3c2;
  --text-muted-light: #5b6472;
  --success: #2f9e44;
  --error: #d64545;

  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container-max: 1280px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --shadow-panel: 0 20px 50px rgba(0, 0, 0, 0.35);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
/* Long unbroken tokens (bracket placeholders like [WARRANTY_TEXT], long
   uppercase HU compound words) must break rather than force layout/
   viewport overflow. Scoped to prose/heading/label text only — NOT applied
   body-wide, because on flex/inline-flex containers (buttons, nav links)
   `overflow-wrap: anywhere` also shrinks the browser's automatic min-content
   sizing, causing short fixed labels to wrap awkwardly even with room to
   spare. Buttons/links are short, known-safe strings and stay unaffected. */
h1, h2, h3, h4,
p, li,
.eyebrow,
.hero__lead,
.page-hero__lead,
.section-subtitle,
.testimonial-card__quote,
.hero-panel__title,
.hero-panel__desc,
.side-cta__desc,
.footer-brand__desc,
.footer-contact li,
.brand__sub {
  overflow-wrap: anywhere;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol.breadcrumb__list { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: 16px; }

:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (max-width: 640px) {
  .container { padding: 0 var(--space-4); }
}

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

.skip-link {
  position: absolute;
  left: 8px; top: -60px;
  background: var(--yellow-500);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* =========================================================
   Typography helpers
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-500);
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.15;
}
.section-title--light { color: var(--white); }
.section-subtitle {
  color: var(--text-muted-light);
  font-size: 17px;
  max-width: 640px;
}
.section-subtitle--light { color: var(--text-muted-dark); }
.section-head { margin-bottom: var(--space-6); }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--yellow {
  background: var(--yellow-500);
  color: var(--ink);
}
.btn--yellow:hover { background: var(--yellow-400); }

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn--dark:hover { background: var(--navy-700); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover { border-color: var(--yellow-500); color: var(--yellow-500); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 11px 18px; font-size: 13px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow-500);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.text-link svg { width: 16px; height: 16px; flex: none; }
.text-link:hover { border-color: var(--yellow-500); }
.text-link--dark { color: var(--ink); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: var(--navy-950);
  border-bottom: 1px solid var(--navy-border);
  position: sticky;
  top: 0;
  z-index: 500;
  height: 84px;
  display: flex;
  align-items: center;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  /* .site-header__inner is itself a flex item of .site-header (display:flex),
     so without this it inherits flex's automatic min-width:auto and refuses
     to shrink below its children's combined natural width — overflowing the
     viewport on narrow phones. This lets it actually respect the container. */
  min-width: 0;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__mark {
  width: 34px; height: 34px;
  flex: none;
  color: var(--yellow-500);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name { font-size: 17px; font-weight: 800; color: var(--white); letter-spacing: 0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand__name span { color: var(--yellow-500); }
.brand__sub { font-size: 10px; letter-spacing: 0.06em; color: var(--text-muted-dark); text-transform: uppercase; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 400px) {
  .site-header__inner { gap: var(--space-3); }
  .brand__mark { width: 28px; height: 28px; }
  .brand__name { font-size: 14px; }
  .brand__sub { font-size: 9px; }
  .header-actions { gap: var(--space-2); }
}

.main-nav__list { display: flex; align-items: center; gap: var(--space-6); }
.main-nav__list a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted-dark);
}
.main-nav__list a:hover,
.main-nav__list a[aria-current="page"] { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow-500);
  color: var(--ink);
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 15px;
}
.header-phone:hover { background: var(--yellow-400); }
.header-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-phone .header-phone__text { display: none; }
  .header-phone { padding: 12px; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 84px; left: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100% - 84px);
  background: var(--navy-950);
  z-index: 490;
  overflow-x: hidden;
  overflow-y: auto;
  padding: var(--space-6) var(--space-5);
}
.mobile-nav.is-open { display: block; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--navy-border);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}
.mobile-nav__cta { margin-top: var(--space-6); display: flex; flex-direction: column; gap: 12px; }

/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid #e7e9ee;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted-light);
}
.breadcrumb__list a { font-weight: 700; color: var(--text-muted-light); }
.breadcrumb__list a:hover { color: var(--yellow-600); }
.breadcrumb__list li[aria-current="page"] { color: var(--ink); font-weight: 700; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11,17,26,0.98) 30%, rgba(11,17,26,0.55) 75%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: var(--space-8);
  padding: var(--space-9) 0;
  align-items: center;
}
.hero__content { max-width: 620px; }
.hero__headline {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
}
.hero__headline mark {
  background: none;
  color: var(--yellow-500);
}
.hero__lead {
  font-size: 18px;
  color: var(--text-muted-dark);
  max-width: 560px;
  margin-bottom: var(--space-6);
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.hero__badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.hero__badge svg { width: 22px; height: 22px; color: var(--yellow-500); flex: none; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.hero-panel {
  background: var(--navy-850);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
  padding: var(--space-6);
}
.hero-panel__title {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 6px;
}
.hero-panel__title span { color: var(--yellow-500); }
.hero-panel__desc {
  color: var(--text-muted-dark);
  font-size: 14px;
  margin-bottom: var(--space-5);
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); padding: var(--space-7) 0 var(--space-6); }
  .hero__content { max-width: none; }
}

/* =========================================================
   Form
   ========================================================= */
.lead-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted-dark);
}
.form-field input,
.form-field textarea {
  background: var(--navy-900);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 14px;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #6b7688; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--yellow-500); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field--error input,
.form-field--error textarea { border-color: var(--error); }
.form-field__error {
  display: none;
  font-size: 12px;
  color: #ff9b9b;
}
.form-field--error .form-field__error { display: block; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted-dark);
}
.form-consent input { margin-top: 3px; flex: none; }
.form-consent a { color: var(--yellow-500); font-weight: 700; }

/* Anti-spam honeypot — invisible to sighted users, skipped by keyboard/
   screen-reader nav; left blank by humans, often auto-filled by bots. */
.form-honeypot {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted-dark);
  background: var(--navy-900);
  border: 1px dashed var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: none;
}
.form-note.is-visible { display: block; }
.form-note--dev { color: var(--yellow-400); border-color: var(--yellow-600); }

.form-status {
  display: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}
.form-status.is-visible { display: block; }
.form-status--success { background: rgba(47,158,68,0.15); color: #8fe0a2; }
.form-status--error { background: rgba(214,69,69,0.15); color: #ff9b9b; }

/* Light-panel variant of the same form (used on /kapcsolat/) */
.hero-panel.card--light {
  background: var(--off-white);
  border-color: #e7e9ee;
  box-shadow: none;
}
.card--light .hero-panel__title { color: var(--ink); }
.card--light .hero-panel__title span { color: var(--yellow-600); }
.card--light .hero-panel__desc { color: var(--text-muted-light); }
.card--light .form-field label { color: var(--text-muted-light); }
.card--light .form-field input,
.card--light .form-field textarea {
  background: var(--off-white);
  border-color: #dde1e8;
  color: var(--ink);
}
.card--light .form-field input::placeholder,
.card--light .form-field textarea::placeholder { color: #98a0ad; }
.card--light .form-consent { color: var(--text-muted-light); }
.card--light .form-note { background: var(--white); border-color: #d8dbe2; color: var(--yellow-600); }

/* =========================================================
   Service strip
   ========================================================= */
.service-strip { background: var(--white); border-bottom: 1px solid #ececef; }
.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.service-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: var(--space-6) var(--space-3);
  border-right: 1px solid #ececef;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  transition: background .15s ease, border-color .15s ease;
}
.service-strip__item:last-child { border-right: none; }
.service-strip__item:hover,
.service-strip__item:focus-visible { background: var(--off-white); border-bottom-color: var(--yellow-500); }
.service-strip__item svg { width: 30px; height: 30px; color: var(--yellow-600); }
.service-strip__item span {
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.service-strip__item[aria-current="page"] { background: var(--off-white); }
.service-strip__item[aria-current="page"] svg { color: var(--yellow-500); }

/* "RÉSZLETEK →" affordance — always visible (not hover-only) so mobile
   visitors also see the card is clickable, per UX requirement. */
.service-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--yellow-600);
}
.service-strip__cta svg { width: 14px; height: 14px; color: var(--yellow-600); transition: transform .15s ease; }
.service-strip__item:hover .service-strip__cta,
.service-strip__item:focus-visible .service-strip__cta { color: var(--yellow-600); }
.service-strip__item:hover .service-strip__cta svg,
.service-strip__item:focus-visible .service-strip__cta svg { transform: translateX(3px); }

.service-strip__more { text-align: center; padding-top: var(--space-5); }

@media (max-width: 960px) {
  .service-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-strip__item { border-bottom: 1px solid #ececef; }
  .service-strip__item:nth-child(3n) { border-right: none; }
}
@media (max-width: 520px) {
  .service-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-strip__item:nth-child(3n) { border-right: 1px solid #ececef; }
  .service-strip__item:nth-child(2n) { border-right: none; }
}

/* =========================================================
   Generic dark / light sections
   ========================================================= */
.section { padding: var(--space-9) 0; }
.section--dark { background: var(--navy-950); color: var(--white); }
.section--alt { background: var(--off-white); }
.section--tight { padding: var(--space-7) 0; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-8);
  align-items: center;
}
.about-grid__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
}
.about-grid__body p { color: var(--text-muted-dark); margin-bottom: var(--space-4); }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: var(--space-5) 0 var(--space-6); }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; }
.check-list svg { width: 20px; height: 20px; color: var(--yellow-500); flex: none; margin-top: 2px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-grid__media img { min-height: 260px; }
}

/* =========================================================
   Stats row
   ========================================================= */
.stats-row {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}
.stats-row__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stats-row__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: var(--space-7) var(--space-4);
  border-right: 1px solid var(--navy-border);
  min-width: 0;
}
.stats-row__item:last-child { border-right: none; }
.stats-row__item svg { width: 30px; height: 30px; color: var(--yellow-500); }
.stats-row__number,
.stats-row__label {
  /* Benefit words (e.g. "Ügyfélközpontú") must wrap at spaces, never mid-word. */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: 100%;
}
.stats-row__number { font-size: 30px; font-weight: 900; color: var(--white); }
.stats-row__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted-dark); font-weight: 700; }

@media (max-width: 720px) and (min-width: 601px) {
  .stats-row__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row__item:nth-child(2n) { border-right: none; }
  .stats-row__item { border-bottom: 1px solid var(--navy-border); }
}

/* At narrow phone widths a 2-column grid leaves too little space for long
   Hungarian compound words at 30px/900-weight to fit without either
   overflowing or being force-broken mid-word — one full-width row per
   item is the readable option here (readability over preserving the grid). */
@media (max-width: 600px) {
  .stats-row__grid { grid-template-columns: minmax(0, 1fr); }
  .stats-row__item {
    border-right: none;
    border-bottom: 1px solid var(--navy-border);
    padding: var(--space-5) var(--space-5);
  }
  .stats-row__item:last-child { border-bottom: none; }
  .stats-row__number { font-size: 22px; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { background: var(--navy-950); color: var(--white); }
.testimonials__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.testimonials__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }
.testimonial-card {
  background: var(--navy-850);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial-card__stars { display: flex; gap: 3px; color: var(--yellow-500); }
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card__quote { color: var(--text-muted-dark); font-size: 14.5px; flex: 1; min-width: 0; }
.testimonial-card__author { display: flex; align-items: center; gap: 10px; }
.testimonial-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--yellow-500); font-size: 13px;
  flex: none;
}
.testimonial-card__name { font-size: 13.5px; font-weight: 800; }
.testimonial-card__loc { font-size: 12px; color: var(--text-muted-dark); }
.testimonials__media img {
  width: 100%; height: 100%; min-height: 260px;
  object-fit: cover; border-radius: var(--radius-md);
  border: 1px solid var(--navy-border);
}

@media (max-width: 960px) {
  .testimonials__layout { grid-template-columns: minmax(0, 1fr); }
  .testimonials__cards { grid-template-columns: minmax(0, 1fr); }
  .testimonials__media img { min-height: 200px; }
}

/* =========================================================
   Yellow contact strip
   ========================================================= */
.contact-strip { background: var(--yellow-500); }
.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  flex-wrap: wrap;
}
.contact-strip__msg { display: flex; align-items: center; gap: 16px; }
.contact-strip__msg svg { width: 34px; height: 34px; color: var(--ink); flex: none; }
.contact-strip__title { font-size: 18px; font-weight: 900; text-transform: uppercase; color: var(--ink); }
.contact-strip__sub { font-size: 13.5px; color: rgba(16,22,35,0.75); font-weight: 600; }

/* =========================================================
   Content pages (service / about / contact)
   ========================================================= */
.page-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: var(--space-7) 0;
}
.page-hero__eyebrow { color: var(--yellow-500); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.page-hero__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; text-transform: uppercase; line-height: 1.15; max-width: 780px; }
.page-hero__lead { color: var(--text-muted-dark); font-size: 17px; max-width: 680px; margin-top: var(--space-4); }
.page-hero__ctas { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-6); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: start;
}
.prose h2 { font-size: 24px; font-weight: 800; text-transform: uppercase; margin: var(--space-7) 0 var(--space-4); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 800; margin: var(--space-5) 0 var(--space-2); }
.prose p { color: var(--text-muted-light); margin-bottom: var(--space-4); }
.prose ul { margin-bottom: var(--space-4); display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 10px; color: var(--text-muted-light); }
.prose ul li svg { width: 18px; height: 18px; color: var(--yellow-600); flex: none; margin-top: 3px; }
.prose ol { padding-left: 20px; color: var(--text-muted-light); display: flex; flex-direction: column; gap: 8px; margin-bottom: var(--space-4); }

.side-cta {
  position: sticky;
  top: 104px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.side-cta__title { font-size: 19px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.side-cta__desc { color: var(--text-muted-dark); font-size: 14px; margin-bottom: var(--space-5); }
.side-cta__list { display: flex; flex-direction: column; gap: 10px; margin: var(--space-5) 0; }
.side-cta__list li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted-dark); }
.side-cta__list svg { width: 16px; height: 16px; color: var(--yellow-500); flex: none; margin-top: 3px; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: minmax(0, 1fr); }
  .side-cta { position: static; }
}

/* Related services */
.related-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.related-card {
  border: 1px solid #e7e9ee;
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
}
.related-card svg { width: 26px; height: 26px; color: var(--yellow-600); }
.related-card__title { font-weight: 800; font-size: 15px; text-transform: uppercase; }
.related-card__desc { font-size: 13.5px; color: var(--text-muted-light); flex: 1; min-width: 0; }
@media (max-width: 760px) {
  .related-services__grid { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid #e7e9ee;
  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: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
}
.faq-item__q svg { width: 20px; height: 20px; flex: none; transition: transform .15s ease; color: var(--yellow-600); }
.faq-item__q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-item__a {
  padding: 0 var(--space-5);
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease, padding .2s ease;
  color: var(--text-muted-light);
  font-size: 14.5px;
}
.faq-item__a.is-open {
  padding: 0 var(--space-5) var(--space-4);
  max-height: 600px;
}
.section--dark .faq-item { background: var(--navy-850); border-color: var(--navy-border); }
.section--dark .faq-item__q { color: var(--white); }
.section--dark .faq-item__a { color: var(--text-muted-dark); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-950); color: var(--text-muted-dark); border-top: 1px solid var(--navy-border); }
.footer-top { padding: var(--space-8) 0 var(--space-7); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--space-6);
}
.footer-brand__desc { font-size: 14px; margin: var(--space-4) 0 var(--space-5); max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--navy-border);
  border-radius: 50%;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--yellow-500); color: var(--ink); border-color: var(--yellow-500); }

.footer-heading { color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-4); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--yellow-500); flex: none; margin-top: 2px; }

.footer-bottom { border-top: 1px solid var(--navy-border); padding: var(--space-4) 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; font-size: 12.5px; }
.footer-bottom__links { display: flex; gap: var(--space-5); }
.footer-bottom__links a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-6) var(--space-5); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   Mobile sticky conversion bar
   ========================================================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index: 480;
  background: var(--navy-950);
  border-top: 1px solid var(--navy-border);
  padding: 10px;
  gap: 10px;
  box-sizing: border-box;
}
.mobile-sticky-bar a {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
}
.mobile-sticky-bar svg { width: 18px; height: 18px; }
.mobile-sticky-bar__call { background: var(--yellow-500); color: var(--ink); }
.mobile-sticky-bar__quote { background: var(--navy-700); color: var(--white); border: 1px solid var(--navy-border); }
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* =========================================================
   Consent banner
   ========================================================= */
.consent-banner {
  display: none;
  position: fixed;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 620px;
  box-sizing: border-box;
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-panel);
  z-index: 600;
}
.consent-banner.is-visible { display: block; }
.consent-banner p { font-size: 13.5px; color: var(--text-muted-dark); margin-bottom: var(--space-4); }
.consent-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .mobile-sticky-bar ~ .consent-banner,
  .consent-banner { bottom: 84px; }
}

/* =========================================================
   Misc pages
   ========================================================= */
.legal-page .prose { max-width: 820px; }
.legal-page .prose h2 { margin-top: var(--space-6); }

.thankyou {
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.thankyou__box { max-width: 560px; }
.thankyou__icon { width: 56px; height: 56px; color: var(--yellow-500); margin-bottom: var(--space-5); }

/* =========================================================
   SOS problem grid + safety note
   ========================================================= */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.issue-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.issue-card svg { width: 20px; height: 20px; color: var(--yellow-600); flex: none; margin-top: 2px; }
@media (max-width: 640px) {
  .issue-grid { grid-template-columns: minmax(0, 1fr); }
}

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-5);
  background: var(--off-white);
  border: 1px solid #e7e9ee;
  border-left: 3px solid var(--error);
  border-radius: var(--radius-md);
}
.safety-note svg { width: 22px; height: 22px; color: var(--error); flex: none; margin-top: 2px; }
.safety-note p { color: var(--text-muted-light); font-size: 14px; margin: 0; }

/* =========================================================
   Pricing table (shared: /arak/ and SOS price preview)
   ========================================================= */
.price-table { display: flex; flex-direction: column; gap: 10px; margin: var(--space-5) 0; }
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: var(--radius-md);
}
.price-row__service { font-weight: 800; color: var(--ink); font-size: 15px; }
.price-row__price { font-weight: 900; color: var(--yellow-600); font-size: 16.5px; white-space: nowrap; }
.price-row__note { color: var(--text-muted-light); font-size: 13.5px; }

@media (max-width: 760px) {
  .price-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .price-row__price { font-size: 19px; }
}

.section--dark .price-row { background: var(--navy-850); border-color: var(--navy-border); }
.section--dark .price-row__service { color: var(--white); }
.section--dark .price-row__note { color: var(--text-muted-dark); }

.price-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}
.price-preview-grid h3 { color: var(--white); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: var(--space-2); }
@media (max-width: 760px) {
  .price-preview-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-5); }
}

.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }

.net-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-5);
  padding: 8px 16px;
  background: rgba(242, 183, 5, 0.12);
  border: 1px solid var(--yellow-500);
  border-radius: 999px;
  color: var(--yellow-500);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.net-badge svg { width: 16px; height: 16px; }

.min-fee-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: var(--space-5) 0;
  padding: var(--space-5) var(--space-6);
  background: rgba(242, 183, 5, 0.08);
  border: 2px solid var(--yellow-500);
  border-radius: var(--radius-md);
}
.min-fee-box__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow-600);
}
.min-fee-box__label svg { width: 18px; height: 18px; }
.min-fee-box__value { font-size: 28px; font-weight: 900; color: var(--ink); }
.min-fee-box__desc { color: var(--text-muted-light); font-size: 14px; }

/* Urgent (SOS) hero — same dark/gold system, CTA text allowed to wrap
   on narrow screens instead of forcing overflow. */
.page-hero--urgent .page-hero__ctas .btn { white-space: normal; text-align: center; }

/* =========================================================
   Responsive base
   ========================================================= */
@media (max-width: 640px) {
  .section { padding: var(--space-7) 0; }
  .content-grid { gap: var(--space-6); }
}

.no-js .js-only { display: none !important; }
