/* ============================================================
   Nordsjællands Brandsikkerhed — Fælles stylesheet (style.css)
   Alle sider linker til denne fil. Ingen duplikeret CSS.
   ============================================================ */

/* --- Google Fonts: Source Sans 3 --- */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- CSS-variabler --- */
:root {
  --navy:   #123A5C;
  --gold:   #C9A227;
  --orange: #E8622A;
  --light:  #F5F6F8;
  --border: #DDE2E8;
  --white:  #FFFFFF;
  --radius: 6px;
  --text:   #333333;
  --muted:  #555555;
  --shadow: 0 2px 12px rgba(18,58,92,0.10);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.4em; }

/* --- Typografi --- */
h1, h2, h3, h4 {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: .5rem; }
h3 { font-size: 20px; font-weight: 700; margin-bottom: .4rem; }
h4 { font-size: 17px; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout hjælpeklasser --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-light { background: var(--white); }
.section-alt   { background: var(--light); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: .5rem; }

/* Tynd guldlinje under sektion-overskrift */
.gold-rule {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 12px auto 0;
  display: block;
}
.gold-rule-left {
  width: 52px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 12px 0 0;
  display: block;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 16px auto 0;
}

/* --- Knapper --- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.3;
}
.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--gold);
  color: #14273a;
  border-color: var(--gold);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 1px 8px rgba(18,58,92,0.07);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold); text-decoration: none; }
.site-nav a.active { border-bottom-color: var(--gold); color: var(--navy); }

.header-phone {
  margin-left: 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  white-space: nowrap;
  text-decoration: none;
}
.header-phone:hover { color: var(--gold); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.80);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.50);
}

/* ============================================================
   HERO (forside)
   ============================================================ */
.hero {
  background-color: #123A5C;
  background-image: linear-gradient(
      90deg,
      rgba(18,58,92,0.92) 0%,
      rgba(18,58,92,0.82) 45%,
      rgba(18,58,92,0.35) 100%
    ),
    url("assets/hero-brandsikring.svg");
  background-size: cover;
  background-position: center right;
  padding: 104px 0 96px;
  border-bottom: 3px solid var(--gold);
}

.hero-content { max-width: 600px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-sub {
  color: rgba(255,255,255,0.90);
  font-size: 18px;
  margin-bottom: 36px;
  line-height: 1.65;
}

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

/* Hero-specifikke knapper */
.hero .btn-primary {
  background: var(--gold);
  color: #14273a;
  border-color: var(--gold);
}

.hero .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: var(--radius);
  display: inline-block;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

/* ============================================================
   FEATURES-SØJLER (forside)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--navy);
}

.feature-card h3 { color: var(--navy); margin-bottom: 8px; }
.feature-card p  { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ============================================================
   YDELSER-OVERSIGT (forside + ydelser.html)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(18,58,92,0.14);
  transform: translateY(-2px);
}

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

.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p  { font-size: 15.5px; color: var(--muted); margin: 0; }

.services-link-wrap { text-align: center; margin-top: 36px; }
.services-link-wrap a {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s;
}
.services-link-wrap a:hover { color: var(--gold); }

/* ============================================================
   INTRO-TEKST "Brandsikring der holder"
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   CTA-BÅND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.80); font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-primary {
  background: var(--gold);
  color: #14273a;
  border-color: var(--gold);
  font-size: 17px;
  padding: 15px 36px;
}

/* ============================================================
   YDELSER-SIDE — sektion: aktiv vs passiv
   ============================================================ */
.aktiv-passiv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ap-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px 28px;
}

.ap-card h3 { margin-bottom: 10px; }
.ap-card p  { color: var(--muted); font-size: 15.5px; margin: 0; }
.ap-card-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--light);
  color: var(--navy);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 10px;
}

/* --- Arbejdsproces (4 trin) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step { text-align: center; padding: 8px; }

.step-circle {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.process-step h4 { color: var(--navy); margin-bottom: 8px; }
.process-step p  { font-size: 15px; color: var(--muted); margin: 0; }

/* --- Hvad påvirker prisen --- */
.price-factors-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-factor-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.pf-check {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--gold);
  flex-shrink: 0;
}

.price-factor-item h4 { margin-bottom: 4px; }
.price-factor-item p  { font-size: 15.5px; color: var(--muted); margin: 0; }

.price-cta {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.price-cta p { margin: 0; color: var(--muted); font-size: 16px; }

/* ============================================================
   OM OS-SIDE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Nøgletal (Kort om os) --- */
.stats-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 28px 16px;
  text-align: center;
}

.stat-value {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* --- Værdier --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.value-icon {
  width: 44px;
  height: 44px;
  color: var(--navy);
  margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p  { color: var(--muted); font-size: 15.5px; margin: 0; }

/* --- Dækningsområde --- */
.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.coverage-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================
   STIFTERPROFIL (om-os.html — "Bag virksomheden")
   ============================================================ */

/* HTML-kommentar: alle (indsæt ...)-felter skal udfyldes af ejeren.
   Herefter kan class="udfyld" slettes, så den gule markering forsvinder. */

.udfyld {
  background: #fff8dc;
  border: 1.5px dashed var(--gold);
  border-radius: 4px;
  padding: 0 5px;
  font-style: italic;
  color: #7a6410;
  display: inline-block;
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  background: #F0F0F0;
  border: 2.5px dashed #b0b8c1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 8px;
}

.founder-photo span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.founder-photo span:last-child {
  font-size: 13px;
  color: #888;
}

.founder-card-info {
  padding: 20px;
}

.founder-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 14.5px;
  color: var(--muted);
}

/* Højre kolonne */
.founder-bio { font-size: 16px; color: var(--muted); margin-bottom: 28px; }

.founder-right h4 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* CV-liste */
.cv-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 4px;
}

.cv-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  align-items: start;
}

.cv-year {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  padding-top: 2px;
}

.cv-body h4 { font-size: 15.5px; margin-bottom: 3px; }
.cv-body p  { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Certificeringer */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cert-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--light);
  border-radius: var(--radius);
  padding: 12px 14px;
  border: 1px solid var(--border);
}

.cert-check {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.cert-body p:first-child { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.cert-body p:last-child  { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============================================================
   SOCIAL PROOF (forside)
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.proof-item:hover img { transform: scale(1.04); }

/* ============================================================
   SIDE-HERO MED ILLUSTRATION (ydelser, om-os, kontakt)
   ============================================================ */
.side-hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
}

.side-hero-illustration {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .side-hero-grid { grid-template-columns: 1fr; }
  .side-hero-illustration { display: none; }
}

/* ============================================================
   KONTAKT-SIDE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Formular */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
}

.contact-form h2 { margin-bottom: 6px; }
.contact-form .form-sub { color: var(--muted); font-size: 15.5px; margin-bottom: 28px; }

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

.form-group { margin-bottom: 18px; }

label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.required-mark { color: var(--orange); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18,58,92,0.10);
}

input.field-error, select.field-error, textarea.field-error {
  border-color: #c0392b;
}

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

.field-msg {
  font-size: 13px;
  margin-top: 4px;
  min-height: 16px;
  display: block;
}
.field-msg.error { color: #c0392b; }

.form-submit { margin-top: 8px; }
.form-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 14px 28px;
}

.form-success {
  display: none;
  background: #edfaf3;
  border: 1.5px solid #2ecc71;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 20px;
  color: #1a6e3e;
  font-weight: 600;
  font-size: 16px;
}

.form-success.visible { display: block; }

/* HTML-kommentar: formularens action skal sættes til Formspree-endpoint
   (fx https://formspree.io/f/xxxxxx) eller et backend-script. */

/* Kontaktinfo-boks */
.contact-info-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.contact-info-box h3 { margin-bottom: 20px; }

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15.5px;
  color: var(--muted);
}

.info-list li:last-child { margin-bottom: 0; }

.info-icon {
  width: 22px;
  height: 22px;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list a { color: var(--navy); text-decoration: none; }
.info-list a:hover { color: var(--gold); }

.hours-table { width: 100%; font-size: 15px; border-collapse: collapse; }
.hours-table td { padding: 4px 0; color: var(--muted); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); width: 130px; }

/* --- FAQ-accordion --- */
.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color .2s;
}
.faq-btn:hover { color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  transition: transform .25s;
  color: var(--gold);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 4px 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   JSON-LD (visuelt skjult, ikke relevant for CSS,
   men nævnt for orden — se script-tags i index.html)
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .features-grid    { grid-template-columns: 1fr; gap: 20px; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .values-grid      { grid-template-columns: 1fr 1fr; }
  .aktiv-passiv-grid { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
  .proof-grid       { grid-template-columns: 1fr 1fr; }
  .intro-grid       { grid-template-columns: 1fr; gap: 28px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-grid     { grid-template-columns: 1fr; }
  .founder-card     { max-width: 300px; }
  .contact-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .founder-grid     { grid-template-columns: 1fr; }
  .cert-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-nav { display: none; flex-direction: column; align-items: flex-start;
              position: absolute; top: 72px; left: 0; right: 0;
              background: var(--white); padding: 16px 24px 24px;
              border-bottom: 3px solid var(--gold);
              box-shadow: 0 8px 24px rgba(18,58,92,0.10); gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 17px; padding: 10px 0; width: 100%; }
  .header-phone { display: none; }
  .hamburger { display: flex; }

  .services-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr; }
  .proof-grid       { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .cv-item          { grid-template-columns: 1fr; gap: 4px; }
  .price-cta        { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero     { padding: 72px 0 64px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-box { padding: 20px 10px; }
  .stat-value { font-size: 26px; }
}
