/* ============================================================
   AdministroTI · CSS
   Paleta: #F4F9F9 #CCF2F4 #A4EBF3 #AAAAAA
   Tipografía: Space Grotesk (display) + Inter (body)
   ============================================================ */

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

:root {
  --bg:       #F4F9F9;
  --teal-lt:  #CCF2F4;
  --teal:     #A4EBF3;
  --teal-dk:  #6DD8E4;
  --gray:     #AAAAAA;
  --gray-lt:  #E8F0F0;
  --gray-dk:  #555555;
  --black:    #111111;
  --white:    #FFFFFF;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);

  --nav-h: 68px;
  --section-pad: 96px;
  --container-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography Scale ──────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dk);
  margin-bottom: 12px;
}

.accent-text { color: var(--teal-dk); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: #222; }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-ghost:hover { background: var(--gray-lt); }

.btn-full { width: 100%; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered h2 { max-width: 700px; margin: 0 auto 16px; }
.section-desc { color: var(--gray-dk); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* ── Navigation ────────────────────────────────────────────── */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(244,249,249,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--teal-lt);
  transition: box-shadow .2s;
}
.nav-header.scrolled { box-shadow: var(--shadow-md); }

.nav-logo-administro-padre {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
.nav-logo-administro {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: var(--c-text);
    }
    .nav-logo-sub {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--c-text-mute);
      margin-top: 1px;
    }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 25px; height: 25px;
  /* background: var(--black); */
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo-text strong { font-weight: 700; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
}
.nav-links li a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-dk);
  transition: color .15s, background .15s;
}
.nav-links li a:hover { color: var(--black); background: var(--teal-lt); }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #222 !important; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 38px; height: 38px;
  background: none; border: none; cursor: pointer; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--black);
  transition: transform .25s, opacity .2s;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 40%, var(--teal-lt) 100%);
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--teal-lt) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal-lt) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .45;
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  max-width: 700px;
}

.hero-eyebrow { margin-bottom: 20px; }

.hero-title {
  margin-bottom: 24px;
  letter-spacing: -.025em;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--gray-dk);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
}
.stat-label { font-size: .78rem; color: var(--gray); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--teal-lt); }

/* Dashboard preview */
.hero-dashboard-preview {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 540px;
  z-index: 1;
}

/* AdministroTI preview inicio   */
.img-sistema-inicio{
  max-width: 700px;
}

@media(max-width: 1100px) {
  .hero-dashboard-preview { position: relative; right: auto; top: auto; transform: none; width: 100%; margin-top: 48px; max-width: 600px; }
  .hero-inner { max-width: 100%; }
}

.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--teal-lt);
}

.mockup-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 10px 14px;
  background: var(--gray-lt);
  border-bottom: 1px solid var(--teal-lt);
}
.mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal-lt);
}
.mockup-bar span:nth-child(1) { background: #f4a4a4; }
.mockup-bar span:nth-child(2) { background: #f4d4a4; }
.mockup-bar span:nth-child(3) { background: #a4f4c4; }

.mockup-body { display: flex; min-height: 340px; }

.mockup-sidebar {
  width: 130px; flex-shrink: 0;
  background: var(--black);
  padding: 16px 12px;
}
.mock-logo {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--teal); margin-bottom: 20px; padding-left: 4px;
}
.mock-logo strong { color: var(--white); }

.mockup-sidebar ul { display: flex; flex-direction: column; gap: 2px; }
.mockup-sidebar li {
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  color: var(--gray);
  cursor: default;
  transition: background .15s, color .15s;
}
.mockup-sidebar li.active,
.mockup-sidebar li:hover { background: var(--teal); color: var(--black); font-weight: 600; }

.mockup-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.mockup-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.mock-section-title { font-family: var(--font-display); font-size: .85rem; font-weight: 600; }
.mock-badge {
  font-size: .7rem; font-weight: 600;
  background: var(--teal-lt); color: var(--teal-dk);
  padding: 3px 9px; border-radius: 20px;
}

.mockup-cards { display: flex; flex-direction: column; gap: 7px; }

.mock-card {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--teal-lt);
}
.mock-card-icon {
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  background: var(--teal-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.mock-card-icon.laptop::after { content: '💻'; }
.mock-card-icon.printer::after { content: '🖨️'; }
.mock-card-icon.monitor::after { content: '🖥️'; }
.mock-card-icon.scanner::after { content: '🔍'; }

.mock-card-name { font-size: .75rem; font-weight: 600; }
.mock-card-sub { font-size: .65rem; color: var(--gray); margin-top: 1px; }
.mock-card > div:last-child { margin-left: auto; flex-shrink: 0; }

.mock-card-status {
  font-size: .65rem; font-weight: 600;
  padding: 3px 8px; border-radius: 20px;
}
.mock-card-status.ok { background: #d4f4e4; color: #1a7a4a; }
.mock-card-status.warn { background: #fff3cd; color: #856404; }
.mock-card-status.inactive { background: #f4e4e4; color: #7a1a1a; }

/* ── What Section ──────────────────────────────────────────── */
.section-what {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.what-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--teal-lt);
  background: var(--bg);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }

.what-icon { font-size: 1.8rem; margin-bottom: 14px; }
.what-card h3 { margin-bottom: 10px; font-size: 1rem; }
.what-card p { font-size: .9rem; color: var(--gray-dk); line-height: 1.6; }

/* ── Features Section ──────────────────────────────────────── */
.section-features { padding: var(--section-pad) 0; }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-dk);
  background: var(--teal-lt);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}

.feature-text h3 { margin-bottom: 14px; }
.feature-text p { color: var(--gray-dk); margin-bottom: 20px; line-height: 1.7; }

.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .92rem; color: var(--gray-dk);
}
.feature-list li::before {
  content: '→';
  color: var(--teal-dk);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Feature Visual Cards */
.fv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--teal-lt);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.fv-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.fv-title { font-family: var(--font-display); font-size: .88rem; font-weight: 600; }
.fv-badge {
  font-size: .72rem; font-weight: 600;
  background: var(--teal-lt); color: var(--teal-dk);
  padding: 3px 10px; border-radius: 20px;
}
.fv-badge.warn { background: #fff3cd; color: #856404; }

.fv-device-icon { font-size: 2.4rem; text-align: center; margin: 12px 0 8px; }
.fv-name { text-align: center; font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 18px; }

.fv-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.fv-spec {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 8px 12px; border: 1px solid var(--teal-lt);
  display: flex; flex-direction: column; gap: 2px;
}
.fv-spec span { font-size: .7rem; color: var(--gray); }
.fv-spec strong { font-size: .78rem; }

.fv-barcode {
  text-align: center;
  padding: 12px; background: var(--bg); border-radius: var(--radius-sm);
}
.barcode-lines {
  height: 32px;
  background: repeating-linear-gradient(
    90deg,
    var(--black) 0px, var(--black) 2px,
    transparent 2px, transparent 4px,
    var(--black) 4px, var(--black) 5px,
    transparent 5px, transparent 8px
  );
  margin-bottom: 6px; border-radius: 2px;
}
.fv-barcode span { font-size: .68rem; color: var(--gray); font-family: monospace; }

/* Tickets */
.ticket-list { display: flex; flex-direction: column; gap: 10px; }
.ticket-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--bg);
  border-radius: var(--radius-sm); border-left: 3px solid var(--gray-lt);
}
.ticket-item.high { border-left-color: #e44; }
.ticket-item.mid  { border-left-color: #fa4; }
.ticket-item.low  { border-left-color: var(--teal-dk); }

.ticket-priority {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ticket-item.high .ticket-priority { background: #e44; }
.ticket-item.mid  .ticket-priority { background: #fa4; }
.ticket-item.low  .ticket-priority { background: var(--teal-dk); }

.ticket-info { flex: 1; }
.ticket-title { font-size: .82rem; font-weight: 600; }
.ticket-meta  { font-size: .7rem; color: var(--gray); margin-top: 2px; }
.ticket-status {
  font-size: .68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; flex-shrink: 0;
}
.ticket-status.open   { background: #fde8e8; color: #c0392b; }
.ticket-status.proc   { background: #fff3cd; color: #856404; }
.ticket-status.solved { background: #d4f4e4; color: #1a7a4a; }

/* Software */
.software-list { display: flex; flex-direction: column; gap: 10px; }
.sw-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--bg);
  border-radius: var(--radius-sm); border: 1px solid var(--teal-lt);
}
.sw-icon { font-size: 1.4rem; flex-shrink: 0; }
.sw-info { flex: 1; }
.sw-name { font-size: .82rem; font-weight: 600; }
.sw-sub  { font-size: .7rem; color: var(--gray); margin-top: 2px; }
.sw-expiry {
  font-size: .68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; flex-shrink: 0;
}
.sw-expiry.ok   { background: #d4f4e4; color: #1a7a4a; }
.sw-expiry.warn { background: #fff3cd; color: #856404; }

/* Label card */
.label-preview { margin: 16px 0; }
.label-box {
  border: 2px dashed var(--teal); border-radius: var(--radius-md);
  padding: 16px; text-align: center; background: var(--bg);
}
.label-company { font-size: .65rem; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.label-asset-name { font-family: var(--font-display); font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.label-id { font-size: .72rem; color: var(--gray-dk); margin-bottom: 12px; font-family: monospace; }

.label-barcode-visual { margin-bottom: 8px; }
.bar-group { display: flex; align-items: flex-end; justify-content: center; gap: 1px; height: 40px; margin-bottom: 4px; }
.bar { background: var(--black); height: 100%; border-radius: 1px; }
.bar.w1 { width: 2px; }
.bar.w2 { width: 3px; }
.bar.w3 { width: 5px; }
.bar-code-num { font-family: monospace; font-size: .62rem; color: var(--gray-dk); display: block; }

.label-area { font-size: .72rem; color: var(--gray-dk); }
.label-print-btn {
  width: 100%; padding: 10px;
  background: var(--black); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: background .15s;
}
.label-print-btn:hover { background: #333; }

/* ── Highlights ────────────────────────────────────────────── */
.section-highlights {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.highlight-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--teal-lt);
  background: var(--bg);
  transition: transform .2s, box-shadow .2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.highlight-card.primary-card {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.highlight-card.primary-card p { color: #bbb; }

.hc-icon { font-size: 2rem; margin-bottom: 14px; }
.highlight-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.highlight-card p { font-size: .9rem; color: var(--gray-dk); line-height: 1.65; }

/* ── Assets Carousel ───────────────────────────────────────── */
.section-assets {
  padding: var(--section-pad) 0;
  background: var(--teal-lt);
  overflow: hidden;
}

.assets-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.assets-scroll-wrapper::before,
.assets-scroll-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 80px;
}
.assets-scroll-wrapper::before { left: 0; background: linear-gradient(90deg, var(--teal-lt), transparent); }
.assets-scroll-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--teal-lt), transparent); }

.assets-track {
  display: flex; gap: 14px;
  animation: scroll-x 28s linear infinite;
  width: max-content;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.asset-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1.5px solid var(--teal);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: background .15s, transform .15s;
}
.asset-chip:hover { background: var(--teal); transform: scale(1.04); }

/* ── Family Section ────────────────────────────────────────── */
.section-family {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.family-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}

.family-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--teal-lt);
  background: var(--white);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.family-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.family-card.active-product {
  border-color: var(--teal-dk);
  background: var(--teal-lt);
}
.family-card.coming { opacity: .7; }

.family-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: .7rem; font-weight: 700;
  background: var(--black); color: var(--teal);
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.coming-badge { background: var(--gray); color: var(--white); }

.family-icon { font-size: 2.4rem; margin-bottom: 12px; margin-top: 10px; }
.family-name { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.family-name strong { font-weight: 800; }
.family-card p { font-size: .88rem; color: var(--gray-dk); }

.caomi-footer {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--teal-lt);
}
.caomi-label { font-size: .88rem; color: var(--gray-dk); }
.caomi-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--black);
  background: var(--teal);
  padding: 2px 14px; border-radius: 8px;
}

/* ── Contact Section ───────────────────────────────────────── */
.section-contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}

.contact-text .eyebrow { margin-bottom: 10px; }
.contact-text h2 { margin-bottom: 16px; }
.contact-text p { color: var(--gray-dk); margin-bottom: 24px; line-height: 1.7; }

.contact-points { display: flex; flex-direction: column; gap: 10px; }
.contact-points li { font-size: .93rem; color: var(--gray-dk); display: flex; align-items: center; gap: 8px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .82rem; font-weight: 600;
  color: var(--gray-dk);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--teal-lt);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--black);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-dk);
  box-shadow: 0 0 0 3px rgba(164,235,243,.35);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  padding: 12px 16px;
  background: var(--teal-lt);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: #1a6a70;
  text-align: center;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex; justify-content: space-between; gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-brand .logo-mark { background: var(--teal); color: var(--black); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .82rem; color: #888; margin-top: 12px; line-height: 1.6; }
.footer-brand p strong { color: var(--teal); }

.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #888; margin-bottom: 4px;
}
.footer-col a { font-size: .88rem; color: #aaa; transition: color .15s; }
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  font-size: .78rem;
  color: #555;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .hero-inner { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--teal-lt);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s, opacity .3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; width: 100%; padding: 10px 14px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }

  /* Grids */
  .what-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .fv-specs { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ── Scroll reveal animation ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-lt); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
