/* ================================================================
   AETHYRA CONSULTING GROUP — Main Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:        #0d1f35;
  --navy-mid:    #142840;
  --teal:        #1a7a8a;
  --teal-light:  #22a8bc;
  --teal-bright: #2ec4d6;
  --gold:        #c9a84c;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --light-gray:  #eef1f5;
  --mid-gray:    #9aa3af;
  --text-dark:   #0d1f35;
  --text-body:   #3a4a5c;
  --text-muted:  #6b7a8d;
  --border:      rgba(26, 122, 138, 0.15);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 31, 53, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 32px 0 8px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  animation: slideDown 0.6s ease both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 210px;
}
.logo-img {
  /* Show full logo — mix-blend-mode:screen makes the black
     JPEG background disappear against the dark nav */
  width: 210px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.5) contrast(1.2) saturate(1.15);
  display: block;
}

.nav-links {
  display: flex; gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--teal-bright);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover         { color: var(--white); }
.nav-links a:hover::after  { transform: scaleX(1); }
.nav-links a.active        { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  margin-left: 16px;
}
.nav-cta:hover        { background: var(--teal-light) !important; transform: translateY(-1px); }
.nav-cta::after       { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,122,138,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(13,50,90,0.5)   0%, transparent 60%),
    linear-gradient(135deg, #0a1828 0%, #0d2540 40%, #0f2e50 100%);
}
.hero-grid {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.2;
}
.hero-grid::before {
  content: '';
  position: absolute; inset: -50%;
  background-image:
    linear-gradient(rgba(46,196,214,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,214,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(35deg) translateY(-10%);
  animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll {
  from { transform: perspective(600px) rotateX(35deg) translateY(-10%); }
  to   { transform: perspective(600px) rotateX(35deg) translateY(10%);  }
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,214,0.15), transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; bottom: 50px; right: 30%; animation-delay: -3s; }
.hero-orb-3 { width: 200px; height: 200px; top: 40%; left: 10%; animation-delay: -5s; }
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-30px) scale(1.05); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 0 48px 120px; /* bottom padding clears the stats bar */
  margin-left: max(48px, calc((100vw - 1280px)/2));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal-bright);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--teal-bright);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero-headline em { font-style: normal; color: var(--teal-bright); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 520px; margin-bottom: 44px;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  animation: fadeUp 0.8s 0.65s both;
}
.scroll-indicator {
  position: absolute; bottom: 120px; left: 48px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 1.1s both;
}
.scroll-indicator::before {
  content: '';
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; }
  50%     { opacity: 0.8; }
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  display: flex; justify-content: center;
  animation: fadeUp 0.8s 0.9s both;
}
.hero-stats-inner {
  display: flex; max-width: 900px; width: 100%; padding: 0 48px;
}
.stat-item {
  flex: 1; padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--teal-bright); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26,122,138,0.35);
  cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,122,138,0.45); color: var(--white); }

.btn-ghost {
  color: rgba(255,255,255,0.8);
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--teal-bright); color: var(--teal-bright); background: rgba(46,196,214,0.05); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-outline-white {
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-case {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 13px 26px; border-radius: 4px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-case:hover { background: var(--teal-light); color: var(--white); }

/* ─── SECTION COMMONS ────────────────────────────────────────── */
section { padding: 96px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--teal);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: var(--text-dark); line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: var(--text-muted); max-width: 580px;
}

/* ─── EXPERTISE ──────────────────────────────────────────────── */
.expertise { background: var(--off-white); }
.expertise-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.expertise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.expertise-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.expertise-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(13,31,53,0.12); z-index: 1; }
.expertise-card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,122,138,0.1), rgba(46,196,214,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.expertise-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(26,122,138,0.2), rgba(46,196,214,0.15));
}
.card-icon svg { color: var(--teal); }
.card-num {
  position: absolute; top: 32px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700;
  color: rgba(13,31,53,0.04); line-height: 1;
  pointer-events: none; transition: color 0.3s;
}
.expertise-card:hover .card-num { color: rgba(26,122,138,0.07); }
.card-title { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; line-height: 1.3; }
.card-desc  { font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--text-muted); }

/* ─── SPLIT SECTION ──────────────────────────────────────────── */
.split-section { background: var(--white); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 0 64px;
}
.split-divider { background: var(--light-gray); margin: 0; }
.industry-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.industry-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 8px; padding: 24px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.industry-card:hover { border-color: var(--teal-light); background: rgba(26,122,138,0.03); transform: translateY(-2px); }
.industry-icon {
  width: 40px; height: 40px;
  background: rgba(26,122,138,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.industry-name  { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.industry-desc  { font-size: 12.5px; font-weight: 300; line-height: 1.55; color: var(--text-muted); }

.why-list { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px; border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.why-item:hover { border-color: var(--border); background: rgba(26,122,138,0.02); }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.why-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.why-text p      { font-size: 13px; font-weight: 300; line-height: 1.6; color: var(--text-muted); }

/* ─── CONTENT SECTION ────────────────────────────────────────── */
.content-section { background: var(--off-white); }
.content-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.insights-grid { display: flex; flex-direction: column; gap: 20px; }
.insight-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  display: flex; border: 1px solid var(--light-gray);
  transition: box-shadow 0.25s, transform 0.25s; cursor: pointer;
}
.insight-card:hover { box-shadow: 0 8px 32px rgba(13,31,53,0.09); transform: translateX(4px); }
.insight-img {
  width: 100px; height: 80px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a4060, #0d6080);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.insight-body  { padding: 14px 18px; flex: 1; }
.insight-tag   { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.insight-title { font-size: 13.5px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; }
.insight-meta  { font-size: 11.5px; color: var(--text-muted); }

/* Case study panel */
.case-panel {
  background: var(--navy); border-radius: 12px;
  overflow: hidden; position: relative;
}
.case-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
}
.case-panel-body { padding: 40px; }
.case-tag {
  display: inline-block;
  background: rgba(46,196,214,0.15); color: var(--teal-bright);
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 20px;
}
.case-title  { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.case-client { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.case-outcomes { display: flex; gap: 20px; margin-bottom: 28px; }
.outcome-pill {
  background: rgba(46,196,214,0.12);
  border: 1px solid rgba(46,196,214,0.2);
  border-radius: 6px; padding: 12px 18px; text-align: center; flex: 1;
}
.outcome-pill strong { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--teal-bright); line-height: 1; margin-bottom: 4px; }
.outcome-pill span   { font-size: 11px; color: rgba(255,255,255,0.45); }
.case-list { margin-bottom: 32px; }
.case-list li {
  font-size: 13.5px; color: rgba(255,255,255,0.65);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 10px; align-items: center;
}
.case-list li::before { content: '✓'; color: var(--teal-bright); font-weight: 700; flex-shrink: 0; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 96px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,122,138,0.2), transparent 65%);
  pointer-events: none;
}
.cta-banner .section-label { justify-content: center; }
.cta-banner .section-label::before { display: none; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-sub   { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 44px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; }

/* ─── INNER PAGE HERO ────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 48px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(26,122,138,0.15) 0%, transparent 60%);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1   { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.page-hero p    { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* ─── CONTACT FORM ───────────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.contact-info p  { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail  { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contact-detail-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.contact-detail-text span   { font-size: 13px; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px; padding: 48px;
  box-shadow: 0 4px 32px rgba(13,31,53,0.07);
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,138,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; }

/* Form alerts */
.alert {
  padding: 14px 18px; border-radius: 6px; margin-bottom: 20px;
  font-size: 14px; font-weight: 500;
}
.alert-success { background: rgba(26,122,138,0.1); color: var(--teal); border: 1px solid rgba(26,122,138,0.2); }
.alert-error   { background: rgba(200,50,50,0.08); color: #c83232; border: 1px solid rgba(200,50,50,0.2); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #07121f;
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo-img {
  width: 180px; height: auto;
  mix-blend-mode: screen;
  filter: brightness(1.5) contrast(1.2) saturate(1.15);
  display: block;
}
.footer-brand p  { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.35); max-width: 280px; }
.footer-col h4   { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-col ul   { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-bright); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.social-links    { display: flex; gap: 12px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: background 0.2s, color 0.2s;
  font-size: 13px; font-weight: 600;
}
.social-link:hover { background: var(--teal); color: var(--white); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── INNER PAGE CONTENT ─────────────────────────────────────── */
.inner-section { padding: 80px 48px; }
.inner-section .section-inner { max-width: 1280px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 12px; padding: 40px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(13,31,53,0.1); transform: translateY(-4px); }
.service-card .card-icon { margin-bottom: 20px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p  { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .expertise-grid   { grid-template-columns: repeat(2, 1fr); }
  .split-grid       { grid-template-columns: 1fr; gap: 48px; }
  .split-divider    { display: none; }
  .content-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(13,31,53,0.98);
    padding: 24px 24px 32px;
    gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open + .nav-cta { display: block; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 0 24px; margin-left: 0; }
  .hero-stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  section { padding: 64px 24px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .industry-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .scroll-indicator { display: none; }
  .page-hero { padding: 120px 24px 60px; }
  .inner-section { padding: 64px 24px; }
}
