/* ==========================================================================
   Empower Clean — static site styles
   Rebuilt from the Lovable app. Plain CSS, no build step, no framework.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --background:        #fbfbf9;
  --background-tint:   #f4f6f3;
  --foreground:        #26493a;
  --heading:           #1f5137;
  --primary:           #376c4c;
  --primary-dark:      #315e43;
  --primary-bright:    #389457;
  --primary-light:     #4a9e6a;
  --primary-soft:      #e4efe6;
  --primary-softer:    #eef5ef;
  --muted:             #eaefea;
  --muted-foreground:  #5a7566;
  --body-text:         #4a5f52;
  --card:              #ffffff;
  --border:            #e0e7e0;
  --border-strong:     #cfdcd2;
  --footer-bg:         #2a4f3a;
  --footer-fg:         #d7e5db;

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(31, 60, 44, .06);
  --shadow:    0 4px 16px rgba(31, 60, 44, .06);
  --shadow-md: 0 10px 30px rgba(31, 60, 44, .10);
  --shadow-lg: 0 24px 60px rgba(31, 60, 44, .16);

  --container: 1200px;
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, #358d52 100%);
  --gradient-band:    linear-gradient(135deg, #376c4c 0%, #389457 100%);
  --gradient-soft:    linear-gradient(to bottom right, #fbfbf9, rgba(244, 241, 235, .3), rgba(232, 238, 232, .5));

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;

  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.75rem); line-height: 1.04; letter-spacing: -.025em; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { color: var(--heading); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-sm); transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 860px; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--tint { background: var(--background-tint); }
.section--soft { background: var(--gradient-soft); }
.section--band { background: var(--gradient-band); color: #fff; }
.section--band h2, .section--band h3, .section--band h4 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.0625rem; color: var(--muted-foreground); }
.section--band .section-head p { color: rgba(255,255,255,.88); }

.eyebrow {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: .01em;
}
.section--band .eyebrow { background: rgba(255,255,255,.16); color: #fff; }

.lead { font-size: 1.1875rem; line-height: 1.6; color: var(--muted-foreground); }

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

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  padding: 14px 26px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: var(--shadow-md); }

.btn-outline { background: #fff; color: var(--heading); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--primary-softer); border-color: var(--primary-light); }

.btn-pill { border-radius: var(--radius-full); padding: 11px 24px; font-size: .9375rem; }

.btn-on-band { background: #fff; color: var(--primary); }
.btn-on-band:hover { background: #f2f8f3; }

.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 251, 249, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 24px;
}

.brand { display: inline-flex; flex-direction: column; gap: 2px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 26px; width: auto; }
.brand span {
  font-size: .625rem; font-style: italic; color: var(--muted-foreground);
  letter-spacing: .01em;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav button {
  font: inherit; font-size: .9375rem; font-weight: 500; color: var(--foreground);
  background: none; border: 0; cursor: pointer;
  padding: 8px 12px; border-radius: var(--radius-sm); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav a:hover, .nav button:hover { color: var(--primary); background: var(--primary-softer); text-decoration: none; }

.nav-dropdown { position: relative; }
.nav-dropdown > button svg { width: 14px; height: 14px; transition: transform .18s ease; }
.nav-dropdown[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-4px);
  min-width: 232px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-dropdown[data-open="true"] .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: block; padding: 10px 12px; font-size: .9375rem; border-radius: var(--radius-sm); }

.nav a.nav-cta, .nav a.nav-cta:hover {
  margin-left: 10px;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 11px 24px;
  font-weight: 600;
}
.nav a.nav-cta:hover { box-shadow: var(--shadow-md); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--heading); }
.nav-toggle svg { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 84px; background: var(--gradient-soft); }
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; background: rgba(86, 140, 105, .07); pointer-events: none;
}
.hero::before { width: 420px; height: 420px; left: -180px; top: 140px; }
.hero::after  { width: 340px; height: 340px; right: -110px; top: 60px; background: rgba(86, 140, 105, .05); }

.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero h1 .accent { color: var(--primary-bright); }
.hero-lead { font-size: 1.125rem; color: var(--muted-foreground); max-width: 34em; margin-bottom: 1.8em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; font-size: .9375rem; color: var(--body-text); }
.trust-row svg { width: 18px; height: 18px; color: var(--primary-bright); flex: none; }

/* Inner-page hero */
.page-hero { padding: 72px 0 44px; background: var(--gradient-soft); }
.page-hero .lead { max-width: 52em; }
.page-hero-image { margin-top: 40px; }
.page-hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* --------------------------------------------------------------------------
   7. Quote strip (homepage compact form)
   -------------------------------------------------------------------------- */
.quote-strip { padding: 56px 0; background: var(--muted); border-block: 1px solid var(--border); }
.quote-strip-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; max-width: 960px; margin-inline: auto; }
.quote-strip h2 { font-size: 1.75rem; margin-bottom: .35em; }
.quote-strip p { font-size: .9375rem; color: var(--muted-foreground); }
.quote-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--border-strong); }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .9375rem; color: var(--muted-foreground); }
.card p:last-child { margin-bottom: 0; }
.card ul { font-size: .9375rem; color: var(--muted-foreground); padding-left: 0; list-style: none; margin-bottom: 1.15em; }
.card ul:last-child { margin-bottom: 0; }
.card ul li { position: relative; padding-left: 20px; }
.card ul li::before {
  content: ''; position: absolute; left: 3px; top: .62em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary-light);
}
.section--band .card ul { color: rgba(255,255,255,.85); }
.section--band .card ul li::before { background: #a7dcb9; }

.card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--primary-soft);
  display: grid; place-items: center; margin-bottom: 18px; color: var(--primary);
}
.card-icon svg { width: 22px; height: 22px; }

.card--center { text-align: center; }
.card--center .card-icon { margin-inline: auto; }

.section--band .card { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); box-shadow: none; }
.section--band .card p { color: rgba(255,255,255,.85); }
.section--band .card-icon { background: rgba(255,255,255,.14); color: #d8f0df; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; margin-bottom: 48px; }
.stat {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.stat-value { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: .9375rem; color: rgba(255,255,255,.85); margin-top: 10px; }

/* Panel (bordered feature block) */
.panel {
  background: var(--muted); border-radius: var(--radius-lg); padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.panel h3 { margin-bottom: .4em; }
.panel p { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }
.section--band .panel { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }
.section--band .panel p { color: rgba(255,255,255,.85); }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; margin: 0; font-size: .9375rem; }
.checklist svg { width: 18px; height: 18px; color: var(--primary-bright); flex: none; margin-top: 3px; }
.section--band .checklist svg { color: #a7dcb9; }

.pill-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm); padding: 12px 16px; font-size: .875rem; color: #fff;
}
.pill svg { width: 18px; height: 18px; color: #a7dcb9; flex: none; }

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.gallery figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px 20px; color: #fff; font-size: .9375rem; font-weight: 500;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0));
}

/* --------------------------------------------------------------------------
   10. Prose / long-form content
   -------------------------------------------------------------------------- */
.prose { max-width: 860px; margin-inline: auto; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; color: var(--heading); }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before {
  content: ''; position: absolute; left: 6px; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--primary-light);
}
.prose blockquote {
  margin: 1.6em 0; padding: 20px 24px; border-left: 3px solid var(--primary-light);
  background: var(--primary-softer); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--heading);
}

.callout {
  background: var(--primary-softer); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px; margin: 28px 0;
  font-size: .9375rem;
}
.callout strong { display: block; margin-bottom: .3em; }

/* Numbered steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; counter-reset: step; }
.steps > li {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; margin: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.steps > li::before {
  counter-increment: step; content: counter(step);
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); font-size: 1.0625rem;
}
.steps h3 { margin: 4px 0 .35em; font-size: 1.0625rem; }
.steps p { font-size: .9375rem; color: var(--muted-foreground); margin: 0; }

/* Table */
.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: .9375rem; background: #fff; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { background: var(--primary-softer); color: var(--heading); font-weight: 600; font-family: var(--font-display); }
tbody tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 28px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; color: var(--heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 2px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-body { padding: 0 0 20px; font-size: .9375rem; color: var(--muted-foreground); }

/* Related resources */
.related { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.related a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; font-weight: 500; color: var(--heading); box-shadow: var(--shadow-sm);
}
.related a:hover { text-decoration: none; border-color: var(--primary-light); color: var(--primary); }
.related svg { width: 18px; height: 18px; flex: none; color: var(--primary); }

/* Inline CTA band */
.cta-band {
  background: var(--gradient-band); color: #fff; border-radius: var(--radius-lg);
  padding: 40px; text-align: center; max-width: 860px; margin: 48px auto 0;
}
.cta-band h2 { color: #fff; font-size: 1.75rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 46em; margin-inline: auto; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* Download card */
.download-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center;
  background: var(--primary-softer); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 26px; margin: 32px 0;
}
.download-card .card-icon { margin: 0; background: #fff; }
.download-card h3 { margin-bottom: .3em; font-size: 1.125rem; }
.download-card p { margin: 0; font-size: .9375rem; color: var(--muted-foreground); }

/* Tag list */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag-list a {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 8px 18px; font-size: .875rem; color: var(--heading);
}
.tag-list a:hover { border-color: var(--primary-light); color: var(--primary); text-decoration: none; }

/* --------------------------------------------------------------------------
   11. Contact section + forms
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-grid h2 { margin-bottom: .4em; }
.contact-lead { color: var(--muted-foreground); margin-bottom: 1.6em; }
.contact-sub { font-weight: 600; color: var(--heading); margin-bottom: .8em; }

.info-chip { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.info-chip .card-icon { margin: 0; width: 40px; height: 40px; }
.info-chip small { display: block; color: var(--muted-foreground); font-size: .8125rem; }
.info-chip strong { display: block; color: var(--heading); font-size: 1rem; }

.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px; }
.form-card h3 { margin-bottom: 1em; font-size: 1.25rem; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: .875rem; font-weight: 500; color: var(--heading); margin-bottom: 7px; }
.field .req { color: #c0392b; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font: inherit; font-size: .9375rem; color: var(--foreground);
  background: #fff; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a7566' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea { min-height: 120px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(74, 158, 106, .16);
}
::placeholder { color: #9aada1; }

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

.form-status { margin-top: 16px; font-size: .9375rem; border-radius: var(--radius-sm); padding: 12px 14px; display: none; }
.form-status.is-success { display: block; background: var(--primary-soft); color: var(--primary-dark); }
.form-status.is-error   { display: block; background: #fdeceb; color: #a33227; }

button[disabled] { opacity: .65; cursor: progress; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--footer-bg); color: var(--footer-fg); padding: 64px 0 0; }
.site-footer a { color: var(--footer-fg); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 26px; width: auto; margin-bottom: 10px; }
.footer-brand .tagline { font-style: italic; color: #fff; margin-bottom: 1em; font-size: .9375rem; }
.footer-brand p { font-size: .875rem; color: rgba(215, 229, 219, .85); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1em; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: .6em; font-size: .9375rem; }

.cert-card {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 12px 16px;
}
.cert-card img { width: 42px; height: 42px; border-radius: 50%; background: #fff; }
.cert-card small { display: block; font-size: .75rem; color: rgba(215, 229, 219, .8); }
.cert-card strong { display: block; color: #fff; font-size: .875rem; font-weight: 600; }

.footer-bottom {
  margin-top: 56px; border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8125rem; color: rgba(215, 229, 219, .75);
}

/* --------------------------------------------------------------------------
   13. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pill-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { gap: 36px; }
}

@media (max-width: 880px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px; box-shadow: var(--shadow-md);
    display: none;
  }
  .site-header[data-nav-open="true"] .nav { display: flex; }
  .nav a, .nav button { justify-content: flex-start; padding: 12px; }
  .nav-dropdown { position: static; }
  .nav-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-left: 2px solid var(--border);
    border-radius: 0; padding: 0 0 0 12px; margin: 2px 0 6px 12px; min-width: 0;
    display: none;
  }
  .nav-dropdown[data-open="true"] .nav-menu { display: flex; transform: none; }
  .nav a.nav-cta { margin: 12px 0 0; justify-content: center; }

  .hero { padding: 56px 0; }
  .hero-inner, .quote-strip-inner, .contact-grid, .panel, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .stats { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .download-card { grid-template-columns: 1fr; text-align: left; }
  .form-card { padding: 24px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .pill-row { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps > li { grid-template-columns: 36px 1fr; gap: 14px; padding: 18px; }
  .steps > li::before { width: 34px; height: 34px; font-size: .9375rem; }
  .cta-band { padding: 28px 22px; }
}
