/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:         #1a2b4a;
  --navy-dark:    #0f1a2e;
  --navy-mid:     #2a3f6a;
  --green:        #4a7c35;
  --green-dark:   #2d5220;
  --green-light:  #f0f5ee;
  --text:         #1a202c;
  --text-mid:     #4a5568;
  --text-light:   #718096;
  --border:       #dde1e7;
  --white:        #ffffff;
  --bg-alt:       #f8f9fb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.13);
  --radius:       10px;
  --radius-lg:    16px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITIES ──────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,43,74,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  font-weight: 600;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-2px);
}

/* ─── NAV ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: background .3s ease, box-shadow .3s ease;
}
#navbar.nav-transparent {
  background: transparent;
  box-shadow: none;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: filter .3s;
}
#navbar.nav-transparent .nav-logo img { filter: brightness(0) invert(1); }
#navbar.scrolled .nav-logo img { filter: none; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text .sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}
#navbar.nav-transparent .nav-logo-text .brand { color: white; }
#navbar.nav-transparent .nav-logo-text .sub   { color: rgba(255,255,255,.65); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width .2s;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-links a.nav-active { font-weight: 600; }
#navbar.nav-transparent .nav-links a         { color: rgba(255,255,255,.88); }
#navbar.nav-transparent .nav-links a::after  { background: rgba(255,255,255,.8); }
#navbar.scrolled .nav-links a               { color: var(--navy); }
#navbar.scrolled .nav-links a::after        { background: var(--navy); }
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: .88rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}
#navbar.nav-transparent .nav-cta {
  background: transparent;
  border: 2px solid rgba(255,255,255,.45);
  color: white;
}
#navbar.nav-transparent .nav-cta:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
}
#navbar.scrolled .nav-cta {
  background: var(--navy);
  border: none;
  color: white;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
#navbar.nav-transparent .hamburger span { background: white; }
#navbar.scrolled        .hamburger span { background: var(--navy); }

/* Mobile open nav */
@media (max-width: 900px) {
  .nav-links.nav-open {
    display: flex !important;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    flex-direction: column;
    padding: 20px 28px 32px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav-links.nav-open a { color: var(--navy) !important; }
}

/* ─── PAGE HERO (interior pages) ─────────────────────── */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 100px 28px 64px;
  margin-top: 72px;
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  max-width: 700px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-top: 16px;
  line-height: 1.75;
  max-width: 620px;
}

/* ─── HOME HERO ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #132036 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 28px 80px;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#hero::after {
  content: '';
  position: absolute; right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,.03);
  pointer-events: none;
}
.hero-ring {
  position: absolute; right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 120px solid rgba(255,255,255,.02);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,53,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,124,53,.3); }
  50%       { box-shadow: 0 0 0 6px rgba(74,124,53,.12); }
}
.hero-badge span {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: #7fc45e; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s, background .25s;
}
.hero-card:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.hero-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-card-num sup { font-size: 1.2rem; }
.hero-card-label { font-size: .82rem; color: rgba(255,255,255,.58); font-weight: 500; line-height: 1.4; }
.hero-card.featured {
  grid-column: span 2;
  background: rgba(74,124,53,.14);
  border-color: rgba(74,124,53,.28);
}

/* ─── TRUST BAR ───────────────────────────────────────── */
#trust {
  padding: 40px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.trust-label {
  font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-light); white-space: nowrap;
}
.trust-divider { width: 1px; height: 20px; background: var(--border); }
.trust-items { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-item {
  font-size: .88rem; font-weight: 600;
  color: var(--text-mid); opacity: .55; transition: opacity .2s;
}
.trust-item:hover { opacity: .9; }

/* ─── PROBLEM ─────────────────────────────────────────── */
#problem { padding: 96px 28px; background: var(--bg-alt); }
.problem-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-title { margin-bottom: 20px; }
.problem-body {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 32px;
}
.problem-pain-points { display: flex; flex-direction: column; gap: 10px; }
.pain-point {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
  border-left: 3px solid #c0392b;
  background: white;
}
.pain-point-text { font-size: .92rem; color: var(--text-mid); font-weight: 500; }
.problem-callout {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.problem-callout-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 24px;
}
.problem-callout-items { display: flex; flex-direction: column; gap: 20px; }
.callout-item { display: flex; gap: 14px; align-items: flex-start; }
.callout-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.callout-title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.callout-sub { font-size: .85rem; color: var(--text-mid); line-height: 1.55; }
.problem-stat-row {
  display: flex; gap: 20px; margin-top: 28px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.problem-stat { text-align: center; flex: 1; }
.problem-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1;
}
.problem-stat-label { font-size: .76rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ─── SERVICES OVERVIEW ───────────────────────────────── */
#services { padding: 96px 28px; background: var(--white); }
.services-header {
  max-width: 1160px; margin: 0 auto 56px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.services-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: var(--bg-alt); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: all .28s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--border); transition: background .28s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; background: var(--white); }
.service-card:hover::before { background: var(--navy); }
.service-card.featured-service {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: transparent; color: var(--white); grid-column: span 2;
}
.service-card.featured-service::before { background: var(--green); }
.service-card.featured-service .service-title { color: var(--white); }
.service-card.featured-service .service-desc  { color: rgba(255,255,255,.78); }
.service-card.featured-service .service-link  { color: #7fc45e; }
.service-card.featured-service .service-link:hover { color: var(--white); }
.service-tag { margin-bottom: 12px; }
.tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.tag-featured {
  background: rgba(74,124,53,.18); color: #7fc45e;
  border: 1px solid rgba(74,124,53,.3);
}
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.service-desc  { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-feature { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.82); }
.service-feature-check { color: #7fc45e; flex-shrink: 0; margin-top: 1px; }
.service-link {
  font-size: .88rem; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 4px; transition: gap .2s;
}
.service-link:hover { gap: 8px; }

/* ─── STATS ───────────────────────────────────────────── */
#stats {
  padding: 96px 28px; background: var(--navy-dark);
  position: relative; overflow: hidden;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.stats-header { text-align: center; margin-bottom: 60px; }
.stats-header .section-label { color: #7fc45e; }
.stats-header .section-title { color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item {
  text-align: center; padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s;
}
.stat-item:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 10px; }
.stat-number span { color: #7fc45e; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.52); font-weight: 500; line-height: 1.4; }

/* ─── FEATURED TESTIMONIAL (home) ────────────────────── */
.featured-testimonial-wrap { padding: 96px 28px; background: var(--bg-alt); }
.featured-testimonial {
  max-width: 860px; margin: 0 auto;
  text-align: center; padding: 56px 60px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative;
}
.featured-testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem; color: rgba(26,43,74,.07);
  position: absolute; top: 16px; left: 44px; line-height: 1;
}
.featured-testimonial-stars { font-size: 1.1rem; color: #e8a000; letter-spacing: 3px; margin-bottom: 24px; }
.featured-testimonial-text {
  font-size: 1.2rem; color: var(--text-mid);
  line-height: 1.78; font-style: italic;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.featured-testimonial-author { display: flex; align-items: center; gap: 14px; justify-content: center; }

/* ─── TESTIMONIALS (grid — about page) ───────────────── */
.testimonials-section { padding: 96px 28px; background: var(--bg-alt); }
.testimonials-header { max-width: 1160px; margin: 0 auto 52px; text-align: center; }
.testimonials-header .section-subtitle { margin: 12px auto 0; }
.testimonials-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; border: 1px solid var(--border);
  transition: all .25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; font-size: 1rem; color: #e8a000; letter-spacing: 1px; }
.testimonial-quote { font-size: .95rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 28px; font-style: italic; }
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: .9rem; color: var(--text); }
.author-role  { font-size: .8rem; color: var(--text-light); margin-top: 2px; }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  padding: 96px 28px; background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,.04); pointer-events: none;
}
.cta-banner-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-banner-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #7fc45e; margin-bottom: 12px;
}
.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1.2;
}
.cta-banner-sub { font-size: 1rem; color: rgba(255,255,255,.62); margin-top: 10px; line-height: 1.65; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 64px 28px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px;
}
.footer-logo-img {
  display: none;
}
.footer-logo-text {
  display: flex !important; flex-direction: column; gap: 3px; margin-bottom: 16px;
}
.footer-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-logo-text .sub   { font-size: .68rem; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .08em; }
.footer-desc { font-size: .88rem; line-height: 1.75; margin-top: 16px; margin-bottom: 20px; color: rgba(255,255,255,.42); }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: rgba(255,255,255,.5); transition: all .2s;
  font-family: 'Inter', sans-serif;
}
.social-link:hover { background: var(--navy-mid); color: var(--white); border-color: transparent; }
.footer-col-title { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy  { font-size: .82rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.62); }

/* ─── SERVICE DETAIL SECTIONS (services.html) ────────── */
.service-detail { padding: 96px 28px; }
.service-detail-alt { background: var(--bg-alt); }
.service-detail-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.service-detail-text {}
.service-detail-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 800;
  color: rgba(26,43,74,.06); line-height: 1; margin-bottom: -10px;
}
.service-detail-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 16px; line-height: 1.25;
}
.service-detail-body { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.service-detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-detail-item { display: flex; align-items: flex-start; gap: 12px; font-size: .92rem; color: var(--text-mid); }
.service-detail-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.service-detail-visual {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 52px 44px; color: white;
  position: relative; overflow: hidden;
}
.service-detail-visual::before {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.service-detail-visual-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; line-height: 1.55;
  position: relative; z-index: 1;
}
.service-detail-visual-quote::before {
  content: '"'; display: block;
  font-size: 3.5rem; color: rgba(255,255,255,.18); line-height: .9; margin-bottom: 8px;
}
.service-detail-visual-stat { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); position: relative; z-index: 1; }
.service-detail-visual-stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; line-height: 1; color: #7fc45e; }
.service-detail-visual-stat-label { font-size: .85rem; color: rgba(255,255,255,.58); margin-top: 4px; }

/* Reverse layout for alternating sections */
.service-detail-inner.reverse .service-detail-text  { order: 2; }
.service-detail-inner.reverse .service-detail-visual { order: 1; }

/* ─── DATA TRAINING (services.html) ──────────────────── */
.training-section { padding: 96px 28px; background: var(--white); }
.training-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.training-title { margin-bottom: 16px; }
.training-body { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 32px; }
.training-steps { display: flex; flex-direction: column; gap: 24px; }
.training-step  { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 10px; background: var(--navy); color: var(--white);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.step-desc  { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.training-right-panel {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px 40px; color: var(--white);
  position: relative; overflow: hidden;
}
.training-right-panel::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.training-card-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #7fc45e; margin-bottom: 16px;
}
.training-card-title { font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin-bottom: 28px; position: relative; z-index: 1; }
.training-outcomes { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.training-outcome { background: rgba(255,255,255,.08); border-radius: 10px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.11); }
.outcome-title { font-weight: 700; font-size: .92rem; margin-bottom: 3px; }
.outcome-sub   { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.5; }

/* ─── ABOUT STORY ─────────────────────────────────────── */
.about-story { padding: 96px 28px; background: var(--white); }
.about-story-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-story-title { margin-bottom: 16px; }
.about-story-body { font-size: 1.05rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 24px; }
.about-story-quote {
  background: var(--navy-dark); border-radius: var(--radius-lg);
  padding: 48px 44px; color: white; position: relative; overflow: hidden;
}
.about-story-quote::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 6rem; color: rgba(255,255,255,.12);
  position: absolute; top: 16px; left: 32px; line-height: 1;
}
.about-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; line-height: 1.55;
  position: relative; z-index: 1; margin-top: 24px;
}
.about-quote-cite { font-size: .85rem; color: rgba(255,255,255,.52); margin-top: 20px; position: relative; z-index: 1; }

/* ─── TEAM PHOTO ─────────────────────────────────────── */
.team-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-caption {
  background: var(--navy-dark);
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.65;
  padding: 20px 26px;
}

/* ─── ABOUT VALUES ────────────────────────────────────── */
.about-values-section { padding: 96px 28px; background: var(--bg-alt); }
.about-values-inner { max-width: 1160px; margin: 0 auto; }
.about-values-header { text-align: center; margin-bottom: 64px; }
.about-values-header .section-subtitle { margin: 12px auto 0; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border); transition: all .25s;
}
.about-value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-value-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: rgba(26,43,74,.07); line-height: 1; margin-bottom: 4px; }
.about-value-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.about-value-desc  { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-section { padding: 80px 28px 96px; background: var(--white); }
.contact-section-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-info-title { margin-bottom: 16px; }
.contact-info-body  { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border); transition: all .22s;
}
.contact-method:hover { border-color: var(--navy); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-method-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-method-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 2px; }
.contact-method-value { font-size: .95rem; font-weight: 600; color: var(--text); }
.contact-expect { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.contact-expect-title { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 14px; }
.contact-expect-list { display: flex; flex-direction: column; gap: 8px; }
.contact-expect-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-mid); }
.contact-expect-check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.contact-form-wrap { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 44px 40px; border: 1px solid var(--border); }
.form-heading { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-sub { font-size: .9rem; color: var(--text-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: .95rem;
  font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content, .problem-inner, .about-story-inner,
  .contact-section-inner, .training-inner { grid-template-columns: 1fr; }
  .hero-right            { display: none; }
  .services-grid         { grid-template-columns: 1fr 1fr; }
  .service-card.featured-service { grid-column: span 2; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .footer-top            { grid-template-columns: 1fr 1fr; }
  .nav-links             { display: none; }
  .nav-cta               { display: none; }
  .hamburger             { display: flex; }
  .service-detail-inner  { grid-template-columns: 1fr; }
  .service-detail-inner.reverse .service-detail-text  { order: 0; }
  .service-detail-inner.reverse .service-detail-visual { order: 0; }
  .about-values-grid     { grid-template-columns: 1fr 1fr; }
  .team-photo            { height: 320px; }
  .cta-banner-inner      { flex-direction: column; align-items: flex-start; }
  .featured-testimonial  { padding: 40px 28px; }
  .featured-testimonial::before { display: none; }
  .page-hero             { padding: 90px 24px 52px; }
}
@media (max-width: 600px) {
  .services-grid         { grid-template-columns: 1fr; }
  .service-card.featured-service { grid-column: span 1; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .about-values-grid     { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .footer-top            { grid-template-columns: 1fr; }
  .footer-bottom         { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap     { padding: 28px 20px; }
}
