/* ═══════════════════════════════════════════════════
   TRAM ENTERPRISE — GLOBAL STYLES
   Aesthetic: Refined luxury enterprise · Editorial gravitas
   Fonts: Cormorant Garamond (display) + DM Sans (body)
═══════════════════════════════════════════════════ */

:root {
  --navy: #0C1F3F;
  --navy-mid: #152D56;
  --navy-light: #1E3D70;
  --gold: #C9A227;
  --gold-light: #E8C547;
  --gold-pale: #F5EBC8;
  --steel: #2C5F8A;
  --steel-light: #4A82B0;
  --off-white: #F8F6F0;
  --cream: #FDFBF6;
  --white: #FFFFFF;
  --gray-100: #F4F2EE;
  --gray-200: #E8E5DF;
  --gray-400: #9C9589;
  --gray-600: #6B6560;
  --gray-800: #3A3630;
  --text: #1A1614;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(12,31,63,0.08);
  --shadow-lg: 0 12px 48px rgba(12,31,63,0.15);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gold);
  font-size: 14px;
  padding: 12px 24px;
}
.btn-outline-light:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold-light); }
.section-label.light::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  max-width: 700px;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

.section { padding: 100px 0; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,31,63,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(201,162,39,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  z-index: 99;
  padding: 24px 40px 32px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(44,95,138,0.4);
  top: -100px; right: 100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(201,162,39,0.12);
  bottom: 100px; left: 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 8px 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ── HEX VISUAL ── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 16px;
  position: relative;
}
.hex {
  width: 120px; height: 138px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.2);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  animation: hexFloat 6s ease-in-out infinite;
}
.hex:hover {
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
  border-color: var(--gold);
}
.hex.h1 { animation-delay: 0s; }
.hex.h2 { animation-delay: 0.5s; background: rgba(201,162,39,0.08); color: var(--gold-light); border-color: rgba(201,162,39,0.4); }
.hex.h3 { animation-delay: 1s; }
.hex.h4 { animation-delay: 1.5s; }
.hex.h5 { animation-delay: 2s; background: rgba(44,95,138,0.2); color: rgba(255,255,255,0.8); border-color: rgba(44,95,138,0.5); }
.hex.h6 { animation-delay: 2.5s; }
@keyframes hexFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.trust-bar .divider { color: var(--gold); opacity: 0.5; }

/* ══════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════ */
.problem-section { background: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--navy);
}
.problem-icon {
  width: 48px; height: 48px;
  color: var(--steel);
  margin-bottom: 24px;
}
.problem-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   DIFFERENTIATOR
══════════════════════════════════════════════════ */
.diff-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.diff-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--steel) 100%);
}
.diff-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.diff-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── VENN DIAGRAM ── */
.venn {
  position: relative;
  width: 420px;
  height: 280px;
  margin: 0 auto;
}
.venn-circle {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  top: 20px;
}
.vc-left {
  left: 0;
  background: rgba(44,95,138,0.35);
  border: 1.5px solid rgba(44,95,138,0.6);
}
.vc-right {
  right: 0;
  background: rgba(201,162,39,0.15);
  border: 1.5px solid rgba(201,162,39,0.4);
}
.vc-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.vc-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vc-items span {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.vc-left .vc-items { align-items: flex-start; padding-left: 16px; }
.vc-right .vc-items { align-items: flex-end; padding-right: 16px; }
.venn-overlap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 3;
  background: rgba(12,31,63,0.7);
  border: 1px solid var(--gold);
  padding: 12px 16px;
  text-align: center;
}
.venn-overlap span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.service-card {
  background: var(--white);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  background: var(--navy);
  z-index: 1;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover h3, .service-card:hover p { color: var(--white); }
.service-card:hover .service-num { color: var(--gold); }
.service-card:hover .service-icon { color: var(--gold-light); }
.service-card:hover .service-arrow { color: var(--gold); opacity: 1; }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service-icon {
  width: 40px; height: 40px;
  color: var(--steel);
  transition: var(--transition);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  transition: var(--transition);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  transition: var(--transition);
}
.service-arrow {
  font-size: 18px;
  color: var(--gray-400);
  opacity: 0.5;
  transition: var(--transition);
  align-self: flex-end;
}

/* ══════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gold);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 16px;
  color: rgba(12,31,63,0.7);
  max-width: 520px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cta-section .btn-primary {
  background: var(--navy);
  color: var(--white);
}
.cta-section .btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(12,31,63,0.3);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-domain {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  color: var(--gold) !important;
  letter-spacing: 0.05em;
  margin-top: 12px !important;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  font-weight: 300;
}
.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-founders {
  padding: 100px 0;
  background: var(--cream);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.founder-header {
  background: var(--navy);
  padding: 40px;
  position: relative;
}
.founder-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--gold);
}
.founder-initials {
  width: 72px; height: 72px;
  background: rgba(201,162,39,0.15);
  border: 1.5px solid rgba(201,162,39,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.founder-name {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.founder-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.founder-body {
  padding: 40px;
}
.founder-body p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.credential::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.about-philosophy {
  background: var(--navy);
  padding: 100px 0;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.phil-num {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}
.phil-num .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.phil-num .label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════ */
.services-detail { padding: 100px 0; background: var(--cream); }
.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.service-detail-item:last-child { border-bottom: none; }
.service-detail-left { position: sticky; top: 100px; }
.service-detail-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-detail-left h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-detail-led {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  padding: 6px 14px;
  margin-top: 12px;
}
.service-detail-led::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.service-detail-right h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-detail-right p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
}
.service-includes {
  background: var(--gray-100);
  border-left: 3px solid var(--gold);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.service-includes h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-includes li {
  font-size: 14px;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.service-includes li::before {
  content: '›';
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: -2px;
}
.ideal-for {
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
}
.ideal-for strong { color: var(--navy); font-style: normal; }

/* ══════════════════════════════════════════════════
   PACKAGES PAGE
══════════════════════════════════════════════════ */
.packages-section { padding: 100px 0; background: var(--cream); }
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
  overflow: hidden;
  transition: var(--transition);
}
.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.package-card.featured {
  border: 2px solid var(--gold);
  position: relative;
}
.package-badge {
  position: absolute;
  top: 0; right: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  font-weight: 600;
}
.package-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 40px 48px 32px;
  border-bottom: 1px solid var(--gray-100);
}
.package-header-left h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.package-tagline {
  font-size: 14px;
  color: var(--gray-600);
  font-style: italic;
}
.package-price-box {
  text-align: right;
  flex-shrink: 0;
}
.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.package-price-note {
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.package-meta {
  display: flex;
  gap: 32px;
  padding: 16px 48px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.package-meta span {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--gray-600);
  letter-spacing: 0.04em;
}
.package-meta strong { color: var(--navy); }
.package-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.package-includes {
  padding: 36px 48px;
  border-right: 1px solid var(--gray-100);
}
.package-outcome {
  padding: 36px 48px;
  background: var(--navy);
}
.package-includes h4, .package-outcome h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.package-outcome h4 { color: var(--gold-light); }
.package-includes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.package-includes li {
  font-size: 14px;
  color: var(--gray-700, #444);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.package-includes li::before {
  content: '✓';
  color: var(--steel);
  font-weight: 700;
  flex-shrink: 0;
}
.package-outcome p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  font-style: italic;
}
.package-footer {
  padding: 24px 48px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-ideal {
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
}
.package-ideal strong { color: var(--navy); font-style: normal; }

/* ══════════════════════════════════════════════════
   INSIGHTS PAGE
══════════════════════════════════════════════════ */
.insights-grid {
  padding: 100px 0;
  background: var(--cream);
}
.insights-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.insight-featured {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.insight-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.insight-img {
  height: 260px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.insight-img-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  z-index: 2;
}
.insight-content { padding: 36px; }
.insight-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.insight-content h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.insight-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.insight-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
}
.insights-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 28px;
  transition: var(--transition);
}
.insight-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.insight-card .insight-tag { margin-bottom: 12px; }
.insight-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.insight-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.insight-card .insight-meta { font-size: 10px; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-point-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-point-icon svg { width: 18px; height: 18px; }
.contact-point h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-point p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 40px; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .venn { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .service-detail-left { position: static; }
  .package-body { grid-template-columns: 1fr; }
  .package-outcome { border-top: 1px solid rgba(255,255,255,0.1); }
  .contact-inner { grid-template-columns: 1fr; }
  .insights-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 48px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .package-header { grid-template-columns: 1fr; }
  .package-header-left, .package-price-box { }
  .package-price-box { text-align: left; }
  .package-includes, .package-outcome, .package-footer { padding: 28px 24px; }
  .package-header { padding: 28px 24px 24px; }
  .package-meta { padding: 12px 24px; flex-wrap: wrap; gap: 16px; }
  .contact-form { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
  .trust-bar .container { gap: 12px; }
  .hero-stats { gap: 16px; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats .stat-div { display: none; }
  .founders-grid { grid-template-columns: 1fr; }
  .philosophy-numbers { grid-template-columns: 1fr 1fr; }
}
