/* ===========================
   RESET & BASE
   =========================== */


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #4aadfd;
  --blue-light: #a8a9f9;
  --blue-dark: #4aadfd;
  --blue-50: #fdf2f8;
  /*--blue: #018AF5;*/
  --dark: #0f0f0f;
  --dark2: #1a1a2e;
  --gray: #4b5563;
  --light-gray: #f1f5f9;
  --border: rgba(72, 99, 236, 0.15);
  --nav-bg: rgba(225, 255, 255, 0.25);
  --font: 'Inter', sans-serif;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-pink: 0 8px 40px rgba(72, 97, 236, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: #f8f6ff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 800px;
}

.section-pad {
  padding: 100px 0;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

.subsection-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin: 80px 0 12px;
  text-align: center;
}

.subsection-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 12px;
}

.gradient-text {
  background: linear-gradient(135deg, #4aadfd, #018AF5, #4aadfd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blue-text {
  color: var(--blue);
}

.small-text {
  font-size: 13px;
  color: var(--gray);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4aadfd, #018AF5);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.45);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 100px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--blue);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  border: 2px solid var(--blue);
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-large {
  font-size: 17px;
  padding: 18px 36px;
}

.btn-note {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  display: block;
  text-align: center;
  width: 100%;
}

.btn-waiting-list {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #4aadfd, #018AF5);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(72, 113, 236, 0.3);
  white-space: nowrap;
}

.btn-waiting-list:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(72, 154, 236, 0.4);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1160px;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--nav-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 100px;
  padding: 10px 18px 10px 22px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08),
   0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 6px;
}

.nav-logo-img {
  height: 36px;
  width: 36px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  padding: 7px 12px;
  border-radius: 100px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #111;
  background: rgba(0, 0, 0, 0.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(72, 110, 236, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: flex;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.mobile-link:hover {
  background: var(--blue-50);
  color: var(--blue);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, #e8f1ff 0%, #f0ebff 30%, #e8f5ff 60%, #fff0fb 100%);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72, 107, 236, 0.25), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 156, 250, 0.25), transparent);
  bottom: -50px;
  left: -80px;
  animation-delay: 2s;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(63, 102, 244, 0.2), transparent);
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 20px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(72, 116, 236, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 13px;
  color: #9ca3af;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(72, 116, 236, 0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #4aadfd, #018AF5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  margin-top: 2px;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatAnim 4s ease-in-out infinite;
}

/* ===========================
   TICKER
   =========================== */
.ticker-section {
  background: #fff;
  border-top: 1px solid rgba(72, 116, 236, 0.1);
  border-bottom: 1px solid rgba(72, 116, 236, 0.1);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

.ticker-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 0 40px;
  letter-spacing: 0.05em;
}



@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===========================
   SERVICES
   =========================== */
.services-section {
  background: linear-gradient(180deg, #fdf2f8 0%, #f8f6ff 100%);
}

.services-section .section-title,
.services-section .section-subtitle {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(72, 116, 236, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4aadfd, #018AF5);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(72, 116, 236, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.card-dark {
  background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
  border-color: rgba(72, 116, 236, 0.3);
  color: #fff;
}

.card-dark .svc-section-label,
.card-dark .svc-tag {
  color: rgba(168, 208, 249, 0.8);
}

.card-dark h3 {
  color: #fff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.svc-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(15, 110, 236, 0.5);
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: 0.05em;
}

.svc-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(72, 129, 236, 0.15);
}

.svc-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin: 12px 0 6px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

.svc-outcome {
  font-weight: 600;
  color: #111;
  font-size: 13.5px;
}

.services-cta-box {
  background: linear-gradient(135deg, #fff5fb, #fff);
  border: 1px solid rgba(72, 124, 236, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.everything-label {
  font-size: 22px;
  font-weight: 800;
  color: #111;
}




/* ===========================
   CALCULATOR
   =========================== */
.calc-section {
  background: #f8f6ff;
}

.calc-section .section-title,
.calc-section .section-subtitle {
  text-align: center;
}

.calc-card {
  background: #fff;
  border: 1px solid rgba(72, 116, 236, 0.15);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calc-label {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  flex: 1;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-50);
  border: 1px solid rgba(72, 116, 236, 0.2);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
}

.dollar-sign {
  font-size: 15px;
  color: var(--blue);
  font-weight: 600;
}

.calc-input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: var(--font);
  width: 120px;
  text-align: right;
}

.calc-row>.calc-input {
  background: var(--blue-50);
  border: 1px solid rgba(72, 116, 236, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  font-family: var(--font);
  width: 160px;
  text-align: right;
  outline: none;
}

.calc-divider {
  height: 1px;
  background: rgba(72, 116, 236, 0.12);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
}

.calc-result-row.highlight {
  background: linear-gradient(135deg, #fff5fb, #fff0f7);
  border: 1px solid rgba(72, 116, 236, 0.2);
}

.calc-result-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.calc-result-value {
  font-size: 22px;
  font-weight: 900;
  color: #111;
}

.calc-disclaimer {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

.calc-cta {
  align-self: center;
}

/* ===========================
   PROCESS
   =========================== */
.process-section {
  background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
}

.process-section .section-title,
.process-section .section-subtitle {
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(72, 116, 236, 0.3), rgba(72, 116, 236, 0.3));
  margin-top: 50px;
  position: relative;
}

.process-connector::after {
  content: '→';
  position: absolute;
  top: -12px;
  right: -6px;
  font-size: 16px;
  color: var(--blue);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(72, 116, 236, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.step-outcome {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(72, 116, 236, 0.2);
}

.process-cta {
  text-align: center;
}

/* ===========================
   COMPARE / WHY B9
   =========================== */
.compare-section {
  background: #f8f6ff;
}

.compare-section .section-title,
.compare-section .section-subtitle {
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.compare-card {
  background: #fff;
  border: 1px solid rgba(72, 116, 236, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.compare-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.compare-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.compare-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.compare-check {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 100px;
  display: inline-block;
}

/* ===========================
   PRICING
   =========================== */
.pricing-section {
  background: #fff;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(72, 116, 236, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: rgba(72, 116, 236, 0.4);
  background: linear-gradient(180deg, #fff5fb, #fff);
  box-shadow: 0 8px 40px rgba(72, 116, 236, 0.15);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(135deg, #4aadfd, #018AF5);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.08em;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 900;
  color: #111;
}

.pricing-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.pricing-best {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

.pricing-divider {
  height: 1px;
  background: rgba(72, 116, 236, 0.12);
}

.pricing-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 12px 0 8px;
}

.pricing-col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-col ul li {
  font-size: 13.5px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-col ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

.pricing-outcome {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  padding: 14px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}

.pricing-note {
  background: linear-gradient(135deg, #fff5fb, #f8f6ff);
  border: 1px solid rgba(72, 116, 236, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.pricing-note-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-note-inner h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
}

.pricing-note-inner p {
  font-size: 14px;
  color: var(--gray);
}

.pricing-note-inner ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-note-inner ul li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}

.pricing-note-inner ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
  background: linear-gradient(180deg, #fdf2f8 0%, #f8f6ff 100%);
}

.faq-section .section-title,
.faq-section .section-subtitle {
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(72, 116, 236, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(72, 116, 236, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  font-family: var(--font);
  text-align: left;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(72, 140, 236, 0.15);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.faq-cta p {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.faq-bullets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--gray);
}

/* ===========================
   BLOG
   =========================== */
.blog-section {
  background: #fff;
}

.blog-section .section-title,
.blog-section .section-subtitle {
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.blog-card {
  background: #f8f6ff;
  border: 1px solid rgba(72, 116, 236, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.featured-blog {
  background: linear-gradient(135deg, #fff5fb, #f8f6ff);
  border-color: rgba(72, 116, 236, 0.25);
}

.blog-tag {
  display: inline-block;
  background: linear-gradient(135deg, #4aadfd, #018AF5);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}

.blog-time {
  font-weight: 600;
}

.blog-author {
  color: var(--gray);
}

.read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  gap: 8px;
  color: var(--blue-dark);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
}

.cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(24, 66, 138, 0.3);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(72, 157, 236, 0.4), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 600px;
}

.cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-brand {
  flex: 1;
  max-width: 240px;
}

.footer-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: rgba(72, 116, 236, 0.2);
  border-color: rgba(72, 116, 236, 0.5);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  flex: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
  font-size: 11px;
}

/* ===========================
   ANIMATIONS / REVEAL
   =========================== */
.animate-fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.25s;
}

.delay-3 {
  animation-delay: 0.4s;
}

.delay-4 {
  animation-delay: 0.55s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="100"] {
  transition-delay: 0.1s;
}

.reveal[data-delay="200"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="300"] {
  transition-delay: 0.3s;
}

.reveal[data-delay="400"] {
  transition-delay: 0.4s;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 48px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .process-connector::after {
    top: 100%;
    left: -8px;
    transform: rotate(90deg);
  }

  .process-step {
    max-width: 400px;
  }

  .transformation-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .btn-waiting-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .growth-cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    flex-direction: column;
  }

  .calc-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-note {
    padding: 28px;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-features {
    flex-direction: column;
    gap: 10px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-ticker {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 64px 0;
  }

  .growth-cards-row {
    grid-template-columns: 1fr;
  }

  .navbar {
    width: calc(100% - 32px);
    top: 12px;
  }

  .nav-inner {
    padding: 10px 14px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}