/* ============================================================
   Aboriginal Consultancy Group – Main Stylesheet
   Palette: Earthy ochre, terracotta, warm black, cream
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --ochre:       #C17A2A;
  --ochre-dark:  #9E5E18;
  --terracotta:  #A8522D;
  --sienna:      #7A3018;
  --gold:        #E8A444;
  --dark:        #1A0806;
  --dark-soft:   #2C1008;
  --cream:       #F7F0E6;
  --sand:        #E8D5B8;
  --sand-dark:   #C9B99A;
  --white:       #FDFAF6;
  --text-dark:   #1C1208;
  --text-mid:    #5C3D20;
  --text-light:  #8A6A4A;

  --nav-h:       72px;
  --radius:      6px;
  --shadow:      0 4px 20px rgba(28,18,8,.12);
  --transition:  .3s ease;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: .6rem;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--dark  { background: var(--dark); color: var(--cream); }
.section--dark p, .section--dark .section-label { color: var(--sand); }
.section--dark h2, .section--dark h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--ochre);
  color: var(--white);
  border-color: var(--ochre);
}
.btn-primary:hover {
  background: var(--ochre-dark);
  border-color: var(--ochre-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,122,42,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ochre);
  border-color: var(--ochre);
}
.btn-outline-dark:hover {
  background: var(--ochre);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  margin-left: 1.5rem;
  padding: .55rem 1.4rem;
  background: var(--ochre);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover { background: var(--ochre-dark) !important; transform: translateY(-1px) !important; }
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark-soft);
  padding: 1.5rem 5%;
  gap: 1.2rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,.08);
}

.nav__mobile a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(184,50,32,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(192,57,26,.18) 0%, transparent 70%),
    linear-gradient(135deg, #1A0806 0%, #2C1008 50%, #1A0806 100%);
}

/* Decorative dots pattern */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(193,122,42,.25) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .5;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 5% 80px;
  max-width: 720px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(193,122,42,.15);
  border: 1px solid rgba(193,122,42,.35);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  color: rgba(247,240,230,.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   IMPACT STATS
   ============================================================ */
.stats {
  background: var(--ochre);
  padding: 56px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-item__label {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-top: .4rem;
}

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .8rem;
  color: var(--text-light);
  font-size: .85rem;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
}

.img-placeholder svg {
  width: 40px; height: 40px;
  stroke: var(--sand-dark);
  fill: none;
}

.img-placeholder--tall { aspect-ratio: 3/4; }
.img-placeholder--wide { aspect-ratio: 16/7; }
.img-placeholder--sq   { aspect-ratio: 1/1; }

.about-text { display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1.2rem; }

/* ============================================================
   VISION
   ============================================================ */
.vision {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,50,32,.18) 0%, transparent 70%);
}

.vision__content { position: relative; z-index: 1; }

.vision__quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.vision__quote em { color: var(--gold); font-style: normal; }

.vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  text-align: left;
}

.pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(193,122,42,.1);
  border-color: rgba(193,122,42,.3);
  transform: translateY(-4px);
}

.pillar__icon {
  width: 48px; height: 48px;
  background: rgba(193,122,42,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; }

.pillar h4 { color: var(--white); margin-bottom: .5rem; }
.pillar p  { font-size: .9rem; color: rgba(247,240,230,.65); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(28,18,8,.18);
}

.service-card__img { position: relative; }
.service-card__img .img-placeholder { border-radius: 0; aspect-ratio: 16/9; }

.service-card__num {
  position: absolute;
  top: .8rem; right: .8rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  background: var(--ochre);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card__body p  { font-size: .9rem; line-height: 1.7; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ochre);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 1.2rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: .7rem; }

/* ============================================================
   TEAM
   ============================================================ */
.team__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); }

.team-card .img-placeholder {
  aspect-ratio: 1/1;
  border-radius: 0;
}

.team-card__body { padding: 1.4rem 1rem; }
.team-card__body h4 { margin-bottom: .2rem; }
.team-card__role {
  font-size: .82rem;
  color: var(--ochre);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.team-card__bio { font-size: .88rem; margin-top: .7rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }

.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: .8;
  color: var(--ochre);
  opacity: .2;
  position: absolute;
  top: 1rem; left: 1.5rem;
}

.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ochre);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: .9rem; color: var(--dark); }
.author-info span   { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   NEWS
   ============================================================ */
.news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover { transform: translateY(-5px); }

.news-card .img-placeholder {
  aspect-ratio: 16/9;
  border-radius: 0;
}

.news-card__tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.news-card__body { padding: 0 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card__body h4 { margin: .5rem 0 .6rem; line-height: 1.3; }
.news-card__body p  { font-size: .88rem; flex: 1; }
.news-card__date {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--ochre);
  font-weight: 600;
  font-size: .85rem;
  margin-top: .8rem;
  transition: gap var(--transition);
}
.news-card__link:hover { gap: .7rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ochre);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p  { color: rgba(253,250,246,.8); max-width: 560px; margin: 1rem auto 2rem; position: relative; }
.cta-banner .btn-actions { position: relative; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p   { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-detail__icon {
  width: 42px; height: 42px;
  background: var(--ochre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; }

.contact-detail strong { display: block; font-size: .85rem; color: var(--dark); }
.contact-detail span   { font-size: .9rem; color: var(--text-mid); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(193,122,42,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 60px) 5% 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 30% 50%, rgba(184,50,32,.2) 0%, transparent 70%);
}

.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .8rem; }
.page-hero p  { color: rgba(247,240,230,.7); max-width: 600px; }

.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #110403;
  color: rgba(247,240,230,.6);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__brand { padding-right: 1rem; }
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: .88rem; line-height: 1.65; }

.footer__col h5 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  color: rgba(247,240,230,.55);
  font-size: .88rem;
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom small {
  font-size: .8rem;
  color: rgba(247,240,230,.35);
}

.footer__social {
  display: flex;
  gap: .8rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-link:hover { background: var(--ochre); }
.social-link svg { width: 16px; height: 16px; stroke: var(--white); fill: none; }

/* ============================================================
   ANIMATIONS (fade-in on scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .vision__pillars { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .news__header { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat-item { border: none; border-bottom: 1px solid rgba(255,255,255,.15); }
}
