/* ============================
   PHELONPRENEUR NETWORK
   Enterprise Stylesheet
   Version 2.0
============================ */

/* ============================
   CSS VARIABLES & RESET
============================ */
:root {
  /* Colors */
  --beige: #f5f1e8;
  --beige2: #efe9dc;
  --cream: #fbfaf7;
  --paper: rgba(255, 255, 255, 0.90);
  --ink: #1f2023;
  --ink2: #2a2a27;
  --muted-ink: rgba(31, 32, 35, 0.75);
  --gold: #c9a24a;
  --gold2: #e6c98b;
  --line-gold: rgba(201, 162, 74, 0.35);
  --shadow-ink: rgba(31, 32, 35, 0.12);
  
  /* Alternate palette (dark mode support) */
  --matte-black: #0a0a0a;
  --charcoal: #1a1a1a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #c9a24a 0%, #e6c98b 100%);
  --gradient-bg-light: linear-gradient(180deg, #f8f4ec 0%, #f2eadb 35%, #e8dfcf 100%);
  --gradient-bg-alt: linear-gradient(135deg, #e9eaec 0%, #f2eee7 45%, #e7ddcc 100%);
  
  /* Spacing */
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gradient-bg-light);
  color: var(--ink);
  overflow-x: hidden;
  padding-top: 90px; /* Account for fixed nav */
  line-height: 1.6;
}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }
}

/* ============================
   TYPOGRAPHY SYSTEM
============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.015em;
}

p {
  letter-spacing: 0.01em;
}

.h-eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgba(31, 32, 35, 0.65);
  position: relative;
  display: inline-block;
  animation: fadeInDown 0.6s ease-out;
}

.h-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.h-eyebrow.active::after {
  opacity: 1;
}

.h-title {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h-divider {
  height: 3px;
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(201, 162, 74, 0.2);
  position: relative;
  overflow: hidden;
  animation: scaleIn 0.8s ease-out;
}

.h-divider::before,
.h-divider::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.h-divider::before {
  left: -4px;
}

.h-divider::after {
  right: -4px;
}

.divider {
  height: 3px;
  width: 92px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(201, 162, 74, 0.15);
}

.subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(31, 32, 35, 0.75);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.text-shadow-enterprise {
  text-shadow: 0 2px 8px rgba(31, 32, 35, 0.12), 0 1px 2px rgba(255, 255, 255, 0.3);
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 2px 6px rgba(201, 162, 74, 0.25);
}

.glow-gold {
  text-shadow:
    0 0 8px rgba(201, 162, 74, 0.45),
    0 0 18px rgba(201, 162, 74, 0.25),
    0 0 32px rgba(201, 162, 74, 0.15);
}

.glow-white {
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.35),
    0 0 14px rgba(255, 255, 255, 0.2);
}

/* ============================
   LAYOUT & SPACING
============================ */
.section-pad {
  padding: 7rem 1rem;
}

@media (min-width: 640px) {
  .section-pad {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 9rem 2rem;
  }
}

section {
  scroll-margin-top: 90px;
  position: relative;
  z-index: 1;
}

.container,
.max-w-6xl,
.max-w-5xl {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

main, nav, footer {
  position: relative;
  z-index: 1;
}

/* ============================
   NAVIGATION
============================ */

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;

  background: rgba(20, 20, 22, 0.96); /* deep luxury black */
  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(201, 162, 74, 0.28);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);

  transition: all 0.3s ease;
}

.nav-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,.8), transparent);
}

.nav-link,
.nav-title {
  color: #f5f1e8;
}

.nav-link:hover {
  color: #e6c98b;
}


.nav-wrapper.scrolled {
  padding: 0.35rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(31, 32, 35, 0.12);
  border-bottom-color: rgba(201, 162, 74, 0.3);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.nav-logo {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
  transition: filter 0.3s ease;
}

.nav-brand:hover .nav-logo {
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
}

.logo-glow {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.nav-title {
  color: var(--gold);
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

/* Desktop Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active,
.nav-link.nav-active {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 2px solid rgba(212, 175, 55, 0.6);
  padding-bottom: 4px;
}

.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  color: var(--gold);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 26px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--gold);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}

.hamburger span:nth-child(4) {
  top: 16px;
}

.mobile-menu-btn.active .hamburger span:nth-child(1),
.mobile-menu-btn.active .hamburger span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  will-change: max-height;
}

.mobile-menu.active {
  max-height: calc(100vh - 80px);
}

.mobile-menu-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(8px);
}

.mobile-nav-link.active {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--gold);
}

.mobile-nav-cta {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.mobile-nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ============================
   BUTTONS
============================ */
.btn-primary,
.cta-button {
  background: var(--gradient-primary);
  color: var(--ink);
  font-weight: 800;
  padding: 1.15rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(201, 162, 74, 0.25), 0 4px 12px rgba(31, 32, 35, 0.08);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.btn-primary::before,
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before,
.cta-button:hover::before {
  left: 100%;
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(201, 162, 74, 0.3), 0 8px 16px rgba(31, 32, 35, 0.1);
}

.btn-primary:active,
.cta-button:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
  border: 2.5px solid rgba(201, 162, 74, 0.8);
  color: var(--ink);
  font-weight: 800;
  padding: 1.05rem 2.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(31, 32, 35, 0.08);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(31, 32, 35, 0.12);
  border-color: rgba(201, 162, 74, 1);
}

.cta-outline {
  background: rgba(255, 255, 255, 0.70);
  border: 2.5px solid rgba(201, 162, 74, 0.8);
  color: var(--ink);
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.95);
}

a,
button {
  transition: all 0.35s var(--ease);
}

/* ============================
   CARDS & CONTAINERS
============================ */
.card-exec {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201, 162, 74, 0.25);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(31, 32, 35, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}

.card-exec::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.15), transparent, rgba(201, 162, 74, 0.15));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.card-exec:hover::before {
  opacity: 1;
}

.card-exec:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 28px 75px rgba(31, 32, 35, 0.12);
  filter: saturate(1.02);
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201, 162, 74, 0.25);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  padding: 2.75rem;
  box-shadow: 0 20px 60px rgba(31, 32, 35, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s forwards;
  will-change: transform;
  backface-visibility: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 74, 0.45);
  box-shadow: 0 28px 75px rgba(31, 32, 35, 0.12);
  filter: saturate(1.02);
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card.featured {
  border: 2px solid rgba(201, 162, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(201, 162, 74, 0.2), 0 28px 80px rgba(31, 32, 35, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: scale(1) translateY(-12px);
  }
}

.badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--ink);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 32px rgba(201, 162, 74, 0.2);
  letter-spacing: 0.05em;
  animation: pulse-glow 3s ease-in-out infinite;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-description {
  color: rgba(31, 32, 35, 0.78);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  margin: 1.5rem 0;
  background: linear-gradient(135deg, var(--ink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(31, 32, 35, 0.65);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ============================
   LISTS & FEATURES
============================ */
.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  color: rgba(31, 32, 35, 0.78);
}

.features-list li {
  padding: 0.85rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 74, 0.15);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.features-list li:hover {
  padding-left: 2.3rem;
  color: rgba(31, 32, 35, 0.95);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.features-list li:hover::before {
  transform: scale(1.2);
}

/* ============================
   HEXAGON TILES
============================ */
.hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid rgba(201, 162, 74, 0.28);
  box-shadow: 0 20px 50px rgba(31, 32, 35, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
}

.hex::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 162, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hex::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hex:hover::before,
.hex:hover::after {
  opacity: 1;
}

.hex:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 28px 65px rgba(31, 32, 35, 0.14);
  border-color: rgba(201, 162, 74, 0.45);
}

/* ============================
   BACKGROUNDS & EFFECTS
============================ */
#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-exec-1 {
  background: linear-gradient(180deg, #f8f4ec 0%, #f2eadb 100%);
  position: relative;
}

.bg-exec-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 162, 74, 0.04), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(201, 162, 74, 0.04), transparent 50%);
  pointer-events: none;
}

.bg-exec-2 {
  background: linear-gradient(180deg, #f5f1e8 0%, #efe9dc 100%);
  position: relative;
}

.bg-exec-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 162, 74, 0.04), transparent 50%);
  pointer-events: none;
}

.programs-section {
  position: relative;
  padding: 7rem 1rem;
  background: linear-gradient(180deg, #efe9dc 0%, #f5f1e8 55%, #fbfaf7 100%);
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.4) 0%, transparent 70%);
  top: -300px;
  left: -300px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.35) 0%, transparent 70%);
  bottom: -300px;
  right: -300px;
  animation-delay: 10s;
}

.img-overlay {
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0.85),
    rgba(245, 241, 232, 0.65),
    rgba(245, 241, 232, 0.85)
  );
  backdrop-filter: blur(2px);
}

.img-overlay-soft {
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 232, 0.60),
    rgba(245, 241, 232, 0.40),
    rgba(245, 241, 232, 0.60)
  );
  backdrop-filter: blur(1px);
}

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -30px);
  }
  50% {
    transform: translate(-20px, 20px);
  }
  75% {
    transform: translate(20px, 30px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 12px 32px rgba(201, 162, 74, 0.2);
  }
  50% {
    box-shadow: 0 12px 32px rgba(201, 162, 74, 0.4);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Stagger delays */
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

/* Hero content animations */
.hero-content > * {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-content > *:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-content > *:nth-child(4) {
  animation-delay: 0.7s;
}

.hero-content > *:nth-child(5) {
  animation-delay: 0.9s;
}

.hero-content h1 {
  text-shadow:
    0 2px 8px rgba(31, 32, 35, 0.12),
    0 1px 1px rgba(255, 255, 255, 0.35);
}

.hero-content p {
  text-shadow: 0 1px 4px rgba(31, 32, 35, 0.08);
}

.hero-content .h-eyebrow {
  text-shadow: 0 1px 3px rgba(31, 32, 35, 0.1);
}

/* ============================
   ACCESSIBILITY
============================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 162, 74, 1);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* ============================
   IMAGE OPTIMIZATION
============================ */
img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

/* ============================
   UTILITY CLASSES
============================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.2s ease-out;
}

.num-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(201, 162, 74, 0.25);
  transition: var(--transition-bounce);
}

.num-circle:hover {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 40px rgba(201, 162, 74, 0.35);
}

/* ============================
   RESPONSIVE REFINEMENTS
============================ */
@media (max-width: 640px) {
  .h-title {
    font-size: 2rem;
  }

  .section-pad {
    padding: 3rem 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .grid div:hover {
    transform: translateY(-4px);
  }
}

/* ============================
   PRINT STYLES
============================ */
@media print {
  .nav-wrapper,
  .mobile-menu,
  .glow-orb,
  #canvas-container {
    display: none;
  }

  body {
    padding-top: 0;
    background: white;
  }
}

.text-warm-white {
  color: rgba(245, 241, 232, 0.95);
}

.text-gold {
  text-shadow: 0 0 8px rgba(201,162,74,0.45);
}


@keyframes slideUp {
  from { transform: translate(-50%, 40px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}


.process-card{
  background:rgba(255,255,255,.88);
  border:1.5px solid rgba(201,162,74,.28);
  border-radius:1.5rem;
  padding:2.8rem;
  box-shadow:0 18px 50px rgba(31,32,35,.08);
}

.step-badge{
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,#c9a24a,#e6c98b);
  color:#1f2023;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
}

.process-card ul{
  margin-top:.75rem;
  padding-left:1.2rem;
}

.process-card li{
  margin:.3rem 0;
}


.metric-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(201,162,74,.28);
  border-radius: 22px;
  padding: 30px 20px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 140px;

  box-shadow: 0 18px 55px rgba(31,32,35,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 75px rgba(31,32,35,.16);
}

.metric-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #c9a24a;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap; /* keeps Nationwide from breaking layout */
}

.metric-label {
  font-size: .95rem;
  color: rgba(31,32,35,.75);
  font-weight: 600;
  line-height: 1.4;
}

.process-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,162,74,.35);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 20px 60px rgba(31,32,35,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 85px rgba(31,32,35,.16);
}

.step-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg,#c9a24a,#e2c26b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  color: #1f2023;
  margin-bottom: 14px;
}

