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

:root {
  --orange: #D7C6A3; /* #ff6b2b*/
  --navy: #0b0f1a;
  --navy2: #0e1220;
  --card: #141927;
  --card2: #1a2035;
  --text: #f0f2f8;
  --muted: #8892a4;
  --subtle: #c5cdd9;
  --border: rgba(255, 255, 255, 0.07);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

[id] {
  scroll-margin-top: 80px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(214, 179, 106, 0.65);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-md {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 24px;
}
.bg-navy {
  background: var(--navy);
}
.bg-navy2 {
  background: var(--navy2);
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-16 {
  margin-bottom: 16px;
}
.ml {
  margin-left: 6px;
}
.center {
  text-align: center;
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-label.center {
  text-align: center;
}
.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin: 14px auto 0;
  max-width: 540px;
}
.section-header {
  margin-bottom: 56px;
}
.orange {
  color: var(--orange);
}
.muted {
  color: var(--muted);
}
.gradient-text {
  background: linear-gradient(90deg, #e0cea8, #d6d0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 30px rgba(214, 179, 106, 0.35);
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ─── CARDS ─── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* ─── FADE IN ANIMATION ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}
.delay-4 {
  transition-delay: 0.48s;
}
.delay-5 {
  transition-delay: 0.6s;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    border-bottom 0.3s;
}
.navbar.scrolled {
  background: rgba(11, 15, 26, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.logo-box {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(11, 15, 26, 0.98);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background: var(--navy);
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, #d6b36a 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(214, 179, 106, 0.12);
  border: 1px solid rgba(214, 179, 106, 0.3);
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
}
.stars-row {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 14px;
}
.stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.12);
}
.stat-pill {
  font-size: 13px;
  color: var(--muted);
}
.stat-pill strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: var(--orange);
  margin-right: 4px;
}
.hero-video {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.hero-video img {
  width: 100%;
  display: block;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 26, 0.45);
}
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(214, 179, 106, 0.5);
  transition: transform 0.2s;
}
.play-btn:hover {
  transform: scale(1.1);
}
.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(transparent, rgba(11, 15, 26, 0.9));
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

/* ─── LOGOS ─── */
.logos-section {
  padding: 40px 0;
  background: var(--navy2);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.logos-section .section-label {
  margin-bottom: 20px;
}
.logos-mask {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.logo-pill {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

/* ─── PAIN CARDS ─── */
.pain-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d6b36a, #f0d79a);
  opacity: 0;
  transition: opacity 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
}
.pain-card:hover::before {
  opacity: 1;
}

.pain-emoji {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(198, 169, 105, 0.1);
  border: 1px solid rgba(198, 169, 105, 0.18);
}
.pain-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pain-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.pain-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pain-heading .pain-emoji {
  flex-shrink: 0;
  margin-bottom: 0;
}

.pain-heading h3 {
  margin-bottom: 0;
}

/* ─── PHASE CARDS ─── */
.phase-card {
  margin-bottom: 20px;
}

.phase-card--orange .phase-icon {
  background: rgba(214, 179, 106, 0.12);
}
.phase-card--orange .phase-num {
  color: var(--orange);
}
.phase-card--orange .dot {
  background: var(--orange);
}

.phase-card--purple .phase-icon {
  background: rgba(197, 163, 95, 0.12);
}
.phase-card--purple .phase-num {
  color: #c5a35f;
}
.phase-card--purple .dot {
  background: #c5a35f;
}

.phase-card--green .phase-icon {
  background: rgba(224, 197, 133, 0.12);
}
.phase-card--green .phase-num {
  color: #e0c585;
}
.phase-card--green .dot {
  background: #e0c585;
}
.phase-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}
.phase-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.phase-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.phase-num {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
}
.phase-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin-top: 2px;
}
.phase-sub {
  font-weight: 400;
  color: var(--muted);
  font-size: 15px;
  margin-left: 6px;
}
.phase-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.result-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.orange-badge {
  background: rgba(214, 179, 106, 0.1);
  border: 1px solid rgba(214, 179, 106, 0.25);
  color: var(--orange);
}
.purple-badge {
  background: rgba(197, 163, 95, 0.1);
  border: 1px solid rgba(197, 163, 95, 0.25);
  color: #c5a35f;
}
.green-badge {
  background: rgba(224, 197, 133, 0.1);
  border: 1px solid rgba(224, 197, 133, 0.25);
  color: #e0c585;
}
.included-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--subtle);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── HOW IT WORKS ─── */
.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--card);
  border: 2px solid rgba(214, 179, 106, 0.3);
  box-shadow: 0 0 30px rgba(214, 179, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.step-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── CASE STUDIES ─── */
.case-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.case-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
}
.case-cat {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.growth-badge {
  background: rgba(214, 179, 106, 0.12);
  border: 1px solid rgba(214, 179, 106, 0.25);
  padding: 2px 6px;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--orange);
}
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.metric {
  background: var(--card2);
  padding: 12px;
  border-radius: 12px;
}
.metric-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.metric-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.case-quote {
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author-avatar {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 11px;
  color: #fff;
}
.author-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.author-title {
  font-size: 11px;
  color: var(--muted);
}
.case-stars {
  margin-left: auto;
  color: var(--orange);
  font-size: 12px;
}

/* ─── REVIEWS ─── */
.review-stars {
  color: var(--orange);
  margin-bottom: 10px;
}
.review-text {
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.65;
  margin-bottom: 12px;
}
.review-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.review-title {
  font-size: 11px;
  color: var(--muted);
}

/* ─── INCLUDED ─── */
.incl-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.incl-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.incl-icon {
  width: 44px;
  height: 44px;
  background: rgba(214, 179, 106, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.incl-list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}
.incl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--subtle);
}
.check {
  color: var(--orange);
  font-weight: 700;
}

.incl-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.incl-heading .incl-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.incl-heading h3 {
  margin-bottom: 0;
}

/* ─── FOUNDERS ─── */
.founder-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.founder-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.founder-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.founder-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  margin-top: 2px;
}
.founder-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.f-stat {
  background: var(--card2);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}
.f-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--orange);
}
.f-label {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* ─── FAQ ─── */
.faq-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--card);
  transition: border-color 0.3s;
}
.faq-item.open-item {
  border-color: rgba(214, 179, 106, 0.25);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-q span:first-child {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 18px;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
  line-height: 1;
}
.faq-item.open-item .faq-icon {
  background: rgba(214, 179, 106, 0.15);
  color: var(--orange);
}
.faq-a {
  display: none;
  padding: 0 20px 20px;
}
.faq-a.open {
  display: block;
}
.faq-a p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

/* ─── CTA ─── */
.cta-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1030 0%, #0b0f1a 50%, #1a2b10 100%);
  border: 1px solid rgba(214, 179, 106, 0.2);
}
.cta-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  pointer-events: none;
  background: radial-gradient(ellipse, #d6b36a 0%, transparent 70%);
  filter: blur(40px);
  opacity: 0.3;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 48px;
}
.cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 16px 0;
}
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 32px;
}
.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 32px;
}
.perk {
  font-size: 13px;
  color: var(--subtle);
}
.cta-btn {
  display: inline-flex;
  margin: 0 auto;
}
.cta-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

/* ─── FOOTER ─── */
.footer {
  background: #080c14;
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 260px;
}
.footer-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--text);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.social:hover {
  opacity: 0.7;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}


/* ═══════════════════════════════════════
   GROWTH AUDIT FORM
   ═══════════════════════════════════════ */

.audit-section {
  background: var(--navy2);
}

.audit-form {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--navy);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

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

.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(198, 169, 105, 0.12);
}

.audit-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.hidden-field {
  display: none;
}

@media (max-width: 600px) {
  .audit-form {
    padding: 22px;
  }

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

  .form-group-full {
    grid-column: auto;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .phase-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns a {
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .stat-divider {
    display: none;
  }
  .cta-inner {
    padding: 48px 24px;
  }
  .section {
    padding: 64px 20px;
  }
}

/* ─── LUCIDE ICONS ─── */

.pain-emoji,
.phase-icon,
.step-icon,
.incl-icon {
  color: var(--orange);
}

.pain-emoji svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}

.phase-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.step-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.incl-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════
   CALENDLY BOOKING SECTION
   ═══════════════════════════════════════ */

.booking-section {
  padding: 96px 24px;
  background: var(--navy2);
}

.booking-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.calendly-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 760px;
}

/* Tablet */
@media (max-width: 900px) {
  .calendly-inline-widget {
    height: 820px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .booking-section {
    padding: 72px 12px;
  }

  .booking-heading {
    margin-bottom: 28px;
    padding: 0 12px;
  }

  .calendly-container {
    border-radius: 14px;
  }

  .calendly-inline-widget {
    min-width: 280px;
    height: 1050px;
  }
}

/* CENTER PROVEN RESULTS CARDS ON TABLET AND MOBILE */

@media (max-width: 900px) {
  #results .grid-2 {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    justify-content: center;
    width: 100% !important;
  }

  #results .grid-2 > .card {
    width: 100% !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 600px) {
  #results {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #results .container {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #results .grid-2 > .card {
    max-width: 100% !important;
  }
}

@media (max-width: 500px) {
  .btn-primary,
  .nav-cta,
  .cta-btn {
    gap: 4px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .btn-outline {
  gap: 4px;

  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
}

  #nav-btn .nav-cta{
  padding: 3px 5px !important;
  border-radius: 6px !important;
}
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--navy);
}

.thank-you-card {
  width: 100%;
  max-width: 620px;
  padding: 48px 32px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.thank-you-card h1 {
  margin-bottom: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 5vw, 48px);
}

.thank-you-card p:not(.section-label) {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.7;
}


@media (max-width: 600px) {
  #founders {
    padding-left: 16px;
    padding-right: 16px;
  }

  #founders .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }

  #founders .grid-2 {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  #founders .founder-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .phase-top {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    column-gap: 12px;
    row-gap: 10px;
    margin-bottom: 18px;
  }

  .phase-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .phase-top > div:last-child {
    display: contents;
  }

  .phase-num {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
  }

  .phase-title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    text-align: center;
  }

  .phase-sub {
    display: block;
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.45;
  }
}