/* ============================================
   VTG Advisory — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --navy: #0f1a5c;
  --navy-deep: #0a1240;
  --navy-light: #1a2870;
  --coral: #e8614d;
  --coral-light: #f08272;
  --teal: #1ca8a0;
  --teal-light: #2dc4bb;
  --blush: #fce4e4;
  --blush-light: #fef0f0;
  --blush-pink: #f9c8c8;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6f0;
  --gray-300: #c5cad9;
  --gray-500: #6b7394;
  --gray-700: #3d4260;
  --gray-900: #1a1d2e;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 8vw, 8rem);
  --container-px: clamp(1.25rem, 4vw, 3rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 26, 92, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 26, 92, 0.08);
  --shadow-lg: 0 8px 40px rgba(15, 26, 92, 0.12);
  --shadow-xl: 0 16px 64px rgba(15, 26, 92, 0.16);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p {
  max-width: 65ch;
}

.text-gradient {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary::after {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}

.btn-coral::after {
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 97, 77, 0.35);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 26, 92, 0.06);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition-fast);
}

.navbar.scrolled .navbar-logo img {
  height: 34px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width var(--transition-med);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links .btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.85rem;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--blush-light) 40%, var(--blush) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(28, 168, 160, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

/* Checkerboard pattern overlay */
.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, var(--blush-pink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blush-pink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blush-pink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blush-pink) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, 30px 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(15, 26, 92, 0.06);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .accent {
  color: var(--coral);
}

.hero h1 .accent-teal {
  color: var(--teal);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-chess-grid {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}

/* Floating shapes in hero visual */
.float-shape {
  position: absolute;
  border-radius: var(--radius-lg);
  animation: float 6s ease-in-out infinite;
}

.float-shape-1 {
  width: 160px;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.float-shape-2 {
  width: 120px;
  height: 160px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  top: 25%;
  right: 10%;
  animation-delay: -2s;
  border-radius: 50% 50% 50% var(--radius-lg);
}

.float-shape-3 {
  width: 100px;
  height: 120px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  bottom: 15%;
  left: 30%;
  animation-delay: -4s;
  border-radius: var(--radius-lg) 50%;
}

.float-shape-4 {
  width: 80px;
  height: 80px;
  border: 3px solid var(--blush-pink);
  bottom: 30%;
  right: 20%;
  animation-delay: -1s;
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(2deg); }
  66% { transform: translateY(6px) rotate(-1deg); }
}

/* ============================================
   PROBLEM / PAIN SECTION
   ============================================ */
.pain-section {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(232, 97, 77, 0.1), transparent 60%);
  pointer-events: none;
}

.pain-section .container {
  position: relative;
  z-index: 2;
}

.pain-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pain-section h2 .accent {
  color: var(--coral);
}

.pain-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  font-style: italic;
  font-family: var(--font-serif);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--coral);
  border-radius: 0 2px 2px 0;
  transition: height var(--transition-med);
}

.pain-card:hover::before {
  height: 100%;
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(232, 97, 77, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.pain-card h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
}

.pain-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   ABOUT / MISSION SECTION
   ============================================ */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.about-content .section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.target-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition-fast);
}

.target-pill:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.target-pill svg {
  width: 16px;
  height: 16px;
}

.about-visual {
  position: relative;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition-med);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.stat-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(15, 26, 92, 0.03), rgba(28, 168, 160, 0.05));
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(232, 97, 77, 0.04), rgba(252, 228, 228, 0.5));
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(28, 168, 160, 0.04), rgba(15, 26, 92, 0.03));
}

.stat-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(252, 228, 228, 0.5), rgba(232, 97, 77, 0.04));
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.section-header .section-label::before,
.section-header .section-label::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-med);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(15, 26, 92, 0.06), rgba(28, 168, 160, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: all var(--transition-med);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  transform: scale(1.05);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  transition: color var(--transition-med);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.service-card .service-tagline {
  font-size: 0.9rem;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ============================================
   PROCESS / APPROACH SECTION
   ============================================ */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--coral));
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 auto 1.25rem;
  transition: all var(--transition-med);
  position: relative;
}

.process-step:hover .step-number {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(15, 26, 92, 0.25);
}

.process-step h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0 auto;
}

/* ============================================
   CASE STUDIES / TRACK RECORD
   ============================================ */
.track-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--blush-light) 100%);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.track-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.track-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  transform: scaleX(0);
  transition: transform var(--transition-med);
}

.track-card:hover::after {
  transform: scaleX(1);
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.track-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.track-card p {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.55;
}

/* ============================================
   WHY US / DIFFERENTIATORS
   ============================================ */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--off-white), var(--blush-light));
  border: 1px solid var(--gray-200);
  transition: all var(--transition-med);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.why-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.15;
}

.why-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 auto;
}

/* ============================================
   VALUE ADD SERVICES
   ============================================ */
.value-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-med);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.value-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(15, 26, 92, 0.06), rgba(28, 168, 160, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
}

.value-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-card li {
  font-size: 0.85rem;
  color: var(--gray-500);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.value-card li::before {
  content: '→';
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(28, 168, 160, 0.08), transparent 60%);
  pointer-events: none;
}

.pricing-section .section-header h2 {
  color: var(--white);
}

.pricing-section .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-section .section-header .section-label {
  color: var(--coral-light);
}

.pricing-section .section-header .section-label::before,
.pricing-section .section-header .section-label::after {
  background: var(--coral-light);
}

.pricing-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.pricing-phase {
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all var(--transition-med);
  position: relative;
}

.pricing-phase:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.phase-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pricing-phase h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.phase-price {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-phase p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

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

.team-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-med);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.team-photo-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 92, 0.05) 100%);
  z-index: 1;
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo-wrapper img {
  transform: scale(1.03);
}

.team-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.credential-badge {
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--gray-100);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   CTA / CONTACT SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(160deg, var(--blush-light) 0%, var(--blush) 40%, var(--blush-pink) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.15;
  background-image:
    linear-gradient(45deg, var(--blush-pink) 25%, transparent 25%),
    linear-gradient(-45deg, var(--blush-pink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--blush-pink) 75%),
    linear-gradient(-45deg, transparent 75%, var(--blush-pink) 75%);
  background-size: 50px 50px;
  background-position: 0 0, 0 25px, 25px -25px, 25px 0;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section h2 .accent {
  color: var(--coral);
}

.cta-section h2 .accent-teal {
  color: var(--teal);
}

.cta-email {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2rem;
  display: block;
}

.cta-email a {
  color: var(--teal);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.cta-email a:hover {
  border-color: var(--teal);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 32px;
  /* filter: brightness(0) invert(1); */
}

.footer p {
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.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; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
  }

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

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

  .pricing-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .team-card {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    text-align: left;
  }

  .step-number {
    margin: 0;
  }

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

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

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

  .pricing-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-photo-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }

  .team-credentials {
    justify-content: center;
  }

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

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .pricing-timeline {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
