/* ==========================================================================
   7 Pijlers — stylesheet
   ========================================================================== */

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

:root {
  --navy: #004d6b;
  --navy-soft: #00719c;
  --accent: #0793fc;
  --accent-dark: #056ebd;
  --accent-soft: #ebf6fe;
  --accent-soft-text: #0466b0;
  --green: #76f7ad;
  --green-dark: #3fae72;
  --cream: #f2fafd;
  --text: #3c3c3c;
  --text-light: #5c6b72;
  --white: #ffffff;
  --border: #dcedf5;
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0, 77, 107, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 77, 107, 0.12);
  --font-head: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --container: 1180px;
}

/* Reset ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}
p { margin: 0; }
button { font-family: inherit; }
svg { flex-shrink: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* Section rhythm ----------------------------------------------------------*/
section { position: relative; }
.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 14px; }
.section-head p { color: var(--text-light); margin-top: 16px; font-size: 1.05rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.7); }

/* Pill / eyebrow ----------------------------------------------------------*/
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-soft-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(7, 147, 252, 0.25);
}
.section--navy .pill {
  background: rgba(255,255,255,0.1);
  color: #7dd8ff;
  border-color: rgba(255,255,255,0.15);
}

/* Buttons ------------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.section--navy .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.section--navy .btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 2px solid transparent;
  transition: gap .15s ease;
}
.text-link:hover { gap: 12px; }

/* Blobs ---------------------------------------------------------------------*/
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.blob--accent { background: radial-gradient(circle at 30% 30%, rgba(7,147,252,0.16), rgba(7,147,252,0)); }
.blob--navy { background: radial-gradient(circle at 30% 30%, rgba(0,77,107,0.08), rgba(0,77,107,0)); }

/* Header ---------------------------------------------------------------------*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,77,107,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
  max-width: 1340px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.main-nav { display: flex; align-items: center; gap: 0; flex-shrink: 1; }
.main-nav > li { position: relative; }
.main-nav a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 11px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--accent-dark); background: var(--accent-soft); }
.main-nav a.is-active { color: var(--accent-dark); }
.main-nav .chev { width: 13px; height: 13px; color: var(--text-light); transition: transform .15s ease; }
.main-nav > li:hover > a .chev { transform: rotate(180deg); color: var(--accent); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 50;
}
.main-nav > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a { display: block; padding: 10px 14px; font-size: 0.88rem; border-radius: var(--radius-sm); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  white-space: nowrap;
}
.header-phone svg { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); background: var(--navy); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); background: var(--navy); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 13px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 14px; }
.mobile-nav-group { border-bottom: 1px solid var(--border); }
.mobile-nav-group .group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 6px;
  font-weight: 600;
  background: none;
  border: 0;
  text-align: left;
}
.mobile-nav-group .group-toggle svg { transition: transform .15s ease; color: var(--text-light); }
.mobile-nav-group.is-open .group-toggle svg { transform: rotate(180deg); }
.mobile-nav-sub { display: none; flex-direction: column; padding: 0 6px 12px 16px; gap: 2px; }
.mobile-nav-group.is-open .mobile-nav-sub { display: flex; }
.mobile-nav-sub a { border-bottom: 0; padding: 9px 6px; font-weight: 500; font-size: 0.92rem; color: var(--text-light); }

/* FAQ accordion --------------------------------------------------------------------------*/
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.faq-question svg { color: var(--accent); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer-inner { padding: 0 26px 24px; color: var(--text-light); font-size: 0.95rem; }
.faq-item.is-open .faq-answer { max-height: 320px; }

/* Value promises (icon + text row) ------------------------------------------------------------*/
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promise-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.promise-card .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promise-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.promise-card p { color: var(--text-light); font-size: 0.92rem; }

/* Simple two-col info list (audience pages) ---------------------------------------------------*/
.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-list-item { display: flex; gap: 18px; }
.info-list-item .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-list-item h3 { font-size: 1rem; margin-bottom: 6px; }
.info-list-item p { color: var(--text-light); font-size: 0.94rem; }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-row .pill { background: var(--white); }

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

/* Hero -----------------------------------------------------------------------*/
.hero {
  background: var(--cream);
  overflow: hidden;
  padding: 76px 0 90px;
}
.hero .blob--one { width: 420px; height: 420px; top: -140px; right: -80px; }
.hero .blob--two { width: 280px; height: 280px; bottom: -100px; right: 18%; }
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-top: 18px;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,77,107,0.1);
  position: relative;
  z-index: 1;
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-light); font-weight: 500; }
.hero-meta-item svg { color: var(--accent); }

/* Welcome / two-column ---------------------------------------------------------*/
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(155deg, var(--navy), var(--navy-soft));
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.split-media .pillar-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.9;
}
.split-media .media-caption {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: rgba(0,77,107,0.55);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.split-copy .pill { margin-bottom: 18px; }
.split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.split-copy p { color: var(--text-light); font-size: 1.02rem; }
.split-copy p + p { margin-top: 14px; }
.check-list { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.check-list svg { color: var(--accent); margin-top: 2px; }
.split-copy .btn { margin-top: 30px; }

/* Pillars grid --------------------------------------------------------------*/
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.pillar-card .num {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent-soft-text);
  background: var(--accent-soft);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pillar-card p { color: var(--text-light); font-size: 0.92rem; }

/* Stats -----------------------------------------------------------------------*/
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-card { padding: 10px; }
.stat-card .value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--accent);
}
.stat-card .label {
  margin-top: 10px;
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
  opacity: 0.85;
}

/* Cards / services --------------------------------------------------------------*/
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); }
.service-card .text-link { margin-top: 18px; }
.service-card ul.detail-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.service-card ul.detail-list li { display:flex; gap:10px; font-size:0.92rem; color:var(--text-light); }
.service-card ul.detail-list svg { color: var(--accent); flex-shrink:0; margin-top:3px; }

/* Steps ---------------------------------------------------------------------------*/
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.step .step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.94rem; }

/* CTA banner -----------------------------------------------------------------------*/
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 460px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Callback form panel ----------------------------------------------------------------*/
.callback-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.callback-panel h2 { font-size: 1.4rem; margin-bottom: 10px; }
.callback-panel p { color: var(--text-light); margin-bottom: 26px; }
.form-row { display: flex; flex-direction: column; gap: 6px; text-align: left; margin-bottom: 16px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--accent-dark); font-weight: 600; }
.form-success { display: none; text-align: center; }
.form-success.is-visible { display: block; }
.form-success svg { color: var(--accent); margin-bottom: 10px; }
form.is-hidden { display: none; }

/* Contact page ---------------------------------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  border: 1px solid var(--border);
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a { color: var(--text-light); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--accent-dark); }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
  height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Portfolio ------------------------------------------------------------------------------*/
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.portfolio-media {
  height: 180px;
  background: linear-gradient(155deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.portfolio-body { padding: 24px 22px; }
.portfolio-body .tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-dark); }
.portfolio-body h3 { font-size: 1.05rem; margin: 10px 0 8px; }
.portfolio-body p { color: var(--text-light); font-size: 0.92rem; }
.portfolio-note {
  margin-top: 40px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent-soft-text);
  font-size: 0.92rem;
  border: 1px solid rgba(7,147,252,0.2);
}

/* Page hero (inner pages) -----------------------------------------------------------------*/
.page-hero {
  background: var(--cream);
  padding: 64px 0 70px;
  overflow: hidden;
}
.page-hero .pill { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 680px; }
.page-hero p.lead { margin-top: 18px; color: var(--text-light); max-width: 640px; font-size: 1.05rem; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:0.85rem; color: var(--text-light); margin-bottom: 20px; position:relative; z-index:1; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* Footer ---------------------------------------------------------------------------------*/
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--accent); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--white); }

/* Responsive -------------------------------------------------------------------------------*/
@media (max-width: 980px) {
  .main-nav, .header-actions .btn, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { min-height: 300px; order: -1; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid, .steps, .team-grid, .testimonial-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .cta-banner { padding: 40px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pillars-grid, .cards-grid, .steps, .team-grid, .testimonial-grid, .portfolio-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info-card { padding: 28px 24px; }
  .callback-panel { padding: 30px 24px; }
}

/* Access gate ------------------------------------------------------------------------------*/
html.gate-locked body { overflow: hidden; }
.gate-overlay { display: none; }
html.gate-locked .gate-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  padding: 24px;
}
.gate-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 44px 36px;
  text-align: center;
}
.gate-card .logo { justify-content: center; margin-bottom: 22px; }
.gate-card h1 { font-size: 1.3rem; margin-bottom: 10px; }
.gate-card p { color: var(--text-light); font-size: 0.94rem; margin-bottom: 26px; }
.gate-card input {
  width: 100%;
  text-align: center;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
}
.gate-card input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.gate-card .gate-error {
  display: none;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.gate-card.is-error .gate-error { display: block; }
.gate-card.is-error input { animation: gate-shake 0.3s; border-color: var(--accent-dark); }
@keyframes gate-shake {
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
