/* ==========================================================================
   SUNNY VIBES FITNESS | MODERN RADIANT ATHLETIC DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@700;800&display=swap');

:root {
  /* Radiant Sunset & Tropical Teal Palette (Matching Official Logo) */
  --bg-primary: #070A12;
  --bg-secondary: #0D1322;
  --bg-tertiary: #121B2F;
  --bg-card: rgba(18, 27, 47, 0.85);
  --bg-card-hover: rgba(23, 35, 59, 0.95);
  --bg-glass: rgba(13, 19, 34, 0.8);
  
  /* Brand Accents */
  --teal: #00E5FF;
  --teal-hover: #00c4db;
  --teal-glow: rgba(0, 229, 255, 0.3);
  --teal-subtle: rgba(0, 229, 255, 0.08);
  
  --coral: #FF4B82;
  --coral-hover: #e6396e;
  --coral-glow: rgba(255, 75, 130, 0.35);
  --coral-subtle: rgba(255, 75, 130, 0.08);

  --sunset-orange: #FF8A00;
  --gold: #FFB800;
  --emerald: #10B981;
  
  /* Text */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-sub: #64748B;
  --text-dark: #070A12;
  
  /* Borders & Shadows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 229, 255, 0.4);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.2);
  
  /* Typography */
  --font-heading: 'Outfit', 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  /* Layout */
  --container-max: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(0, 229, 255, 0.06) 0%, transparent 45%),
              radial-gradient(circle at 15% 45%, rgba(255, 75, 130, 0.06) 0%, transparent 45%),
              radial-gradient(circle at 50% 85%, rgba(255, 138, 0, 0.04) 0%, transparent 45%),
              var(--bg-primary);
  min-height: 100vh;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

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

.text-gradient-sunset {
  background: linear-gradient(135deg, #FFFFFF 10%, var(--coral) 60%, var(--sunset-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--teal-subtle);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-tag.coral {
  background: var(--coral-subtle);
  border-color: rgba(255, 75, 130, 0.3);
  color: var(--coral);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, #00b4d8 100%);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2ae9ff 0%, var(--teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.45);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--sunset-orange) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(255, 75, 130, 0.35);
}

.btn-coral:hover {
  background: linear-gradient(135deg, #ff6091 0%, #ff981a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 75, 130, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border 0.3s ease;
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.35));
  transition: transform 0.3s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.05) rotate(-2deg);
}

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.trust-number span {
  color: var(--teal);
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Hero Media Column */
.hero-media-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 229, 255, 0.15);
  background: var(--bg-secondary);
}

.hero-image-container img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}

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

/* Hero Floating Chips */
.floating-chip {
  position: absolute;
  padding: 14px 18px;
  background: rgba(13, 19, 34, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  animation: float-chip 4s ease-in-out infinite alternate;
}

.chip-top {
  top: 24px;
  right: -24px;
}

.chip-bottom {
  bottom: 24px;
  left: -24px;
  animation-delay: -2s;
}

@keyframes float-chip {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
}

.chip-icon.fire {
  background: rgba(255, 75, 130, 0.12);
  border-color: rgba(255, 75, 130, 0.3);
  color: var(--coral);
}

.chip-content {
  display: flex;
  flex-direction: column;
}

.chip-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.chip-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   STATS TICKER RIBBON
   ========================================================================== */
.ticker-ribbon {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-item strong {
  color: var(--text-main);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   METHODOLOGY / PILLARS SECTION
   ========================================================================== */
.methodology-section {
  padding: 100px 0;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 229, 255, 0.1);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--coral), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.pillar-card.coral .pillar-icon-box {
  background: rgba(255, 75, 130, 0.1);
  border-color: rgba(255, 75, 130, 0.25);
  color: var(--coral);
}

.pillar-card.orange .pillar-icon-box {
  background: rgba(255, 138, 0, 0.1);
  border-color: rgba(255, 138, 0, 0.25);
  color: var(--sunset-orange);
}

.pillar-card.emerald .pillar-icon-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--emerald);
}

.pillar-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   ABOUT COACH SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: var(--bg-secondary);
}

.about-img-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.about-badge-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-years {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}

.experience-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 20px;
}

.about-text .lead-para {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.cert-icon {
  color: var(--teal);
  font-size: 1.1rem;
}

/* ==========================================================================
   PROGRAMS & COACHING PACKAGES
   ========================================================================== */
.programs-section {
  padding: 100px 0;
  position: relative;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.program-card.featured {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.05) 0%, var(--bg-card) 40%);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.12);
  transform: scale(1.03);
}

.program-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal) 0%, var(--coral) 100%);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.program-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.program-title {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.program-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  min-height: 48px;
}

.program-features {
  list-style: none;
  margin-top: 6px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  margin-bottom: 32px;
  flex-grow: 1;
}

.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS & SOCIAL PROOF
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.25);
}

.review-stars {
  color: #FFB800;
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
}

.client-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.client-goal {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.result-badge {
  background: rgba(0, 229, 255, 0.1);
  color: var(--teal);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(0, 229, 255, 0.3);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--text-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

/* ==========================================================================
   LEAD MAGNET / CTA SECTION
   ========================================================================== */
.cta-section {
  padding: 80px 0 120px;
  position: relative;
}

.lead-magnet-card {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, var(--bg-tertiary) 50%, rgba(255, 75, 130, 0.1) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.lead-magnet-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lead-magnet-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.lead-magnet-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.lead-checklist {
  list-style: none;
  margin-bottom: 28px;
}

.lead-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.lead-checklist li i {
  color: var(--teal);
}

.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-magnet-form .form-group {
  display: flex;
  gap: 10px;
}

.lead-magnet-form input[type="email"] {
  flex-grow: 1;
  padding: 16px 20px;
  border-radius: var(--radius-full);
  background: rgba(7, 10, 18, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.lead-magnet-form input[type="email"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 15px var(--teal-glow);
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-sub);
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #04070D;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px;
  color: var(--text-muted);
}

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

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--teal);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--teal-glow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-image-container img {
    height: 440px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lead-magnet-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }

  .brand-logo-img {
    height: 44px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .floating-chip {
    position: static;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }
  
  .hero-trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .lead-magnet-form .form-group {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
