/* ============================================
   FLP Navigator — Design System & Styles
   Brand: CharterQuest Institute
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* CharterQuest Brand Colors */
  --cq-blue: #337AB7;
  --cq-blue-dark: #2a6599;
  --cq-red: #bc0100;
  --cq-red-hover: #a00100;
  --cq-red-light: #D72D3C;
  --cq-green: #5CB85C;
  --cq-whatsapp: #25D366;
  --cq-slate: #465f88;

  /* CIMA Official Colors (Purple Palette) */
  --cima-purple: #221C35;
  --cima-plum: #72246C;
  --cima-purple-mid: #4B286D;
  --cima-purple-glow: rgba(34, 28, 53, 0.3);
  --cima-plum-glow: rgba(114, 36, 108, 0.3);

  /* Neutrals */
  --dark: #0f1115;
  --dark-soft: #181b21;
  --text-primary: #12161a;
  --text-body: #495057;
  --text-muted: #868e96;
  --light-bg: #f8f9fa;
  --card-bg: #ffffff;
  --page-bg: #f8f9fa;

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #07090e 0%, #0d121c 30%, #111a2b 60%, #152640 100%);
  --red-gradient: linear-gradient(135deg, #bc0100 0%, #d72d3c 100%);
  --blue-gradient: linear-gradient(135deg, #337AB7 0%, #2a6599 100%);
  --purple-gradient: linear-gradient(135deg, #4B286D 0%, #72246C 100%);
  --plum-gradient: linear-gradient(135deg, #72246C 0%, #9b3d95 100%);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Manrope', 'Roboto Slab', Arial, sans-serif;
  --font-body: 'Inter', 'Roboto', Arial, sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 40px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow-red: 0 8px 32px rgba(188, 1, 0, 0.3);
  --shadow-glow-blue: 0 8px 32px rgba(51, 122, 183, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--page-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6,
.section--dark .section-title,
.section--dark .pricing-card__title {
  color: #ffffff;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark .tag {
  color: rgba(255, 255, 255, 0.6);
}

.section--light {
  background: var(--light-bg);
}

.section--white {
  background: var(--card-bg);
}

.text-center {
  text-align: center;
}

.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cq-red);
  margin-bottom: var(--space-sm);
}

.tag--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--cq-red);
  color: #ffffff;
  box-shadow: var(--shadow-glow-red);
}

.btn--primary:hover {
  background: var(--cq-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(188, 1, 0, 0.4);
}

.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn--whatsapp {
  background: var(--cq-whatsapp);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

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

.btn--outline:hover {
  background: var(--cq-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  transition: all var(--transition-base);
  background: transparent;
}

.nav.scrolled {
  background: rgba(26, 28, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav__link:hover {
  color: #ffffff;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero__bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero__orb--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(51, 122, 183, 0.6), transparent);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--red {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(188, 1, 0, 0.4), transparent);
  bottom: -5%;
  left: 10%;
  animation-delay: -7s;
}

.hero__orb--teal {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(114, 36, 108, 0.35), transparent);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

/* Grid pattern overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__text {
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cq-red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero__title-accent {
  background: var(--red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

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

.hero__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
}

.hero__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 440px;
  width: 100%;
}

/* Inline variant for light-bg sections */
.hero__card--inline {
  background: var(--card-bg);
  border: 1px solid #e9ecef;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__card--inline .hero__card-title {
  color: var(--text-primary);
}

.hero__card--inline .hero__card-subtitle {
  color: var(--text-muted);
}

.hero__card--inline .hero__card-icon {
  background: var(--blue-gradient);
  box-shadow: var(--shadow-glow-blue);
}

.hero__card--inline .hero__journey-step {
  border-bottom-color: #e9ecef;
}

.hero__card--inline .hero__journey-num {
  background: var(--light-bg);
  color: var(--text-body);
}

.hero__card--inline .hero__journey-step--active .hero__journey-num {
  background: var(--cima-plum);
  color: #ffffff;
}

.hero__card--inline .hero__journey-title {
  color: var(--text-primary);
}

.hero__card--inline .hero__journey-desc {
  color: var(--text-body);
}

@media (min-width: 768px) {
  .hero__journey--horizontal {
    flex-direction: row;
    gap: 0;
  }

  .hero__journey--horizontal .hero__journey-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid #e9ecef;
    padding: var(--space-md);
  }

  .hero__journey--horizontal .hero__journey-step:last-child {
    border-right: none;
  }
}

.hero__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.hero__card-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-gradient);
  box-shadow: 0 4px 12px var(--cima-plum-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.hero__card-icon .svg-icon {
  width: 22px;
  height: 22px;
}

.hero__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.hero__card-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Journey steps in hero card */
.hero__journey {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__journey-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__journey-step:last-child {
  border-bottom: none;
}

.hero__journey-num {
  min-width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.hero__journey-num .svg-icon {
  width: 16px;
  height: 16px;
}

.hero__journey-step--active .hero__journey-num {
  background: var(--cima-plum);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--cima-plum-glow);
}

/* Tier-specific colors for inline card */
.hero__card--inline .hero__journey-step--operational .hero__journey-num {
  background: var(--cq-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(51, 122, 183, 0.3);
}

.hero__card--inline .hero__journey-step--management .hero__journey-num {
  background: #2D9B83;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 155, 131, 0.3);
}

.hero__card--inline .hero__journey-step--strategic .hero__journey-num {
  background: var(--cima-plum);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--cima-plum-glow);
}

.hero__card--inline .hero__journey-step--cgma .hero__journey-num {
  background: #B8860B;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.hero__journey-text {
  flex: 1;
}

.hero__journey-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.hero__journey-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.hero__journey-step--active .hero__journey-title {
  color: #ffffff;
}

.hero__journey-step--active .hero__journey-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Intake Dates Bar ---------- */
.intake-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-md) 0;
}

.intake-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.intake-date {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  color: #ffffff;
}

.intake-date__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
}

.intake-date__icon .svg-icon {
  width: 20px;
  height: 20px;
}

.intake-date--primary .intake-date__icon {
  color: var(--cq-red-light);
}

.intake-date__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.intake-date__value {
  font-size: 16px;
  font-weight: 700;
}

.intake-date--primary .intake-date__value {
  color: #ffffff;
}

.intake-date--future {
  opacity: 0.35;
}

.intake-date__divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Pain Points Section ---------- */
.pain-points {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.pain-points__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(51, 122, 183, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(188, 1, 0, 0.06) 0%, transparent 60%);
}

.pain-points .section-title {
  color: #ffffff;
}

.pain-points .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

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

.pain-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(215, 45, 60, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cq-red-light);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-base);
}

.pain-card__icon .svg-icon {
  width: 24px;
  height: 24px;
}

.pain-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
}

.pain-card__problem {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.pain-card__solution {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pain-card__solution-icon {
  color: var(--cq-green);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pain-card__solution-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-weight: 500;
}

/* Floating quotes */
.quote-float {
  position: relative;
  margin: var(--space-xl) auto;
  max-width: 600px;
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.quote-float__text {
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.quote-float__mark {
  font-size: 48px;
  color: var(--cq-red);
  opacity: 0.5;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-float__source {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-sm);
}

/* ---------- Features / What You Get ---------- */
.features {
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(51, 122, 183, 0.2);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 142, 170, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cima-plum);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-base);
}

.feature-card__icon .svg-icon {
  width: 26px;
  height: 26px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.feature-card__struggle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--cq-red);
  background: rgba(193, 39, 45, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--card-bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--cq-blue), var(--cq-red));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--card-bg);
  border: 3px solid var(--cq-blue);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--cq-blue);
  transition: all var(--transition-base);
}

.timeline-step:hover .timeline-step__number {
  background: var(--cq-blue);
  color: #ffffff;
  box-shadow: var(--shadow-glow-blue);
}

.timeline-step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.timeline-step__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* ---------- Social Proof / Stats ---------- */
.social-proof {
  position: relative;
  overflow: hidden;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

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

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--cq-blue);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
}

/* SVG Icons Unified Styling */
.svg-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin="round";
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-base), color var(--transition-base);
}

.svg-icon--pulse {
  animation: svg-pulse 2s ease-in-out infinite;
  color: var(--cq-red-light);
}

@keyframes svg-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.star-icon {
  width: 18px;
  height: 18px;
  color: #f5a623;
  display: inline-block;
  vertical-align: middle;
}

/* Trust Badges Grid */
.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.trust-badge__icon {
  width: 18px;
  height: 18px;
  color: var(--cq-blue);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin="round";
  transition: color var(--transition-base);
}

.trust-badge:hover {
  background: #ffffff;
  border-color: var(--cima-plum);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-badge:hover .trust-badge__icon {
  color: var(--cima-plum);
}

/* Testimonials Carousel */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-sm);
  box-sizing: border-box;
}

.testimonial-slide__card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-slide__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-sm);
  display: block;
  border: none;
}

.testimonial-slide__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-slide__name {
  font-weight: 700;
  font-size: 15px;
}

.testimonial-slide__role {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-slide__stars {
  margin-bottom: var(--space-sm);
  color: #F59E0B;
}

.testimonial-slide__stars .star-icon {
  width: 18px;
  height: 18px;
}

.testimonial-slide__author {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.carousel-btn:hover {
  background: var(--cq-blue);
  color: white;
  border-color: var(--cq-blue);
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: var(--space-md);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--cq-blue);
  transform: scale(1.2);
}

/* ---------- FAQ Section ---------- */
.faq {
  background: var(--card-bg);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--cq-blue);
}

.faq-item__icon {
  font-size: 24px;
  color: var(--cq-blue);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer-inner {
  padding: 0 0 var(--space-md) 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--hero-gradient);
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(188, 1, 0, 0.15) 0%, transparent 60%);
}

.final-cta .section-title {
  color: #ffffff;
}

.final-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.final-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(215, 45, 60, 0.12);
  border: 1px solid rgba(215, 45, 60, 0.25);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.final-cta__urgency .svg-icon {
  width: 18px;
  height: 18px;
}

/* Premium Digital Countdown Styling */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-xl);
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 90px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.countdown__block:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.countdown__number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #dcdfe3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.countdown__colon {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  animation: svg-pulse 1.5s ease-in-out infinite;
  align-self: center;
  padding-bottom: 20px;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.final-cta__sponsor {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(70, 95, 136, 0.3);
  border: 1px solid rgba(70, 95, 136, 0.4);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.final-cta__sponsor-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
}

.final-cta__sponsor-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: var(--space-md);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col--brand {
  gap: var(--space-sm);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  width: fit-content;
}

.footer__logo img {
  height: 40px;
  max-width: 200px;
  width: auto;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
  line-height: 1.6;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-sm);
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.footer__social:hover {
  background: var(--cq-blue);
  color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__text {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .timeline::before {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Pricing & Subscriptions ---------- */
.pricing {
  position: relative;
  background: var(--cima-purple-dark);
}

.pricing-toggle-container {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin: 32px auto 0;
}

.pricing-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  border-radius: calc(var(--radius-sm) - 2px);
  cursor: pointer;
  transition: all var(--transition-base);
}

.pricing-toggle-btn:hover {
  color: #ffffff;
}

.pricing-toggle-btn.active {
  background: var(--cima-plum);
  color: #ffffff;
  box-shadow: var(--shadow-glow-purple);
}

.pricing-toggle-btn .toggle-badge {
  font-size: 10px;
  background: var(--cq-blue);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  display: inline-block;
}

.pricing-toggle-btn .toggle-badge--best {
  background: var(--cq-red);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: 56px;
  align-items: stretch;
}

.pricing-card {
  background: var(--cima-purple);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
  border-color: var(--cima-plum);
  box-shadow: 0 15px 35px var(--cima-plum-glow);
}

.pricing-card--featured:hover {
  border-color: var(--cima-plum-light);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cima-plum);
  color: #ffffff;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: var(--shadow-glow-purple);
  white-space: nowrap;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 8px;
}

.pricing-card__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.pricing-card__currency {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  align-self: flex-start;
  margin-top: 4px;
  margin-right: 2px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.pricing-card__period {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 6px;
}

.pricing-card__body {
  flex-grow: 1;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__features li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card__features li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

.pricing-card__features li.included::before {
  content: "✓";
  color: #10b981;
}

.pricing-card__features li.excluded {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.pricing-card__features li.excluded::before {
  content: "×";
  color: #ef4444;
  text-decoration: none;
  display: inline-block;
}

.pricing-card__footer {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #pricing-platinum {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  #pricing-platinum {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 64px;
    --space-3xl: 80px;
    --nav-height: 64px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: rgba(26, 28, 28, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-lg);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  }

  .hero__stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .hero__stat {
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .stat-card__number {
    font-size: 32px;
  }

  .trust-logos {
    gap: var(--space-md);
  }

  .intake-bar__inner {
    gap: var(--space-sm);
  }

  .intake-date__divider {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .final-cta__buttons {
    flex-direction: column;
  }

  .final-cta__buttons .btn {
    width: 100%;
  }

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


}

/* ---------- Flip Cards (Struggles & Solutions) ---------- */
.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.flip-card-scene {
  perspective: 1000px;
}

.flip-card {
  position: relative;
  width: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.flip-card.is-flipped {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.flip-card__front {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--cq-red);
}

.flip-card__back {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid #2D9B83;
  transform: rotateY(180deg);
}

.flip-card__front:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: var(--cq-red);
}

.flip-card.is-flipped .flip-card__back {
  background: rgba(255, 255, 255, 0.07);
}

.flip-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.flip-card__icon .svg-icon {
  width: 24px;
  height: 24px;
}

.flip-card__icon--struggle {
  background: rgba(215, 45, 60, 0.12);
  color: var(--cq-red-light);
}

.flip-card__icon--solution {
  background: rgba(45, 155, 131, 0.12);
  color: #2D9B83;
}

.flip-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-xs);
}

.flip-card__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex: 1;
}

.flip-card__back .flip-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.flip-card__hint {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  margin-top: var(--space-sm);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.flip-card:hover .flip-card__hint {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .flip-cards-grid {
    grid-template-columns: 1fr;
  }

  .flip-card {
    min-height: 290px;
  }
}

/* Quick Queries section styles */
.quick-queries {
  margin-top: var(--space-lg);
  text-align: center;
}

.quick-queries__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  margin-bottom: 12px;
}

.quick-queries--light .quick-queries__title {
  color: var(--text-muted);
}

.quick-queries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.quick-query-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast) ease;
}

.quick-query-btn:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--cq-whatsapp);
  color: #ffffff;
  transform: translateY(-1px);
}

.quick-query-btn svg {
  width: 14px;
  height: 14px;
}

/* Light background variation */
.quick-queries--light .quick-query-btn {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.quick-queries--light .quick-query-btn:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: var(--cq-whatsapp);
  color: var(--dark);
}

