/* ============================================
   HeartCore Growth - Main Stylesheet
   Design System: Deep Purple, Hot Pink, Gold, White
   Matches WordPress premium design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --deep-purple: #190833;
  --deep-purple-light: #241245;
  --purple-mid: #34033C;
  --navy: #0B1A32;
  --navy-light: #1a2f4a;
  --sky: #78ADC7;
  --gold: #FFD100;
  --pink: #FF008F;
  --pink-light: #FF3AAF;
  --pink-dark: #D4007A;
  --white: #FFFFFF;
  --off-white: #FCFCFC;
  --light-gray: #F7F9FC;
  --dark-gray: #545454;
  --black: #000000;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.6);
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.25);
  --shadow-pink: 0 6px 30px rgba(255,0,143,0.25);
  --shadow-gold: 0 6px 24px rgba(255,209,0,0.3);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --section-pad: clamp(80px, 10vw, 140px);
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'proxima-nova', 'Rubik', 'Inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  background: var(--deep-purple);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink-light); }

::selection {
  background: var(--pink);
  color: var(--white);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'acumin-pro-extra-condensed', 'Barlow Condensed', 'Rubik', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
}

h1 { font-size: clamp(48px, 7vw, 90px); letter-spacing: 2px; }
h2 {
  font-family: 'acumin-pro', 'Barlow', 'Rubik', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: none;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2vw, 28px); }

h6, .eyebrow {
  font-family: 'acumin-pro', 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 16px;
}

p { margin-bottom: 1em; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--deep-purple);
  color: var(--white);
}

.section-light {
  background: var(--deep-purple);
  color: var(--white);
}

.section-sky {
  background: linear-gradient(135deg, var(--deep-purple) 0%, #1a0a3e 50%, var(--deep-purple-light) 100%);
  color: var(--white);
}

.section-purple {
  background: var(--deep-purple);
  color: var(--white);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(25, 8, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav .logo-img {
  height: 45px;
  width: auto;
  transition: transform var(--transition);
}

.nav .logo-img:hover {
  transform: scale(1.05);
}

.nav .logo-text {
  font-family: 'acumin-pro-extra-condensed', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.nav .logo-text span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
}

.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
  background: var(--pink-light) !important;
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: 'acumin-pro-extra-condensed', 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
}

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

.btn-primary:hover {
  color: var(--white);
  box-shadow: var(--shadow-pink);
  background: var(--pink-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-dark {
  background: var(--deep-purple);
  color: var(--white);
}

.btn-dark:hover {
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--deep-purple);
}

.btn-gold:hover {
  color: var(--deep-purple);
  box-shadow: var(--shadow-gold);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--deep-purple);
  background-image: url('/public/images/backgrounds/hero-bg.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 160px 20px 120px;
  position: relative;
  overflow: hidden;
}

/* Hero gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(52, 3, 60, 0.78) 59%, var(--deep-purple) 100%);
  z-index: 1;
}

/* Subtle animated glow */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,143,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes heroGlow {
  0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  100% { transform: translateX(-50%) scale(1.3); opacity: 1; }
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  color: var(--pink);
  display: inline;
}

.hero > .hero-content > p,
.hero-content > p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 300;
  font-family: 'Rubik', sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-proof-bar {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Rubik', sans-serif;
}

.social-proof-bar .stars {
  color: var(--gold);
  font-style: normal;
  margin-right: 8px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 32px;
}

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

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 0 40px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(255,0,143,0.2);
  background: rgba(255,255,255,0.06);
}

.card-dark {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-dark:hover {
  background: rgba(255,255,255,0.08);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  animation: none;
}

.card:hover .card-icon {
  animation: cardIconPulse 0.4s ease;
}

@keyframes cardIconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: none;
  font-family: 'acumin-pro', 'Barlow', 'Rubik', sans-serif;
  color: var(--white);
  line-height: 1.3;
}

.card p {
  color: var(--text-light);
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
}

.card-dark p {
  color: var(--text-light);
}

.card .link-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--pink);
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--transition), color var(--transition);
}

.card .link-arrow:hover {
  transform: translateX(4px);
  color: var(--pink-light);
}

.card-dark .link-arrow {
  color: var(--pink);
}

/* ---------- Stats ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  padding: 56px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'acumin-pro-extra-condensed', 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,0,143,0.2);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Rubik', sans-serif;
}

/* ---------- Split Section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-text h2 {
  margin-bottom: 24px;
}

.split-text p {
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(25,8,51,0.4));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

/* ---------- Testimonials ---------- */
.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  display: none;
  animation: fadeSlideIn 0.6s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid rgba(255,0,143,0.3);
  box-shadow: 0 0 20px rgba(255,0,143,0.15);
}

.testimonial-quote {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  padding: 0 20px;
  color: var(--off-white);
  font-family: 'Rubik', sans-serif;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 100px;
  color: var(--pink);
  font-style: normal;
  position: absolute;
  top: -30px;
  left: -10px;
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-author {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Rubik', sans-serif;
}

.testimonial-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.testimonial-dot:hover {
  background: rgba(255,0,143,0.5);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--pink);
  transform: scale(1.15);
}

/* ---------- Logo Bar ---------- */
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  flex-wrap: wrap;
  padding: 40px 0;
}

.logo-bar span {
  color: var(--text-muted);
}

.logo-bar img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.logo-bar img:hover {
  opacity: 1;
}

/* ---------- Lead Magnet Form ---------- */
.lead-form {
  display: flex;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
}

.lead-form input::placeholder {
  color: var(--text-muted);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255,255,255,0.08);
}

.lead-form button {
  padding: 16px 32px;
  white-space: nowrap;
  background: var(--pink);
  color: var(--white);
}

.trust-line {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-line span {
  margin: 0 12px;
}

/* ---------- CTA Block ---------- */
.cta-block {
  text-align: center;
  padding: var(--section-pad) 0;
  background: var(--deep-purple);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,0,143,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-block h2 {
  margin-bottom: 20px;
  position: relative;
}

.cta-block p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  font-family: 'Rubik', sans-serif;
  position: relative;
}

.cta-micro {
  margin-top: 24px;
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--black) 100%);
  color: var(--white);
  padding: 100px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,143,0.3), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
  font-family: 'Rubik', sans-serif;
}

.footer-brand .logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--pink-light);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-family: 'Rubik', sans-serif;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover {
  color: var(--pink);
}

/* ---------- Section Dividers ---------- */
.section-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  margin: 0 auto 48px;
  border: none;
}

/* ---------- Page Header (interior pages) ---------- */
.page-header {
  background: var(--deep-purple);
  color: var(--white);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(52, 3, 60, 0.5) 0%, var(--deep-purple) 100%);
}

.page-header .eyebrow {
  margin-bottom: 12px;
  position: relative;
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  font-family: 'Rubik', sans-serif;
}

/* ---------- Service Page Layout ---------- */
.service-intro {
  max-width: 800px;
}

.features-list {
  list-style: none;
  margin: 32px 0;
}

.features-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 17px;
  color: var(--text-light);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: 20px;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-size: 20px;
  text-transform: none;
  font-family: 'acumin-pro', 'Barlow', 'Rubik', sans-serif;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card h3 a {
  color: var(--white);
}

.blog-card h3 a:hover {
  color: var(--pink);
}

.blog-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.blog-post h1 {
  font-size: clamp(32px, 4vw, 52px);
  text-transform: none;
  font-family: 'acumin-pro', 'Barlow', 'Rubik', sans-serif;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-post-meta {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.blog-post-content h2 {
  font-size: 28px;
  margin: 48px 0 16px;
}

.blog-post-content h3 {
  font-size: 22px;
  text-transform: none;
  font-family: 'acumin-pro', 'Barlow', 'Rubik', sans-serif;
  margin: 32px 0 12px;
}

.blog-post-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5em;
  color: var(--text-light);
}

.blog-post-content ul, .blog-post-content ol {
  margin: 1em 0 1.5em 1.5em;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

.blog-post-content blockquote {
  border-left: 4px solid var(--pink);
  padding: 16px 24px;
  margin: 1.5em 0;
  background: rgba(255,255,255,0.04);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-light);
}

.blog-post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 24px;
}

.blog-post-nav a {
  font-size: 15px;
  font-weight: 600;
}

/* ---------- Contact / Forms ---------- */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--white);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- Animations ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation delays for card grids */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }
.stagger-5 { transition-delay: 0.4s; }

/* Pulse animation for emphasis */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Gradient text shimmer */
.text-gradient {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-pink { color: var(--pink); }
.text-sky { color: var(--sky); }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 8, 51, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    z-index: 999;
  }

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

  .nav-links a { font-size: 20px; }

  .card-grid-3, .card-grid-2, .card-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 85vh; padding: 120px 20px 80px; }

  .stats-bar { gap: 32px; }

  .lead-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }

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

  .testimonial-quote { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .menu-toggle { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
}
