/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-sea: #1A2F38;
  --copper: #C5A059;
  --warm-white: #F9F7F2;
  --charcoal: #333333;
  --mid-gray: #6B7C82;
  --light-border: #E4DFD6;
  --deep-sea-light: rgba(26, 47, 56, 0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--deep-sea);
  margin-bottom: 10px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-mark { width: 32px; height: 32px; }

.nav-logo-text {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--deep-sea);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-link:hover { background: var(--deep-sea-light); color: var(--deep-sea); }
.nav-link.active { color: var(--deep-sea); font-weight: 600; }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--light-border);
  border-radius: 10px;
  padding: 6px;
  padding-top: 14px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(26, 47, 56, 0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s;
}

.nav-dropdown-item:hover { background: var(--deep-sea-light); color: var(--deep-sea); }

.nav-dropdown-item small {
  display: block;
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 2px;
}

.nav-cta {
  background: var(--copper);
  color: var(--warm-white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.88; background: var(--copper); color: var(--warm-white); }

.nav-chevron {
  display: inline-block;
  margin-left: 3px;
  font-size: 10px;
  opacity: 0.6;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-sea);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* ─── PAGE WRAPPER ────────────────────────────────────────────────── */
.page { padding-top: 68px; min-height: 100vh; }

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 64px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--deep-sea);
  margin-bottom: 22px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-image { display: flex; align-items: center; justify-content: center; }

.hero-image img { width: 100%; max-width: 520px; }

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--copper);
  color: var(--warm-white);
  padding: 14px 28px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.15s;
  display: inline-block;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  color: var(--deep-sea);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1.5px solid var(--copper);
  padding-bottom: 2px;
  transition: opacity 0.15s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.btn-secondary:hover { opacity: 0.7; }

.btn-copper {
  background: var(--copper);
  color: var(--warm-white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.15s;
  display: inline-block;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.btn-copper:hover { opacity: 0.88; }

/* ─── SECTIONS ────────────────────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
}

.section--no-top { padding-top: 0; }
.section--pb-sm { padding-bottom: 24px; }
.section--pt-lg { padding-top: 48px; }

.ingress-section { padding-bottom: 56px; }

.ingress-heading {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 20px;
  max-width: 760px;
}

.ingress-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 760px;
  margin-bottom: 20px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-label--spaced { margin-top: 28px; margin-bottom: 12px; }

.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 16px;
  max-width: 800px;
}

.section-sub {
  font-size: 16px;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 0 40px;
}

/* ─── FEATURE GRID ────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-grid-wrapper { margin-top: 48px; }

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--light-border);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--deep-sea-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card-icon svg { width: 22px; height: 22px; }

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; }

/* ─── TWO-COLUMN LAYOUT ───────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.two-col-image img { width: 100%; border-radius: 0; }

.two-col-content h2 { font-size: clamp(24px, 2.5vw, 34px); margin-bottom: 20px; }
.two-col-content p { font-size: 16px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 18px; }

/* ─── AUDIENCE CARDS ──────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-grid--vertical {
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.audience-card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--light-border);
  background: var(--warm-white);
}

.audience-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.audience-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

/* ─── BULLET LIST (SME use cases) ─────────────────────────────────── */
.bullet-list { display: flex; flex-direction: column; }

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--charcoal);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── PRICING ─────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 32px 28px;
  background: white;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--deep-sea);
  border-color: var(--deep-sea);
  color: var(--warm-white);
}

.pricing-card.featured .pricing-price { color: var(--warm-white); }
.pricing-card.featured .pricing-desc { color: rgba(249, 247, 242, 0.65); }

.pricing-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-name { color: var(--copper); }

.pricing-price {
  font-family: 'Lora', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-sea);
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 13px;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-sub { color: rgba(249, 247, 242, 0.5); }

.pricing-desc { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

.pricing-footnote { font-size: 13px; color: var(--mid-gray); margin-top: 32px; }

/* ─── GUARANTEE STRIP ─────────────────────────────────────────────── */
.guarantee-strip {
  background: var(--deep-sea);
  color: var(--warm-white);
  padding: 64px 40px;
}

.guarantee-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.guarantee-item h3 { font-size: 18px; font-weight: 600; color: var(--warm-white); margin-bottom: 10px; }
.guarantee-item p { font-size: 14px; color: rgba(249, 247, 242, 0.65); line-height: 1.7; }

.g-icon { font-size: 28px; margin-bottom: 14px; color: var(--copper); }

/* ─── PROCESS STEPS ───────────────────────────────────────────────── */
.process-hero-eyebrow { margin-bottom: 16px; }

.process-hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--deep-sea);
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 20px;
}

.process-hero-lead {
  font-size: 18px;
  color: var(--mid-gray);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 8px;
}

.process-hero-note {
  font-size: 15px;
  color: var(--copper);
  font-weight: 600;
}

.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--light-border);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Lora', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.35;
  line-height: 1;
}

.step-content h2 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 0; }
.step-content p + ul { margin-top: 12px; }
.step-content ul { padding-left: 18px; }
.step-content ul li { font-size: 15px; color: var(--mid-gray); line-height: 1.75; margin-bottom: 4px; }

.step-image { width: 180px; }
.step-image img { width: 100%; border-radius: 10px; }

.info-box {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 40px 36px;
}

.info-box h2 { font-size: 24px; margin-bottom: 14px; }

.info-box p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 680px;
}

/* ─── CTA SECTION ─────────────────────────────────────────────────── */
.cta-section {
  background: var(--deep-sea);
  padding: 80px 40px;
  text-align: center;
}

.cta-inner { max-width: 800px; margin: 0 auto; }

.cta-section h2 { font-size: clamp(26px, 3vw, 38px); color: var(--warm-white); margin-bottom: 18px; }
.cta-section p { font-size: 16px; color: rgba(249, 247, 242, 0.7); margin-bottom: 32px; line-height: 1.75; }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--warm-white);
  border-top: 1px solid var(--light-border);
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand { max-width: 280px; }

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-brand p { font-size: 14px; color: var(--mid-gray); line-height: 1.7; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep-sea);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.12s;
  text-decoration: none;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
  font-size: 13px;
  color: var(--mid-gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── ARTICLE ─────────────────────────────────────────────────────── */
.article-hero { padding: 64px 40px 0; max-width: 760px; margin: 0 auto; }

.article-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(197, 160, 89, 0.10);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.article-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 20px; line-height: 1.15; }

.article-lead { font-size: 18px; color: var(--mid-gray); line-height: 1.8; margin-bottom: 40px; }

.article-image {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 40px;
}

.article-image img { width: 100%; border-radius: 14px; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.article-body h2 { font-size: 24px; font-weight: 600; margin: 40px 0 14px; }
.article-body h3 { font-size: 19px; font-weight: 600; margin: 28px 0 10px; }
.article-body p { font-size: 16px; color: var(--charcoal); line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 16px; color: var(--charcoal); line-height: 1.8; margin-bottom: 6px; }

.article-body .highlight {
  background: var(--deep-sea);
  color: var(--warm-white);
  padding: 28px 32px;
  border-radius: 12px;
  margin: 32px 0;
}

.article-body .highlight p { color: rgba(249, 247, 242, 0.85); margin: 0; }

.article-sources {
  font-size: 13px;
  color: var(--mid-gray);
  padding-top: 32px;
  border-top: 1px solid var(--light-border);
  margin-top: 48px;
}

.article-sources p { margin-bottom: 6px; line-height: 1.6; font-size: 13px; color: var(--mid-gray); }

/* ─── DATA TABLE ──────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; }

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid-gray);
  border-bottom: 2px solid var(--light-border);
}

.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--light-border); vertical-align: top; }
.data-table td:first-child { font-weight: 600; color: var(--deep-sea); }
.data-table tr:last-child td { border-bottom: none; }

.data-table--spaced { margin-top: 16px; margin-bottom: 24px; }

/* ─── MODAL ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 47, 56, 0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--warm-white);
  border-radius: 18px;
  padding: 44px 40px 36px;
  width: 100%;
  max-width: 480px;
  margin: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(26, 47, 56, 0.18);
}

.modal-title {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 6px;
}

.modal-sub { font-size: 14px; color: var(--mid-gray); margin-bottom: 28px; line-height: 1.6; }

.modal-field { margin-bottom: 18px; }

.modal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-sea);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.modal-label span { color: var(--copper); margin-left: 2px; }

.modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.15s;
  resize: none;
}

.modal-input:focus { border-color: var(--copper); }
.modal-input.error { border-color: #c0392b; }

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.modal-btn-cancel {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: var(--mid-gray);
  background: none;
  border: none;
  transition: color 0.15s;
  font-family: inherit;
}

.modal-btn-cancel:hover { color: var(--deep-sea); }

.modal-btn-submit {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--copper);
  color: var(--warm-white);
  border: none;
  transition: opacity 0.15s;
  font-family: inherit;
}

.modal-btn-submit:hover { opacity: 0.88; }

.modal-btn-close {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--deep-sea);
  color: var(--warm-white);
  border: none;
  transition: opacity 0.15s;
  font-family: inherit;
}

.modal-btn-close:hover { opacity: 0.85; }

.modal-confirm {
  text-align: center;
  padding: 12px 0 8px;
  display: none;
}

.modal-confirm.is-visible { display: block; }

.modal-confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-confirm-heading {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-sea);
  line-height: 1.25;
  margin-bottom: 12px;
}
.modal-confirm p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 28px; }

.modal-error {
  font-size: 14px;
  color: #c0392b;
  margin-top: 12px;
  text-align: center;
  display: none;
}

.modal-error.is-visible { display: block; }
.modal-btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-image { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .guarantee-inner { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 48px 1fr; }
  .step-image { display: none; }
  .section { padding: 48px 24px; }
  .nav-inner { padding: 0 20px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--warm-white);
    border-bottom: 1px solid var(--light-border);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 20px rgba(26, 47, 56, 0.08);
  }

  .nav.mobile-open .nav-links { display: flex; }

  .nav.mobile-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav.mobile-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-link { padding: 12px 14px; font-size: 15px; }

  .nav-dropdown { position: static; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 14px;
    padding-top: 0;
    min-width: 0;
    display: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-item { padding: 10px 14px; }

  .nav-cta { text-align: center; margin-top: 6px; }

  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
  .article-hero, .article-body, .article-image { padding-left: 24px; padding-right: 24px; }
  .section-divider { margin: 0 24px; }
  .guarantee-strip { padding: 48px 24px; }
  .cta-section { padding: 64px 24px; }

  .modal-overlay { padding: 0; align-items: flex-start; }
  .modal {
    border-radius: 0;
    min-height: 100dvh;
    max-width: 100%;
    margin: 0;
    padding: 28px 20px 24px;
  }
}
