/* ── School Contact Initiative — Main Stylesheet ──
   Fonts are loaded via <link> in each page <head>.
   Page-specific styles live in css/faq.css, css/map.css, css/legal.css
   ────────────────────────────────────────────────── */

:root {
  --navy: #152644;
  --navy-light: #1e3660;
  --gold: #C83803;
  --gold-light: #E05020;
  --white: #FFFFFF;
  --off-white: #F8F6F4;
  --light-gray: #E8ECF2;
  --mid-gray: #5A6880;       /* darkened from #8A95A3 for contrast */
  --dark-text: #0F1E33;
  --body-text: #253347;      /* darkened for stronger contrast */
  --border: #C8D0DC;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.8;          /* up from 1.6 */
  font-size: 18px;           /* up from 16px — the single biggest legibility win */
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  color: var(--body-text);
  line-height: 1.9;          /* generous — easier to track across long lines */
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ─── NAV ─── */
.nav {
  background: var(--navy);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;              /* taller — easier to click */
}

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--white);
  font-size: 1.15rem;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;        /* up from 0.7rem */
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);  /* brighter than mid-gray */
  font-size: 0.95rem;        /* up from 0.88rem */
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;        /* bigger tap target */
  border-radius: 4px;
  font-weight: 600 !important;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--white) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;              /* bigger touch target */
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: 100px 5% 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,56,3,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  background: rgba(200,56,3,0.15);
  color: var(--gold);
  font-size: 0.82rem;        /* up from 0.72rem */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(200,56,3,0.35);
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.78);  /* brighter than the old #8A95A3 */
  font-size: 1.15rem;        /* up from 1.05rem */
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 500px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;        /* bigger */
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;           /* up from 0.9rem */
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 32px;        /* bigger */
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;           /* up from 0.9rem */
  border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

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

.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 34px;
}

.alias-demo {
  font-family: 'DM Sans', monospace;
}

.alias-demo-row {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.alias-demo-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.alias-label {
  font-size: 0.78rem;        /* up from 0.65rem */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

.alias-value {
  color: var(--white);
  font-size: 1rem;           /* up from 0.88rem */
  line-height: 1.7;
  word-break: break-all;
}

.alias-value .highlight {
  color: var(--gold);
}

.alias-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 8px 0;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 5%;         /* more breathing room */
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.82rem;        /* up from 0.72rem */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark p  { color: rgba(255,255,255,0.75); }  /* much more readable than #8A95A3 */
.section-dark h2 { color: var(--white); }
.section-dark h3 { color: var(--white); }

/* ─── VALUE PROPS ─── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;        /* more padding */
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.prop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(21,38,68,0.1);
}

.prop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 10px 10px 0 0;
}

.prop-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 14px;
}

.prop-card h3 {
  font-size: 1.15rem;        /* up from 1.05rem */
  margin-bottom: 12px;
  color: var(--dark-text);
}

.prop-card p {
  font-size: 1rem;           /* up from 0.9rem */
  line-height: 1.8;
}

/* Dark variant */
.section-dark .prop-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .prop-card p  { color: rgba(255,255,255,0.75); }
.section-dark .prop-card h3 { color: var(--white); }
.section-dark .prop-number  { color: rgba(255,255,255,0.07); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--gold);
  padding: 50px 5%;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;         /* bigger numbers */
  color: var(--white);
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-item p {
  font-size: 0.95rem;        /* up from 0.82rem */
  color: rgba(255,255,255,0.88);
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.5;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 760px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 660px;
}

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

.two-col-text h2     { margin-bottom: 22px; }
.two-col-text p      { margin-bottom: 18px; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 820px;
  margin-top: 48px;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;           /* taller — easier to click */
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;        /* up from 1.05rem */
  font-weight: 600;
  color: var(--dark-text);
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;               /* bigger */
  height: 34px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 28px;
  color: var(--body-text);
  font-size: 1rem;           /* explicit size — no smaller */
  line-height: 1.9;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── LIBRARY / SCENARIOS ─── */
.scenario-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 14px 24px;        /* bigger tap target */
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;        /* up from 0.88rem */
  font-weight: 500;
  color: var(--mid-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tab-btn:hover {
  color: var(--dark-text);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 700;
}

.scenario-panel {
  display: none;
}

.scenario-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.scenario-tag {
  display: inline-block;
  background: rgba(200,56,3,0.1);
  color: var(--gold);
  font-size: 0.78rem;        /* up from 0.7rem */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.scenario-panel h2 {
  margin-bottom: 20px;
}

.scenario-panel p {
  margin-bottom: 18px;
  font-size: 1rem;           /* explicit — don't let it shrink */
  line-height: 1.9;
}

.scenario-callout {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px;
  color: var(--white);
}

.scenario-callout h4 {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;        /* up from 0.7rem */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.scenario-callout ul {
  list-style: none;
  padding: 0;
}

.scenario-callout li {
  padding: 13px 0;           /* taller rows */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);   /* much brighter than #8A95A3 */
  font-size: 0.95rem;        /* up from 0.88rem */
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.scenario-callout li:last-child {
  border-bottom: none;
}

.scenario-callout li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── ABOUT / MI TABLE ─── */
.mi-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-size: 1rem;           /* up from 0.88rem */
}

.mi-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 16px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;        /* up from 0.72rem */
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

.mi-table td {
  padding: 16px 20px;        /* more padding */
  border-bottom: 1px solid var(--border);
  color: var(--body-text);
  vertical-align: top;
  line-height: 1.7;
}

.mi-table tr:last-child td {
  border-bottom: none;
}

.mi-table tr:hover td {
  background: var(--light-gray);
}

.mi-table td:first-child {
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 52px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;                 /* more breathing room between fields */
}

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

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

.form-group label {
  font-size: 0.9rem;         /* up from 0.78rem */
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 5px;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

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

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;                 /* more space */
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;        /* up from 0.8rem */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 1rem;           /* up from 0.92rem */
  color: var(--dark-text);
  margin: 0;
  line-height: 1.7;
}

.phase-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 34px;
  margin-top: 36px;
  color: var(--white);
}

.phase-box h4 {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;        /* up from 0.7rem */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.phase-box p {
  color: rgba(255,255,255,0.82);   /* much brighter than old #8A95A3 */
  font-size: 1rem;           /* up from 0.88rem */
  line-height: 1.85;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 5% 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;        /* up from 0.88rem */
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.75;
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;        /* up from 0.7rem */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;       /* more spacing */
}

.footer-col a {
  color: rgba(255,255,255,0.65);   /* brighter than 0.5 */
  font-size: 0.95rem;        /* up from 0.88rem */
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-legal-links span {
  color: rgba(255,255,255,0.25);
  font-size: 0.88rem;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 5%;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.9rem;         /* up from 0.78rem */
  color: var(--mid-gray);
}

.breadcrumb-inner a {
  color: var(--mid-gray);
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  color: var(--gold);
}

.breadcrumb-inner span {
  color: var(--dark-text);
  font-weight: 600;
}

/* ─── UTILITIES ─── */
.text-center  { text-align: center; }
.mb-8         { margin-bottom: 8px; }
.mb-16        { margin-bottom: 16px; }
.mb-24        { margin-bottom: 24px; }
.mb-40        { margin-bottom: 40px; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-32        { margin-top: 32px; }

.divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 52px 0;
}

.highlight-box {
  background: var(--off-white);
  border-left: 5px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.highlight-box p {
  font-size: 1.05rem;        /* up from 0.95rem */
  margin: 0;
  line-height: 1.85;
  color: var(--body-text);
}

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .scenario-panel.active {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  /* hide sidebar on FAQ */
  .faq-sidebar {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 5%;
    border-bottom: 3px solid var(--gold);
    gap: 0;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;         /* taller rows on mobile */
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body { font-size: 17px; }  /* slight reduction on very small screens only */

  /* Contact form — full-width button and tighter padding */
  .contact-form .btn-primary {
    width: 100% !important;
    text-align: center;
  }
  .contact-grid {
    gap: 40px;
  }
  .hero  { padding: 70px 5% 64px; }
  .section { padding: 72px 5%; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeInUp 0.6s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
