/* ============================================================
   JAS & PARTNERS — Enterprise Landing Page
   style.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Core Palette */
  --navy:        #0B1829;
  --navy-mid:    #122038;
  --navy-light:  #1A2F4E;
  --navy-soft:   #243C5F;
  --gold:        #C49A3C;
  --gold-light:  #D4AF5A;
  --gold-bright: #E8C96A;
  --gold-pale:   #F5E8C0;
  --cream:       #FAF6EE;
  --cream-dark:  #F0EAD8;
  --white:       #FFFFFF;
  --grey-100:    #F5F5F5;
  --grey-300:    #D4D4D4;
  --grey-500:    #8A8A8A;
  --grey-700:    #4A4A4A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 40px);

  /* Effects */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 8px 40px rgba(196, 154, 60, 0.25);
  --shadow-card: 0 4px 30px rgba(11, 24, 41, 0.12);
  --shadow-deep: 0 20px 60px rgba(11, 24, 41, 0.25);
}

/* ── 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-color: var(--cream);
  color: var(--grey-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.gold-text { color: var(--gold); }

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(196, 154, 60, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 28px;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.navbar.scrolled {
  background: rgba(11, 24, 41, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  padding: 0 var(--gutter);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s;
}
.navbar.scrolled .nav-inner { height: 64px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.8rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Menu ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geometric decoration */
.hero-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.12);
}
.hero-geo::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.08);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-radial {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(196,154,60,0.07) 0%, transparent 65%);
}
.hero-corner {
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 60%;
  background: radial-gradient(ellipse at 20% 80%, rgba(26,47,78,0.8) 0%, transparent 60%);
}

/* Gold diagonal stripe */
.hero-stripe {
  position: absolute;
  top: 0; right: clamp(160px, 30vw, 320px);
  width: 1px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(196,154,60,0.3) 30%,
    rgba(196,154,60,0.5) 50%,
    rgba(196,154,60,0.3) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-title strong {
  font-weight: 600;
  display: block;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── Brand Bar ────────────────────────────────────────────── */
.brand-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(196,154,60,0.15);
  border-bottom: 1px solid rgba(196,154,60,0.15);
  padding: 24px var(--gutter);
  overflow: hidden;
}
.brand-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.brand-bar-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-bar-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cert-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.cert-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label-line {
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-label-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 16px;
}

.about-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-list-icon {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list-icon svg {
  width: 10px; height: 10px;
  stroke: var(--navy);
  stroke-width: 3;
  fill: none;
}
.about-list-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey-700);
}
.about-list-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* About visual */
.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  max-height: 520px;
}
.about-card-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(11,24,41,0.9) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(196,154,60,0.03) 0,
      rgba(196,154,60,0.03) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: auto, 20px 20px;
}
.about-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
}
.about-card-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.about-card-cite {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-card-decoration {
  position: absolute;
  top: 40px; left: 36px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  color: rgba(196,154,60,0.08);
  line-height: 1;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.2;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: var(--section-pad) var(--gutter);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,154,60,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.services-radial {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,154,60,0.06) 0%, transparent 70%);
}

.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}
.services-header .section-title { color: var(--white); }
.services-header .section-body {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
}
.services-header .divider-gold {
  margin: 28px auto;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,154,60,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  border-color: rgba(196,154,60,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196,154,60,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.service-card:hover .service-num {
  color: rgba(196,154,60,0.2);
}

.service-icon {
  width: 48px; height: 48px;
  background: rgba(196,154,60,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.4s;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.service-card:hover .service-icon {
  background: rgba(196,154,60,0.18);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

/* ── Features / Why Us ────────────────────────────────────── */
.features {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.features-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 70px;
}
.features-header .divider-gold {
  margin: 28px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(196,154,60,0.3);
  box-shadow: var(--shadow-deep);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(11,24,41,0.2);
}
.feature-icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}

.feature-text {}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-500);
}

/* ── Team ─────────────────────────────────────────────────── */
.team {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream-dark);
}
.team-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.team-header {
  text-align: center;
  margin-bottom: 70px;
}
.team-header .divider-gold {
  margin: 28px auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: border-color 0.3s;
}
.team-card:hover .team-avatar { border-color: var(--gold); }

.team-avatar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-soft));
}
.team-avatar-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(196,154,60,0.04) 0,
    rgba(196,154,60,0.04) 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 10px 10px;
}
.team-initials {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.team-gold-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.team-card:hover .team-gold-accent { transform: scaleX(1); }

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--grey-500);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) var(--gutter);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .divider-gold { margin: 28px auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 32px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,154,60,0.2);
  transform: translateY(-4px);
}
.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}
.testi-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars svg {
  width: 14px; height: 14px;
  fill: var(--gold);
  stroke: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid rgba(196,154,60,0.3);
  flex-shrink: 0;
}
.testi-info {}
.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testi-company {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-bright) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(11,24,41,0.08);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(11,24,41,0.06);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(11,24,41,0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(11,24,41,0.25);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(11,24,41,0.35);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11,24,41,0.3);
}
.btn-outline-navy:hover {
  background: rgba(11,24,41,0.06);
  border-color: var(--navy);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 100px);
}

.contact-info {}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .section-body { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
}
.contact-detail-content {}
.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-dark);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-700);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-top: 8px;
  justify-content: center;
}
.form-note {
  font-size: 0.78rem;
  color: var(--grey-500);
  text-align: center;
  margin-top: 12px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 80px var(--gutter) 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.4);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.25s;
}
.footer-social:hover {
  background: rgba(196,154,60,0.15);
}
.footer-social:hover svg { stroke: var(--gold); }

.footer-col {}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}
.footer-copy a {
  color: rgba(196,154,60,0.6);
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--gold); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Gold top border on footer */
.footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  margin-bottom: 0;
}

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--navy);
  stroke-width: 2.5;
  fill: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 32px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .about-badge { right: 0; }

  .services-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

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

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}
