/* ── Google Fonts ─────────────────────────────────────────────── */
/* ── Variables ────────────────────────────────────────────────── */
:root {
  --blue:       #1A3A6B;
  --blue-light: #EBF0F8;
  --blue-dark:  #0D1F3C;
  --red:        #C8281E;
  --white:      #ffffff;
  --warm:       #F9F7F4;
  --border:     #E2E5EC;
  --text:       #111111;
  --muted:      #666666;
  --faint:      #999999;
  --radius:     8px;
  --max:        1200px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ───────────────────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }
h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(40px, 5vw, 60px); }
h2 { font-size: clamp(32px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

/* ── Layout ───────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section    { padding: 80px 0; }
.section--warm { background: var(--warm); }
.section--blue { background: var(--blue); color: var(--white); }
.section--dark { background: var(--blue-dark); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── Emergency bar ────────────────────────────────────────────── */
.emergency-bar {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.emergency-bar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 76px;
  display: flex;
  align-items: center;
}
.navbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.navbar__logo img { height: 46px; width: auto; }
.navbar__links { display: flex; gap: 36px; font-size: 14px; font-weight: 500; color: #444; }
.navbar__links a:hover { color: var(--blue); }
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  padding: 0 22px;
  height: 44px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.15s;
}
.navbar__cta:hover { background: #142d54; }

/* Hamburger */
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.navbar__mobile { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
.navbar__mobile a { padding: 10px 0; font-size: 16px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); display: block; }
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile.open { display: flex; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 30px; border-radius: 6px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.15s; border: none; font-family: 'Jost', sans-serif; white-space: nowrap; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: #142d54; }
.btn--outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover { background: var(--blue-light); }
.btn--red { background: var(--blue); color: var(--white); }
.btn--red:hover { background: #a8201a; }
.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); }
.btn--lg { padding: 17px 36px; font-size: 17px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Eyebrow label ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow--white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { display: grid; grid-template-columns: 58% 42%; min-height: 580px; }
.hero__text { padding: 76px 48px 76px 60px; display: flex; flex-direction: column; justify-content: center; }
.hero__text h1 { margin-bottom: 22px; }
.hero__text h1 em { color: var(--blue); font-style: italic; }
.hero__text p { font-size: 16px; color: var(--muted); line-height: 1.78; margin-bottom: 38px; font-weight: 300; max-width: 440px; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); margin-top: 44px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #444; font-weight: 500; }
.trust-icon { width: 20px; height: 20px; border-radius: 50%; background: #E8F5E9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__images { display: grid; grid-template-rows: 2fr 1fr; gap: 3px; }
.hero__images-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.img-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__mester { background: var(--blue-light); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px; }
.hero__mester img { height: 60px; object-fit: contain; }
.hero__mester span { font-size: 10px; font-weight: 700; color: var(--blue); text-align: center; letter-spacing: 0.07em; text-transform: uppercase; line-height: 1.4; }

/* ── Stats bar ────────────────────────────────────────────────── */
.stats-bar { background: var(--blue); padding: 28px 0; }
.stats-bar__inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.stat { text-align: center; color: var(--white); }
.stat__n { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; line-height: 1; }
.stat__l { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 6px; letter-spacing: 0.04em; }

/* ── Section header ───────────────────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header__eyebrow { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.section-header__eyebrow--white { color: rgba(255,255,255,0.6); }
.section-header__row { display: flex; justify-content: space-between; align-items: flex-end; }

/* ── Service cards ────────────────────────────────────────────── */
.svc-card { background: var(--warm); border-radius: 12px; padding: 30px 26px; border: 1px solid var(--border); transition: transform 0.18s, box-shadow 0.18s; cursor: pointer; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(26,58,107,0.1); }
.svc-icon { width: 48px; height: 48px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-card h3 { font-size: 17px; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.65; font-family: 'Jost', sans-serif; font-weight: 300; }
.svc-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--blue); }

/* ── Emergency split ──────────────────────────────────────────── */
.emergency-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.emergency-split__img { overflow: hidden; }
.emergency-split__img img { width: 100%; height: 100%; object-fit: cover; }
.emergency-split__text { background: var(--blue); display: flex; flex-direction: column; justify-content: center; padding: 60px 56px; }
.emergency-split__text .section-header__eyebrow { color: rgba(255,255,255,0.55); }
.emergency-split__text h2 { color: var(--white); margin-bottom: 18px; }
.emergency-split__text p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.72; margin-bottom: 36px; font-weight: 300; }
.emergency-split__sub { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── About section ────────────────────────────────────────────── */
.about__images { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; height: 420px; border-radius: 10px; overflow: hidden; }
.about__images-bottom { display: flex; align-items: center; justify-content: center; gap: 40px; background: var(--blue-light); padding: 24px; }
.about-stat { text-align: center; }
.about-stat__n { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--blue); line-height: 1; }
.about-stat__l { font-size: 12px; color: var(--faint); margin-top: 4px; }

/* ── Pricing cards ────────────────────────────────────────────── */
.price-card { background: var(--warm); border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); }
.price-card--highlight { background: var(--blue); border-color: var(--blue); }
.price-card__eyebrow { font-size: 11px; font-weight: 600; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.price-card--highlight .price-card__eyebrow { color: rgba(255,255,255,0.55); }
.price-card__title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 24px; }
.price-card--highlight .price-card__title { color: var(--white); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid var(--border); font-family: 'Jost', sans-serif; }
.price-card--highlight .price-row { border-bottom-color: rgba(255,255,255,0.12); }
.price-row__key { font-size: 14px; color: var(--muted); font-weight: 300; }
.price-card--highlight .price-row__key { color: rgba(255,255,255,0.7); }
.price-row__val { font-size: 15px; font-weight: 700; }
.price-card--highlight .price-row__val { color: var(--white); }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-split { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.faq-item { background: var(--white); border-radius: 8px; border: 1px solid var(--border); overflow: hidden; margin-bottom: 6px; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); gap: 16px; }
.faq-toggle { font-size: 22px; color: var(--blue); flex-shrink: 0; transition: transform 0.18s; line-height: 1; }
.faq-answer { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 38px; height: 38px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 11px; color: var(--faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-val { font-size: 15px; font-weight: 600; color: var(--blue); }
.contact-val--plain { color: var(--text); font-weight: 400; }
.form-card { background: var(--warm); border-radius: 12px; padding: 36px 32px; border: 1px solid var(--border); }
.form-card h3 { font-size: 26px; margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-label { font-size: 12px; font-weight: 600; color: #555; letter-spacing: 0.04em; margin-bottom: 6px; display: block; }
.form-input { width: 100%; height: 46px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); padding: 0 14px; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text); transition: border-color 0.15s; }
.form-input:focus { outline: none; border-color: var(--blue); }
.form-textarea { width: 100%; height: 110px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); padding: 12px 14px; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text); resize: vertical; }
.form-textarea:focus { outline: none; border-color: var(--blue); }
.form-submit { width: 100%; background: var(--blue); color: var(--white); padding: 14px; border-radius: 6px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: background 0.15s; }
.form-submit:hover { background: #142d54; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); padding: 44px 0; }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.footer__logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 8px; }
.footer__logo p { font-size: 13px; }
.footer__phone a { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; color: var(--white); display: block; text-align: center; }
.footer__phone p { font-size: 12px; text-align: center; margin-top: 4px; }
.footer__meta { text-align: right; font-size: 12px; line-height: 1.7; }

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero { background: var(--blue); color: var(--white); padding: 64px 0 60px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px; font-weight: 300; font-family: 'Jost', sans-serif; }

/* ── Pill list ────────────────────────────────────────────────── */
.pill-list { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 10px 20px; font-size: 14px; font-weight: 500; color: #333; display: inline-flex; align-items: center; gap: 8px; transition: border-color 0.15s, color 0.15s; cursor: pointer; }
.pill:hover { border-color: var(--blue); color: var(--blue); }

/* ── SVG icons inline ─────────────────────────────────────────── */
.ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero__text { padding: 48px 24px; }
  .hero__images { display: none; }
  .stats-bar__inner { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .emergency-split { grid-template-columns: 1fr; }
  .emergency-split__img { height: 280px; }
  .faq-split { grid-template-columns: 1fr; gap: 36px; }
  .about__images { height: auto; }
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .section { padding: 56px 0; }
  .hero__trust { gap: 16px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__meta { text-align: left; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .emergency-split__text { padding: 40px 28px; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; width: 100%; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .hero__text { padding: 40px 20px; }
}
