/* ============================================
   ASTRALEX ADVISORY — DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* AstraLex brand palette v2 — ink charcoal + a single restrained emerald
     accent, chosen for readability and a calmer, more professional feel
     than the earlier navy/gold pairing. Variable names kept as --red/--dark
     etc. for backward compatibility with existing markup; only the VALUES
     changed. */
  --red:         #0F6B5C; /* deep emerald — primary accent */
  --red-dark:    #0B5347; /* darker emerald, for hover states */
  --red-light:   #E3F1EE; /* pale emerald tint, for badges/backgrounds */
  --gold:        #8C6B3F; /* muted bronze — used sparingly as a secondary accent */
  --gold-light:  #B08D57;
  --black:       #14171F; /* ink charcoal — headings, body text base */
  --dark:        #14171F; /* ink charcoal — dark section backgrounds */
  --dark-2:      #1D212B;
  --dark-3:      #262B37;
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --gray-50:     #F4F4F5;
  --gray-100:    #EBEBEB;
  --gray-300:    #CBCBCB;
  --gray-500:    #8A8A8A;
  --gray-700:    #444444;
  --text-body:   #2D2D2D;
  --text-muted:  #6B6B6B;

  --font:        'Inter', -apple-system, sans-serif;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl:   0 24px 80px rgba(0,0,0,0.18);
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.text-center { text-align: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; color: var(--black); }
.display-1 { font-size: clamp(44px, 6vw, 76px); font-weight: 800; line-height: 1.07; letter-spacing: -2px; }
.display-2 { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.heading-1 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; letter-spacing: -0.8px; }
.heading-2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; letter-spacing: -0.5px; }
.heading-3 { font-size: 20px; font-weight: 600; }
.lead { font-size: clamp(17px, 2vw, 20px); line-height: 1.7; color: var(--gray-700); font-weight: 400; }
.body-lg { font-size: 17px; line-height: 1.75; }
.body-sm { font-size: 14px; line-height: 1.6; }
.caption { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; letter-spacing: 0.1px;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15,107,92,0.35);
}
.btn-dark {
  background: var(--black); color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-outline {
  background: transparent; color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--black); background: var(--black); color: var(--white);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-icon { padding: 14px 14px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- BADGE / LABEL ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
}
.badge-red { background: var(--red-light); color: var(--red); }
.badge-dark { background: var(--dark-2); color: var(--gray-300); }
.badge-outline { border: 1px solid var(--gray-100); color: var(--gray-700); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--black);
}
.nav-logo span { color: var(--red); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; color: white; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--black); background: var(--gray-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { font-size: 14px; padding: 10px 20px; }
.nav-mobile-toggle { display: none; }

/* Mobile nav */
.nav-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 32px 24px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--gray-100);
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 500; color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  background: var(--dark);
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(15,107,92,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(15,107,92,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.04;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
                    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,107,92,0.15); border: 1px solid rgba(15,107,92,0.3);
  color: #B08D57; padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lead { color: rgba(255,255,255,0.7); margin-bottom: 48px; max-width: 580px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-stat {
  padding: 0 48px; text-align: center;
  border-right: 1px solid var(--gray-100);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-number {
  font-size: 36px; font-weight: 800; color: var(--black); letter-spacing: -1px;
  line-height: 1;
}
.trust-stat-number span { color: var(--red); }
.trust-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-lead { max-width: 560px; margin: 0 auto; }
.section-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px; display: block;
}
.section-title { margin-bottom: 16px; }
.section-lead { color: var(--text-muted); font-size: 17px; line-height: 1.7; }
.section-divider {
  width: 48px; height: 3px; background: var(--red);
  border-radius: 2px; margin: 20px 0;
}
.section-divider.center { margin: 20px auto; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 36px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card-icon svg { width: 26px; height: 26px; color: var(--red); }
.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-size: 14px; font-weight: 600;
  margin-top: 20px; transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }
.service-card.featured {
  background: var(--dark); border-color: var(--dark-2); color: var(--white);
}
.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.85); }
.service-card.featured .service-card-icon { background: rgba(15,107,92,0.2); }
.service-card.featured .service-card-icon svg { color: #B08D57; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 32px; left: 16.66%; right: 16.66%; height: 1px;
  background: var(--gray-100); z-index: 0;
}
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.process-step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px; font-weight: 800; color: var(--black);
  position: relative; transition: all var(--transition);
}
.process-step:hover .process-step-number {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section { background: var(--dark); color: var(--white); }
.founder-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,107,92,0.15); border: 1px solid rgba(15,107,92,0.3);
  color: #B08D57; padding: 8px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.founder-section h2 { color: var(--white); margin-bottom: 20px; }
.founder-section .lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.founder-credentials { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.founder-credential-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.founder-credential-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(15,107,92,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.founder-credential-icon svg { width: 12px; height: 12px; color: var(--red); }
.founder-credential-item p { font-size: 15px; color: rgba(255,255,255,0.75); }
.founder-image-placeholder {
  background: var(--dark-2); border-radius: var(--radius-lg);
  height: 520px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--dark-3);
  position: relative; overflow: hidden;
}
.founder-image-inner {
  text-align: center;
}
.founder-image-inner p { color: rgba(255,255,255,0.3); font-size: 13px; margin-top: 8px; }
.founder-avatar-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--dark-3); border: 3px solid var(--dark-3);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.founder-avatar-placeholder svg { width: 56px; height: 56px; color: rgba(255,255,255,0.2); }
.founder-name { color: rgba(255,255,255,0.6); font-size: 16px; font-weight: 600; }
.founder-title { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.serve-card {
  padding: 32px 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center; transition: all var(--transition);
}
.serve-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.serve-card-emoji { font-size: 40px; margin-bottom: 16px; }
.serve-card h3 { font-size: 17px; margin-bottom: 10px; }
.serve-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 36px 32px;
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: #F59E0B; color: #F59E0B; }
.testimonial-text {
  font-size: 15px; line-height: 1.75; color: var(--text-body);
  margin-bottom: 28px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--red);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   LEAD MAGNET / CTA STRIP
   ============================================ */
.lead-magnet {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-xl); padding: 64px;
  position: relative; overflow: hidden;
  border: 1px solid var(--dark-3);
}
.lead-magnet::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,107,92,0.15) 0%, transparent 70%);
}
.lead-magnet-content { position: relative; z-index: 1; }
.lead-magnet h2 { color: var(--white); margin-bottom: 16px; }
.lead-magnet p { color: rgba(255,255,255,0.6); font-size: 17px; max-width: 480px; }
.lead-magnet-checklist {
  display: flex; flex-direction: column; gap: 10px; margin: 28px 0;
}
.lead-magnet-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 15px;
}
.lead-magnet-item-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(15,107,92,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lead-magnet-item-icon svg { width: 11px; height: 11px; color: var(--red); }
.lead-magnet-visual {
  display: flex; align-items: center; justify-content: center;
}
.magnet-card-mock {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; width: 280px;
  box-shadow: var(--shadow-xl);
}
.magnet-card-header {
  background: var(--red); color: white;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  margin-bottom: 20px; text-align: center;
}
.magnet-card-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 13px; color: var(--text-body);
}
.magnet-card-item:last-child { border-bottom: none; }
.magnet-card-item::before {
  content: ''; width: 8px; height: 8px; flex-shrink: 0;
  background: var(--red); border-radius: 50%;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.cta-section {
  background: var(--red); color: var(--white); text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 40px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.footer-brand h3 span { color: var(--red); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.45); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-legal { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 12px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social-btn:hover { background: rgba(255,255,255,0.14); }
.footer-social-btn svg { width: 16px; height: 16px; color: rgba(255,255,255,0.6); }

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
}
.sticky-cta-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(15,107,92,0.4);
  transition: all var(--transition);
  animation: float 3s ease-in-out infinite;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(15,107,92,0.5);
}
.sticky-cta-btn svg { width: 18px; height: 18px; }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
  background: var(--dark); padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(15,107,92,0.10) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-philosophy { background: var(--gray-50); }
.philosophy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.philosophy-card {
  background: var(--white); padding: 36px 30px;
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  text-align: center;
}
.philosophy-card-num {
  font-size: 48px; font-weight: 900; color: var(--red);
  opacity: 0.15; line-height: 1; margin-bottom: 16px;
}
.philosophy-card h3 { font-size: 18px; margin-bottom: 12px; }
.philosophy-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-100);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -48px; top: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red); border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot svg { width: 14px; height: 14px; color: var(--white); }
.timeline-year {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: 6px;
}
.timeline-item h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 32px;
}
.service-detail-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: var(--radius-md); background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
}
.service-detail-icon svg { width: 30px; height: 30px; color: var(--red); }
.service-detail h2 { margin-bottom: 8px; }
.service-detail-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
}
.service-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.service-features { display: flex; flex-direction: column; gap: 14px; }
.service-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition);
}
.service-feature-item:hover { border-color: var(--red); }
.service-feature-check {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--red-light);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.service-feature-check svg { width: 12px; height: 12px; color: var(--red); }
.service-feature-item p { font-size: 15px; color: var(--text-body); }
.service-who-box {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 32px; border-left: 3px solid var(--red);
}
.service-who-box h4 { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.service-who-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-who-tag {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 7px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--text-body);
}
.pricing-note {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark); color: rgba(255,255,255,0.75);
  padding: 18px 24px; border-radius: var(--radius-md);
  font-size: 14px; margin-top: 24px;
}
.pricing-note svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ============================================
   RESOURCES PAGE
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
  height: 220px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-card-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 24px 20px 16px;
}
.blog-card-img-label span {
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.blog-card-body { padding: 28px; }
.blog-card h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; }
.blog-card-cat {
  background: var(--red-light); color: var(--red);
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
}
.blog-card-read { font-size: 12px; color: var(--text-muted); }
.blog-card-img-bg-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.blog-card-img-bg-2 { background: linear-gradient(135deg, #0f2027 0%, #203a43 100%); }
.blog-card-img-bg-3 { background: linear-gradient(135deg, #2c1810 0%, #4a1c2a 100%); }
.blog-card-img-bg-4 { background: linear-gradient(135deg, #141414 0%, #1f1f1f 100%); }
.blog-card-img-bg-5 { background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%); }
.blog-card-img-bg-6 { background: linear-gradient(135deg, #160b1f 0%, #2d1b3e 100%); }
.blog-icon-large { font-size: 56px; opacity: 0.3; }
.youtube-section { background: var(--dark); border-radius: var(--radius-xl); padding: 64px; }
.youtube-section h2 { color: var(--white); margin-bottom: 16px; }
.youtube-section p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.youtube-placeholder {
  background: var(--dark-2); border-radius: var(--radius-lg);
  aspect-ratio: 16/9; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--dark-3);
  max-width: 640px;
}
.youtube-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: transform var(--transition);
}
.youtube-play:hover { transform: scale(1.1); }
.youtube-play svg { width: 32px; height: 32px; color: white; margin-left: 4px; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-100); transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-header {
  background: var(--dark); padding: 28px;
  display: flex; align-items: flex-start; gap: 16px;
}
.product-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(15,107,92,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.product-card-icon svg { width: 24px; height: 24px; color: #B08D57; }
.product-card-title { color: white; font-size: 16px; font-weight: 700; }
.product-card-type { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 4px; }
.product-card-body { padding: 24px 28px; flex: 1; }
.product-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }
.product-features { display: flex; flex-direction: column; gap: 8px; }
.product-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-body);
}
.product-feature::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.product-card-footer { padding: 20px 28px; border-top: 1px solid var(--gray-100); }
.product-price { font-size: 24px; font-weight: 800; color: var(--black); }
.product-price span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.product-price.coming-soon { font-size: 16px; color: var(--text-muted); }
.product-footer-row { display: flex; align-items: center; justify-content: space-between; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 56px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-body); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.contact-info { padding: 0 24px; }
.contact-info h3 { font-size: 22px; margin-bottom: 24px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 0; border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-muted); }
.calendly-placeholder {
  background: var(--gray-50); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; border: 2px dashed var(--gray-200);
  margin-top: 32px;
}
.calendly-placeholder h4 { font-size: 18px; margin-bottom: 8px; }
.calendly-placeholder p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; gap: 16px;
}
.faq-question h4 { font-size: 16px; font-weight: 600; }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all var(--transition);
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--gray-700); transition: transform var(--transition); }
.faq-item.open .faq-toggle { background: var(--red); }
.faq-item.open .faq-toggle svg { color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes scrollLine { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.fade-up { opacity: 0; transform: translateY(24px); }
.fade-up.visible { animation: fadeUp 0.6s ease forwards; }
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeIn 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ============================================
   UTILITY
   ============================================ */
.divider { border: none; border-top: 1px solid var(--gray-100); margin: 64px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-300); }
.alert {
  padding: 16px 20px; border-radius: var(--radius-sm);
  display: flex; align-items: flex-start; gap: 12px; font-size: 14px;
}
.alert-red { background: var(--red-light); border-left: 3px solid var(--red); color: var(--red-dark); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); }
  .hero { padding: 120px 0 80px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .serve-cards { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-stat { padding: 16px 24px; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .lead-magnet { padding: 40px 28px; }
  .lead-magnet .grid-2 { grid-template-columns: 1fr; }
  .lead-magnet-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .sticky-cta-btn span { display: none; }
  .hero-scroll { display: none; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .youtube-section { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; }
  .trust-stat { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .trust-stat:last-child { border-bottom: none; }
  .serve-cards { grid-template-columns: 1fr; }
  .display-1 { letter-spacing: -1px; }
  .display-2 { letter-spacing: -1px; }
}
