/* =========================================================
   KSA Advisory Group — Brand Stylesheet
   Colors: Navy #2E2E64 | Gold #D4AF37 | Charcoal #333333
   Typography: Georgia / Times New Roman serif
   ========================================================= */

:root {
  --brand-primary: #0b2545;
  --brand-accent: #b8860b;
  --text-default: #111827;
  --muted: #6b7280;

  --navy:       #2E2E64;
  --navy-deep:  #1E1E44;
  --navy-mid:   #3A3A7A;
  --gold:       #D4AF37;
  --gold-lt:    #EDD96A;
  --gold-dim:   #B8962E;
  --charcoal:   #333333;
  --clam:       #F5F5F5;
  --ivory:      #EDE8D0;
  --ivory-deep: #DDD5B5;
  --white:      #FFFFFF;
  --text-body:  #333333;
  --text-muted: #666666;
  --text-light: #999999;
  --border:     rgba(212,175,55,0.25);

  --red:    #A32D2D; --red-lt:    #FCEBEB;
  --amber:  #BA7517; --amber-lt:  #FAEEDA;
  --green:  #3B6D11; --green-lt:  #EAF3DE;
  --blue:   #185FA5; --blue-lt:   #E6F1FB;
  --teal:   #006B6B; --teal-lt:   #E1F5EE;

  font-family: Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clam);
  color: var(--text-default);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.btn:focus, a:focus { outline: 3px solid rgba(11,37,69,0.15); box-shadow: 0 0 0 3px rgba(11,37,69,0.12); }

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30, 30, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-brand-tag {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  transition: background 0.2s ease !important;
  border: none;
  cursor: pointer;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* HERO HOME */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(212,175,55,0.04) 79px, rgba(212,175,55,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(212,175,55,0.04) 79px, rgba(212,175,55,0.04) 80px);
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(46,46,100,0.4) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.hero-panel-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.hero-metric:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hero-metric-val {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-metric-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 34px;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212,175,55,0.18);
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(212,175,55,0.25);
}

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 10px 32px rgba(212,175,55,0.2);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(30,30,68,0.22);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* SECTION HEADERS */
.section {
  padding: 96px 40px;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(212,175,55,0.24), rgba(212,175,55,0.9), rgba(212,175,55,0.24));
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 45%, rgba(255,255,255,0.2) 55%, transparent 100%);
  transform: translateX(-120%);
  animation: shine 2.2s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 14px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(46,46,100,0.08);
  transition: all 0.35s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,175,55,0.12);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 28px 70px rgba(46,46,100,0.14), 0 0 20px rgba(212,175,55,0.3);
  transform: translateY(-6px);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--navy);
  background: rgba(212,175,55,0.14);
  margin-bottom: 18px;
  font-weight: 800;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-list li {
  font-size: 13px;
  color: var(--charcoal);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.service-link:hover { gap: 14px; color: var(--gold-dim); filter: drop-shadow(0 0 5px rgba(212,175,55,0.5)); }

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--clam);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
}

/* ABOUT PROFILE */
.about-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.profile-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(46,46,100,0.12);
  position: sticky;
  top: 96px;
}

.profile-card-header {
  background: var(--navy);
  padding: 32px;
  text-align: center;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  border: 3px solid rgba(212,175,55,0.4);
}

.profile-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.profile-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card-body {
  padding: 28px 32px;
}

.profile-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}

.profile-detail:last-child { border-bottom: none; }

.profile-detail-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.profile-detail-val { color: var(--charcoal); }

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.about-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}

.about-content p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.value-item {
  background: var(--clam);
  border-left: 3px solid var(--gold);
  padding: 20px 20px 20px 24px;
  border-radius: 0 6px 6px 0;
}

.value-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.value-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* EXPERIENCE TIMELINE */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-period {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-role {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.timeline-company {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(46,46,100,0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--clam);
  border: 1.5px solid rgba(46,46,100,0.15);
  border-radius: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  appearance: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

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

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.trust-badge {
  background: var(--navy);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.trust-badge-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.trust-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* MICROSOFT FORMS EMBED */
.ms-forms-container {
  margin: 40px 0;
  padding: 24px;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

.ms-forms-placeholder {
  padding: 80px 40px;
  background: var(--clam);
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  text-align: center;
  color: var(--text-muted);
}

.ms-forms-placeholder p {
  margin: 0;
  font-size: 14px;
}

.disclaimer {
  background: #FFFACD;
  border: 1px solid #FFD700;
  border-radius: 4px;
  padding: 16px;
  margin: 24px 0;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 64px 40px 32px;
  margin-top: 96px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-brand-tag {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}

/* SERVICE DETAIL */
.service-detail {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(46,46,100,0.1);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}

.service-detail-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail-desc {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 24px;
}

.deliverables-box {
  background: var(--navy);
  border-radius: 6px;
  padding: 28px;
}

.deliverables-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.deliverables-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* BADGE STYLES */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-expert  { background: #EAF3DE; color: #3B6D11; }
.badge-reg     { background: #E6F1FB; color: #185FA5; }
.badge-pm      { background: #EEEDFE; color: #534AB7; }
.badge-ops     { background: #E1F5EE; color: #006B6B; }
.badge-strat   { background: var(--ivory); color: var(--navy); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--brand-primary);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1001;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-profile { grid-template-columns: 1fr; }
  .profile-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-detail-body { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .hero-inner { padding: 100px 20px 60px; }
  .contact-form { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 20px 60px; }
}
