/* Eldvarnir ehf. — shared site styles.
   Extracted from index.html so /eldvarnaeftirlit/ and any future page share one source. */

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

:root {
  --red: #cc1f1f;
  --dark: #111111;
  --dark2: #1a1a1a;
  --grey-bg: #f5f5f5;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #e0e0e0;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: #a81818 !important; color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── ANNIVERSARY STRIP ─────────────────── */
.anniversary-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────── */
.hero {
  background: var(--dark) url('/assets/photos/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 100px 32px 90px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(204,31,31,0.10) 0%, transparent 65%),
    linear-gradient(100deg, rgba(13,13,13,0.94) 0%, rgba(13,13,13,0.86) 55%, rgba(13,13,13,0.72) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-years {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero-slogan {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  font-style: italic;
  color: var(--red);
  margin-bottom: 36px;
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero-desc + .hero-desc { margin-bottom: 44px; }

.hero-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}

.hero-btn:hover { background: #a81818; transform: translateY(-1px); }

/* ── SECTIONS SHARED ───────────────────── */
section { padding: 90px 32px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.red-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ── UM OKKUR ──────────────────────────── */
#um-okkur { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body p:last-child { margin-bottom: 0; }

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  line-height: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  background: var(--grey-bg);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workshop-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.workshop-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-bg);
}

.workshop-item img {
  width: 100%;
  height: auto;
  display: block;
}

.workshop-item figcaption {
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 680px) {
  .workshop-strip { grid-template-columns: 1fr; }
}

.stat-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.stat-item:first-child { padding-top: 0; }
.stat-item:last-child { padding-bottom: 0; border-bottom: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* ── ÞJÓNUSTA ──────────────────────────── */
#thjonusta { background: var(--grey-bg); }

.services-header { margin-bottom: 48px; }

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

.service-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-card:hover {
  border-top-color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--red);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Regulation tag + "read more" line at the foot of a service card */
.service-card .card-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.service-card .card-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.service-card .card-link:hover { text-decoration: underline; }

/* ── TRUST STRIP ───────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  color: var(--red);
  flex-shrink: 0;
}

/* ── SERVICE CTA CARD ──────────────────── */
.service-card.cta-card {
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.service-card.cta-card:hover { border-top-color: var(--red); }

.service-card.cta-card h3 { color: var(--white); }
.service-card.cta-card p { color: rgba(255,255,255,0.65); margin-bottom: 18px; }

.service-card.cta-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.service-card.cta-card a:hover { text-decoration: underline; }

/* ── FAQ ───────────────────────────────── */
#spurningar { background: var(--white); }

.faq-list { max-width: 760px; margin-top: 40px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.15s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--red); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 4px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ── CTA BAND ──────────────────────────── */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 64px 32px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.cta-band-btn.solid { background: var(--white); color: var(--red); }
.cta-band-btn.solid:hover { background: #f3f3f3; }
.cta-band-btn.outline { border: 2px solid rgba(255,255,255,0.7); color: var(--white); }
.cta-band-btn.outline:hover { background: rgba(255,255,255,0.12); }

/* ── HAFA SAMBAND ──────────────────────── */
#hafa-samband { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--grey-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-body { padding-top: 2px; }

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-item-value a {
  color: inherit;
  text-decoration: none;
}

.contact-item-value a:hover { color: var(--red); }

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 8px;
  display: block;
}

/* ── CONTACT FORM ──────────────────────── */
.contact-form-wrap {
  margin-top: 64px;
  background: var(--grey-bg);
  border-radius: 8px;
  padding: 40px 36px;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 11px 13px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,31,31,0.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .form-msg-row { margin-bottom: 20px; }

.contact-form button {
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 13px 34px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.contact-form button:hover { background: #a81818; }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.ok { display: block; background: #e7f6ec; color: #1a7f3c; border: 1px solid #b7e2c5; }
.form-status.err { display: block; background: #fdecec; color: #b91c1c; border: 1px solid #f5c2c2; }

/* honeypot — invisible to humans, tempting to bots */
.cf-extra { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 680px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── FOOTER ────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 32px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 12px;
}

.footer-tagline {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: block;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
}

@media (max-width: 680px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 70px 0 0; background: var(--white); padding: 32px 24px; gap: 24px; border-top: 1px solid var(--border); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .hero { padding: 70px 20px 60px; min-height: 70vh; }
  section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 20px 24px; }
  .trust-inner { grid-template-columns: 1fr; gap: 14px; }
  .trust-strip { padding: 20px; }
  .cta-band { padding: 48px 20px; }
}

/* ── BACK TO TOP ───────────────────────── */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 50;
  transition: background 0.15s;
  text-decoration: none;
}

.back-top.show { display: flex; }
.back-top:hover { background: #a81818; }

/* ══════════════════════════════════════════════════════════════════
   SUB-PAGE STYLES (/eldvarnaeftirlit/ and future service pages)
   ══════════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (compact variant of .hero) ──────────── */
.page-hero {
  background: var(--dark) url('/assets/photos/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 72px 32px 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(204,31,31,0.12) 0%, transparent 65%),
    linear-gradient(100deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.88) 55%, rgba(13,13,13,0.76) 100%);
  pointer-events: none;
}

.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

.page-hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  max-width: 780px;
}

.page-hero .page-hero-lead {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 34px;
}

.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero-actions .hero-btn.ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 34px;
}

.page-hero-actions .hero-btn.ghost:hover { background: rgba(255,255,255,0.1); }

/* ── SECTION TONE VARIANTS ─────────────────────────── */
.section-alt { background: var(--grey-bg); }
.section-white { background: var(--white); }

.prose p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 720px;
}

.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 700; }

/* ── REGULATION TAG ────────────────────────────────── */
.reg-tag {
  display: inline-block;
  background: rgba(204,31,31,0.08);
  color: var(--red);
  border: 1px solid rgba(204,31,31,0.2);
  border-radius: 3px;
  padding: 3px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── LAW TABLE ─────────────────────────────────────── */
.law-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 0.94rem;
}

.law-table caption {
  caption-side: bottom;
  text-align: left;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 16px;
  line-height: 1.6;
}

.law-table th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0 16px 12px 0;
  border-bottom: 2px solid var(--border);
}

.law-table td {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.65;
  vertical-align: top;
}

.law-table td:first-child {
  white-space: nowrap;
  font-weight: 700;
  color: var(--text);
  width: 1%;
}

.law-table tr:last-child td { border-bottom: none; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── CHECK LIST ────────────────────────────────────── */
.check-list {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 940px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/16px no-repeat;
}

.check-list li strong { color: var(--text); font-weight: 700; }

@media (max-width: 780px) { .check-list { grid-template-columns: 1fr; } }

/* ── OFFER CARDS ───────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 6px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }

.offer-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.offer-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.offer-card > p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.offer-card ul {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.offer-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 7px;
}

.offer-card li:last-child { margin-bottom: 0; }

.offer-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Full-width variant — fills the trailing row when the card count is odd */
.offer-card.wide { grid-column: 1 / -1; }
.offer-card.wide > p { max-width: 62ch; }
.offer-card.wide ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 40px; }
.offer-card.wide li { margin-bottom: 0; }

@media (max-width: 780px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card.wide ul { grid-template-columns: 1fr; }
}

/* ── PROCESS STEPS ─────────────────────────────────── */
.steps {
  counter-reset: step;
  list-style: none;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: 52px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li::after {
  content: '';
  position: absolute;
  top: 19px;
  left: 46px;
  right: -20px;
  height: 1px;
  background: var(--border);
}

.steps li:last-child::after { display: none; }

.steps h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.35;
}

.steps p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li::after { display: none; }
}

@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── CALLOUT ───────────────────────────────────────── */
.callout {
  margin-top: 40px;
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  max-width: 820px;
}

.callout h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.callout p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.callout p:last-child { margin-bottom: 0; }

/* ── SOURCES ───────────────────────────────────────── */
.sources {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.sources h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sources ul { list-style: none; }

.sources li {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.sources a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.sources a:hover { color: var(--red); }

@media (max-width: 680px) {
  .page-hero { padding: 52px 20px 48px; }
  .callout { padding: 22px 20px; }
}
