/*
Theme Name: AB Solution
Theme URI: https://absolutin.adiwebstudio.com
Author: Adriatik Damzi
Description: Production-ready WordPress theme for AB Solution — Radiology Licensing Consultant. Covers DHA, QCHP, CORU, and HCPC licensing with integrated PayPal payments.
Version: 2.0.0
Text Domain: absolution
*/

:root {
  --green: #1a6b3c;
  --green-dark: #0f4526;
  --green-mid: #2d8a52;
  --green-light: #e8f5ee;
  --green-pale: #f2faf5;
  --white: #ffffff;
  --off-white: #f8faf9;
  --text: #111c16;
  --muted: #556b5e;
  --border: rgba(26,107,60,0.15);
  --accent: #34c26e;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 1rem;
  --radius-sm: 0.5rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-branding {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.site-branding span { color: var(--green-mid); }

/* ── Desktop nav (inside header) */
.site-nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.site-nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav-desktop a:hover { color: var(--green); }

/* ── Mobile overlay (outside header, hidden by default) */
.mobile-nav-overlay {
  display: none;
}

.site-nav-desktop .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.site-nav-desktop .nav-cta:hover { background: var(--green-dark) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── CONTAINER ──────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── HERO ───────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  color: var(--white);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 0 2rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  min-width: 240px;
  max-width: 280px;
  box-shadow: var(--shadow-lg);
}

.hero-card-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.license-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.license-pill:last-child { border-bottom: none; }

.pill-flag { font-size: 1.4rem; flex-shrink: 0; }
.pill-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.pill-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 1px; }
.pill-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(52,194,110,0.25);
}

/* ── STATS BAR ──────────────────────────── */
.stats-bar {
  background: var(--green-dark);
  padding: 2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ── SECTION LABELS ─────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 1rem;
}
h2 em {
  font-style: italic;
  color: var(--green);
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0;
}

/* ── OFFER ──────────────────────────────── */
.offer { padding: 6rem 0; background: var(--off-white); }
.offer-inner { text-align: center; }
.offer-inner > h2 { margin-bottom: 0.5rem; }
.offer-inner > .section-sub { margin: 0 auto 3rem; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-top: 2.5rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.offer-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}

.featured-tag {
  position: absolute;
  top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}

.offer-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.offer-name { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.offer-tagline { font-size: 0.75rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin: 0.25rem 0 0.75rem; }
.offer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin: 0 0 1.25rem; }

.offer-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.offer-includes li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}
.offer-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.offer-price {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 1rem 0;
  line-height: 1;
}
.offer-price span { font-size: 0.8rem; color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 400; }

.offer-btn {
  display: block;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.offer-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.offer-card.featured .offer-btn { background: var(--green-dark); }

/* PDF selector */
.pdf-selector {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}
.pdf-choice-label { font-size: 0.73rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.pdf-choice {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23556b5e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  padding-right: 2rem;
}
.pdf-choice:focus { outline: 2px solid var(--green); }
.pdf-note { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; line-height: 1.5; }

/* ── LICENSES / PATHWAYS ────────────────── */
.licenses { padding: 6rem 0; background: var(--white); }
.licenses-inner { text-align: center; }
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: left;
  margin-top: 2.5rem;
}

.lic-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lic-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.lic-header { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.lic-flag { font-size: 1.8rem; flex-shrink: 0; }
.lic-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.lic-country { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

.lic-what { font-size: 0.75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.7rem; }

.lic-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.lic-steps li {
  font-size: 0.83rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.lic-steps li:last-child { border-bottom: none; }
.lic-steps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

.lic-timeline {
  font-size: 0.78rem;
  color: var(--green-dark);
  font-weight: 600;
  background: var(--green-light);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  display: inline-block;
}

/* ── PROCESS ────────────────────────────── */
.process { padding: 6rem 0; background: var(--green-dark); color: var(--white); }
.process-inner { text-align: center; }
.process-inner h2 { color: var(--white); }
.process-inner h2 em { color: var(--accent); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: rgba(255,255,255,0.1);
  z-index: 0;
}

.p-step { position: relative; z-index: 1; }
.p-num {
  width: 2.5rem; height: 2.5rem;
  background: var(--accent);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.p-title { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 0.5rem; }
.p-desc { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }

/* ── ABOUT ──────────────────────────────── */
.about { padding: 6rem 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin: 0 0 1rem; }

.xp-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.xp-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.xp-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.xp-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.xp-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── FAQ ────────────────────────────────── */
.faq { padding: 6rem 0; background: var(--off-white); }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-inner > h2 { text-align: center; margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--green-pale); }
.faq-icon {
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT ────────────────────────────── */
.contact { padding: 6rem 0; background: var(--white); }
.contact-inner { max-width: 1040px; margin: 0 auto; padding: 0 2rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-why {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-why li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.6;
}
.contact-why li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  border-left: 3px solid var(--border);
  padding-left: 0.9rem;
  margin: 1.25rem 0;
}

.contact-links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.contact-link:hover { border-color: var(--green); background: var(--green-pale); }
.contact-link-icon {
  width: 2rem; height: 2rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FORM ───────────────────────────────── */
.form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-title { font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 1.25rem; }

.fg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.fg label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.fg input, .fg select, .fg textarea {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}

.form-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-notice {
  font-size: 0.82rem;
  padding: 0.7rem 0.9rem;
  border-radius: 7px;
  margin-top: 0.75rem;
  display: none;
}
.form-notice.success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(26,107,60,0.2);
  display: block;
}
.form-notice.error {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.2);
  display: block;
}

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 3rem 2rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--accent); }
.site-footer p { font-size: 0.8rem; margin: 0 0 1.25rem; }
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 0 1.5rem;
}
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { font-size: 0.73rem; color: rgba(255,255,255,0.35); margin-top: 1rem; }

/* ── SCROLL-TO-TOP ───────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-2px); background: var(--green-dark); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .licenses-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header { padding: 1rem 1.5rem; }
  /* Hamburger button */
  .nav-toggle { display: flex; }

  /* Hide desktop nav on mobile */
  .site-nav-desktop { display: none; }

  /* Mobile overlay — full screen, outside header so no stacking issues */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0f4526;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    padding: 0;
  }
  .mobile-nav-overlay.open {
    display: flex;
  }
  .mobile-nav-overlay ul {
    list-style: none;
    margin: 0;
    padding: 5rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .mobile-nav-overlay ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-nav-overlay ul li:last-child {
    border-bottom: none;
  }
  .mobile-nav-overlay a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
  }
  .mobile-nav-overlay a:hover {
    color: #34c26e;
  }
  .mobile-nav-overlay .nav-cta {
    display: block;
    margin-top: 1.5rem;
    background: #34c26e;
    color: #0f4526 !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
  }
  .mobile-nav-overlay .nav-cta:hover {
    background: #2db060;
  }
  /* Close button */
  .nav-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    font-family: inherit;
    z-index: 10000;
  }
  .nav-close:hover { background: rgba(255,255,255,0.25); }

  .hero { padding: 7rem 0 4rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }

  .offer-grid { grid-template-columns: 1fr; max-width: 420px; margin: 2.5rem auto 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .licenses-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .offer, .licenses, .process, .about, .faq, .contact { padding: 4rem 0; }
  .scroll-top { bottom: 1rem; right: 1rem; }
}

/* ── PRINT ──────────────────────────────── */
@media print {
  .site-header, .hero-ctas, .offer-btn, .form-submit, .scroll-top, .nav-toggle { display: none; }
  .hero { padding-top: 2rem; }
  .offer-card { break-inside: avoid; }
}
