/* =========================================
   1. Pro Max CSS Variables
========================================= */

:root {
  /* Premium Dark Theme Colors */
  --color-bg-ultra-dark: #0A0A0A; /* Deep OLED Black */
  --color-bg-dark: #121212;
  --color-bg-card: rgba(20, 20, 20, 0.6);
  
  --color-primary: #4682B4; /* Steel Blue */
  --color-primary-dark: #2A5A82;
  --color-primary-light: #7EBAE6;
  --color-primary-glow: rgba(70, 130, 180, 0.4);
  
  --color-purple: #8B5CF6; /* Accent */
  --color-green: #10B981;
  --color-yellow: #F59E0B;
  
  --color-white: #FFFFFF;
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-5: rgba(255, 255, 255, 0.05);
  
  --color-text-body: #94A3B8; /* Slate 400 */
  --color-text-muted: #64748B; /* Slate 500 */
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --leading-body: 1.6;
  --leading-tight: 1.3;
  --tracking-tight: -0.02em;
  
  /* Layout Metrics */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-ultra-dark);
  color: var(--color-text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Accessibility Focus Rings */
*:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================
   2. Typography & Utilities
========================================= */

h1, h2, h3, h4 {
  color: var(--color-white);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--color-white) 20%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-primary-light { color: var(--color-primary-light); }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-text-muted); }
.text-green { color: var(--color-green); }
.text-yellow { color: var(--color-yellow); }
.text-purple { color: var(--color-purple); }

.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }
.p-12 { padding: 3rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 6rem 0; }
.section-sub { font-size: 1.125rem; max-width: 600px; margin: 0 auto; color: var(--color-text-body); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary.glow-btn:hover {
  background-color: var(--color-primary-light);
  box-shadow: 0 0 20px var(--color-primary-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-white-10);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.125rem; }

/* =========================================
   3. Premium UI Elements (Glassmorphism & Orbs)
========================================= */

.glass-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-white-5);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hover-glow {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.hover-glow:hover {
  border-color: rgba(70,130,180,0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(70,130,180,0.05);
  transform: translateY(-4px);
  cursor: pointer;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.orb-blue {
  background: var(--color-primary);
  width: 40vw; height: 40vw;
  top: -10vw; right: -10vw;
}
.orb-purple {
  background: var(--color-purple);
  width: 30vw; height: 30vw;
  bottom: 10%; left: -5vw;
}
.orb-cta {
  background: var(--color-primary);
  width: 50vw; height: 50vw;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.badge.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(70,130,180,0.1);
  border: 1px solid rgba(70,130,180,0.3);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* =========================================
   4. Floating Navbar
========================================= */

.nav-wrapper {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
}

.floating-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 19, 33, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-white-10);
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all var(--transition-normal);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.125rem;
}

.h-8 { height: 32px; width: auto; }
.h-6 { height: 24px; width: auto; }

/* Invert standard logo if it's black text, or just keep it if it's blue. Since the background is dark, we can add a filter to make it fit better if needed */
.logo-grayscale { filter: grayscale(100%) brightness(1.5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hover-underline {
  position: relative;
  color: var(--color-text-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem; /* Increase touch target area */
  margin: -0.5rem;
}
.hover-underline::after {
  content: '';
  position: absolute;
  width: 0; height: 1px;
  bottom: -4px; left: 0;
  background-color: var(--color-white);
  transition: width var(--transition-normal);
}
.hover-underline:hover { color: var(--color-white); }
.hover-underline:hover::after { width: 100%; }

.nav-cta {
  padding: 0.75rem 1.25rem; /* Ensure 44px minimum height constraint roughly */
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  min-width: 44px; /* Touch target size optimization */
  min-height: 44px;
}

/* =========================================
   5. Hero Section
========================================= */

.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* =========================================
   6. Bento Grid (Services & Proof)
========================================= */

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "wide  stat  tall"
      "card1 card2 tall";
  }
  .bento-wide { grid-area: wide; }
  .bento-stat { grid-area: stat; }
  .bento-tall { grid-area: tall; }
  .bento-card1 { grid-area: card1; }
  .bento-card2 { grid-area: card2; }
}

.bento-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 200px;
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: inline-flex;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--color-white-5);
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* =========================================
   7. Process Steps
========================================= */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    position: relative;
  }
  /* Connector Line */
  .process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-white-10), transparent);
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  background: var(--color-bg-ultra-dark);
  padding: 1rem;
}

.step-num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* =========================================
   8. Texture & CTA & Footer
========================================= */

.cta-box {
  padding: 4rem 2rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .cta-box {
    padding: 6rem 4rem;
  }
}

.dark-texture {
  position: relative;
  background-image: radial-gradient(var(--color-white-5) 1px, transparent 1px);
  background-size: 24px 24px;
}

.glass-footer {
  background: rgba(10, 19, 33, 0.9);
  backdrop-filter: blur(20px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-white-10);
}

/* =========================================
   9. New Content Sections
========================================= */

/* ------------- WHO IT'S FOR ------------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}
.who-card { padding: 2.5rem; }
.who-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.who-card-title.yes { color: var(--color-green); }
.who-card-title.no  { color: #F87171; }
.text-danger { color: #F87171; }
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.who-list li i { flex-shrink: 0; width: 16px; }

/* ------------- PRICING ------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(70, 130, 180, 0.2);
  transform: scale(1.03);
}

.pricing-badge-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-bottom-left-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-cadence {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-white-10);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.pricing-features li i { flex-shrink: 0; }

.pricing-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* ------------- TESTIMONIALS ------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card { padding: 2rem; }

.stars {
  color: var(--color-yellow);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-purple));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
}
.author-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ------------- FAQ ------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  list-style: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary-light);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}
details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--color-white-5);
  padding-top: 1rem;
  margin-top: -0.25rem;
}

.delay-150 { transition-delay: 150ms; }
.delay-250 { transition-delay: 250ms; }
.delay-350 { transition-delay: 350ms; }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.text-3xl { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.text-4xl { font-size: clamp(2rem, 4vw, 2.5rem); }
.mt-16 { margin-top: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-4 { margin-top: 1rem; }
.leading-tight { line-height: 1.3; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.gap-4 { gap: 1rem; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-white-10 { border-color: var(--color-white-10); }

/* =========================================
   10. Animations & Mobile Navigation
========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    background: rgba(10, 19, 33, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-white-10);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* =========================================
   11. Week 1 New Elements
========================================= */

/* Tool Logos Row */
.tool-logos-row {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-white-5);
}

.tool-logos-caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.tool-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-white-10);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.tool-pill:hover {
  border-color: rgba(70,130,180,0.4);
  color: var(--color-white);
}

/* Founder Card */
.founder-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem auto 0;
  max-width: 480px;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-white-5);
  border-radius: var(--radius-md);
  text-align: left;
}

.founder-info { flex: 1; }

/* CTA Trust Signals */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* What Happens Next */
.what-happens-next { max-width: 480px; margin-left: auto; margin-right: auto; }

.whn-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.whn-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.whn-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.whn-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(70,130,180,0.15);
  border: 1px solid rgba(70,130,180,0.3);
  color: var(--color-primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.5;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity var(--transition-fast);
}

.footer-contact a:hover { opacity: 0.9; }

.delay-400 { transition-delay: 400ms; }
.delay-450 { transition-delay: 450ms; }
.mt-6 { margin-top: 1.5rem; }

@media (max-width: 768px) {
  .founder-card { flex-direction: column; text-align: center; }
  .footer-contact { justify-content: center; }
  .cta-trust { flex-direction: column; gap: 0.5rem; }
}

/* =========================================
   12. Hero Trust Badge
========================================= */

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.trust-icon {
  color: var(--color-primary-light);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================================
   13. Mobile Sticky CTA
========================================= */

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: rgba(10, 19, 33, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-white-10);
  }

  .mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px var(--color-primary-glow);
    transition: background var(--transition-fast), transform var(--transition-fast);
  }

  .mobile-sticky-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body { padding-bottom: 5rem; }
}

/* =========================================
   14. Accessibility: Reduced Motion
========================================= */

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glow-orb {
    animation: none;
  }

  .hover-glow,
  .btn,
  .hover-underline::after,
  .tool-pill {
    transition: none;
  }
}

/* =========================================
   15. No-JS Fallback (scripting: none)
========================================= */

@media (scripting: none) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* =========================================
   16. WhatsApp Button & Dual CTA Layout
========================================= */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Dual CTA (Book a Call OR WhatsApp) */
.cta-dual-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-or {
  display: flex;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  opacity: 0.6;
  padding: 0 0.25rem;
}

@media (max-width: 600px) {
  .cta-dual-action {
    flex-direction: column;
    width: 100%;
  }

  .cta-dual-action .btn,
  .cta-dual-action .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .cta-or {
    padding: 0.25rem 0;
  }
}
