/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --dark: #2f2f2f;
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffde59;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-400: #888;
  --grey-600: #555;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1180px;
}

/* === LAYOUT === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }

.section {
  padding: 96px 0;
}
.section.dark {
  background: var(--dark);
  color: var(--white);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 2.8vw, 28px); }
h4 { font-size: 19px; font-weight: 700; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  font-size: 18px;
  color: var(--grey-400);
  max-width: 720px;
  margin: 0 auto 56px;
}
.dark .section-sub { color: #c4c4c4; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.dark .eyebrow { color: var(--black); }

.highlight {
  background: linear-gradient(180deg, transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 222, 89, 0.4);
}
.btn-ghost {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.dark .btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 20px 36px; font-size: 18px; }
.arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--black);
}
.logo-dot { color: var(--yellow); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--black); }

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  background: var(--white);
  text-align: center;
}
.hero-title {
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--grey-600);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-600);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 222, 89, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 222, 89, 0.1); }
}

/* === TRUST === */
.trust {
  background: var(--grey-100);
  padding: 40px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 12px 36px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -22px;
  color: var(--yellow);
}

/* === VSL (inside hero) === */
.hero-vsl {
  max-width: 820px;
  margin: 0 auto 32px;
}
.vsl-video {
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

/* Compact hero so the whole thing fits on desktop without scrolling */
@media (min-width: 901px) {
  .hero {
    padding: 24px 0;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
  }
  .hero .container { width: 100%; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero-title {
    font-size: clamp(34px, 3.6vw, 50px);
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .hero-vsl {
    max-width: 620px;
    margin: 0 auto 22px;
  }
  .hero-ctas { margin-bottom: 16px; }
}
@media (min-width: 901px) and (max-height: 800px) {
  .hero-vsl { max-width: 540px; }
  .hero-title { font-size: clamp(30px, 3vw, 42px); }
}

/* Compact hero so the whole thing fits on mobile without scrolling */
@media (max-width: 900px) {
  .hero {
    padding: 20px 0;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
  }
  .hero .container { width: 100%; }
  .hero .eyebrow { margin-bottom: 12px; font-size: 11px; padding: 4px 10px; }
  .hero-title {
    font-size: clamp(26px, 6.5vw, 38px);
    margin-bottom: 12px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .hero-vsl { margin: 0 auto 16px; }
  .hero-ctas { margin-bottom: 12px; gap: 10px; }
  .hero-meta { font-size: 12px; }
}
@media (max-width: 560px) {
  .hero { padding: 16px 0; }
  .hero-title { font-size: clamp(22px, 6vw, 30px); margin-bottom: 10px; }
  .hero-sub { font-size: 13px; margin-bottom: 14px; }
  .hero-vsl { margin: 0 auto 14px; }
  .hero-ctas { margin-bottom: 10px; gap: 8px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 14px; }
  .hero-meta { font-size: 11px; }
  .hero .eyebrow { margin-bottom: 10px; }
}

/* === REELS GRID === */
.reels-section {
  background: var(--grey-100);
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.reel-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.reel-video {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  background: var(--black);
  overflow: hidden;
}
.reel-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.reel-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px 12px;
  gap: 12px;
}
.reel-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-600);
}
.reel-stat svg {
  width: 18px;
  height: 18px;
  color: var(--dark);
  flex-shrink: 0;
}
.reel-stat strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
}
@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 320px;
  }
}

/* === SCROLL-DOWN BUTTON === */
.scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  margin-top: 32px;
  box-shadow: 0 8px 24px rgba(255,222,89,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: bounce-down 1.8s ease-in-out infinite;
}
.scroll-down:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255,222,89,0.5);
  animation-play-state: paused;
}
.scroll-down-arrow {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* === SUCCESS STORIES GRID === */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.story-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.story-card .video-wrap {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.story-body {
  padding: 28px;
}
.story-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.story-body h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.story-body p {
  font-size: 15px;
  color: #c4c4c4;
  margin-bottom: 20px;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.story-stats > div { text-align: center; }
.story-stats span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.story-stats strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
}
.story-handle {
  margin-top: 20px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--white) !important;
}
.story-handle a {
  color: var(--white);
  border-bottom: 2px solid var(--yellow);
}

/* Placeholder cards */
.story-card.placeholder {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
  opacity: 0.55;
}
.story-card.placeholder:hover {
  opacity: 0.75;
  border-color: rgba(255,222,89,0.4);
  transform: none;
}
.placeholder-video {
  background: rgba(255,255,255,0.03) !important;
  border: 1px dashed rgba(255,255,255,0.15) !important;
}
.placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.placeholder-icon {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-body { padding: 22px; }
}

/* === MARQUEE (TRUSTED BY SLIDER) === */
.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-track img {
  height: 110px;
  width: auto;
  display: block;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 560px) {
  .marquee-track img { height: 80px; }
  .marquee-track { animation-duration: 45s; }
}

/* === RESULTS / CASE GRID === */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.case-card {
  background: var(--white);
  color: var(--black);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.case-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.case-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.case-tag-row .case-tag {
  margin-bottom: 0;
}
.case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.case-card h3 { margin-bottom: 12px; }
.case-card p {
  color: var(--grey-600);
  font-size: 15px;
  margin-bottom: 24px;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.case-stats > div { text-align: center; }
.case-stats strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.case-stats span {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}

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

/* === FEATURED SLIDER === */
.featured-slider {
  position: relative;
  padding: 0 56px;
}
.slider-viewport {
  overflow: hidden;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}
.slider-track .slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 24px 8px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.slider-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 24px rgba(255,222,89,0.5);
}
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot:hover { background: var(--grey-400); }
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}
.featured-quote {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: var(--black);
  padding: 16px 20px;
  border-left: 4px solid var(--yellow);
  background: var(--grey-100);
  border-radius: 0 8px 8px 0;
  margin: 12px 0 20px;
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured-text h2 { margin-bottom: 20px; }
.featured-text p {
  font-size: 17px;
  color: var(--grey-600);
  margin-bottom: 16px;
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--grey-200);
}
.featured-stats > div { display: flex; flex-direction: column; }
.featured-stats span {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.featured-stats strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}
.featured-handle {
  margin-top: 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
}
.featured-handle a {
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
  transition: color 0.15s ease;
}
.featured-handle a:hover { color: var(--dark); }

.featured-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--grey-200);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.featured-card {
  background: var(--dark);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
}
.quote-mark {
  font-size: 80px;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 24px;
  font-family: Georgia, serif;
}
.featured-card blockquote {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 32px;
}
.quote-attr strong {
  display: block;
  font-size: 16px;
}
.quote-attr span {
  font-size: 14px;
  color: #c4c4c4;
}

/* === SERVICES === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  background: rgba(255,222,89,0.08);
  border-color: var(--yellow);
}
.service-card .num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.service-card h4 { margin-bottom: 8px; }
.service-card p {
  font-size: 15px;
  color: #c4c4c4;
  line-height: 1.5;
}

/* === PHILOSOPHY === */
.philos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philos-card {
  background: var(--grey-100);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}
.philos-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 20px;
}
.philos-card h4 { margin-bottom: 12px; }
.philos-card p {
  font-size: 15px;
  color: var(--grey-600);
}

/* === COMPARE === */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.compare-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.compare-card.good {
  background: rgba(255,222,89,0.1);
  border-color: var(--yellow);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}
.x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
}
.compare-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.compare-card p { font-size: 14px; color: #c4c4c4; line-height: 1.55; }
.compare-card.good p:not(.compare-tag) { color: #fff; }

/* === REAL LIST === */
.real-list {
  max-width: 760px;
  margin: 0 auto 48px;
}
.real-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 17px;
  color: var(--dark);
}
.real-list li:last-child { border-bottom: none; }
.x-mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  margin-top: 2px;
}

/* === LEAD GRID === */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.lead-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.lead-card.warm {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.lead-card h4 { margin-bottom: 20px; font-size: 18px; }
.lead-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
}
.lead-card.warm ul li {
  border-color: rgba(0,0,0,0.1);
  font-weight: 600;
}
.lead-card ul li:last-child { border-bottom: none; }

/* === PACKAGES === */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.pkg-card.popular {
  border: 2px solid var(--yellow);
  background: linear-gradient(180deg, rgba(255,222,89,0.05), transparent);
}
.pkg-card.alt {
  background: var(--grey-100);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.pkg-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}
.pkg-edits {
  font-size: 14px;
  color: var(--grey-400);
  font-weight: 600;
  margin-bottom: 20px;
}
.pkg-price {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pkg-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-400);
  letter-spacing: normal;
}
.pkg-plan {
  font-size: 13px;
  color: var(--grey-600);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.pkg-card ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark);
  position: relative;
  padding-left: 22px;
}
.pkg-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
  background: var(--black);
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 11px;
}
.guarantee {
  text-align: center;
  font-size: 15px;
  color: var(--grey-600);
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--radius);
  border-left: 4px solid var(--yellow);
}

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}
.plus {
  font-size: 24px;
  color: var(--yellow);
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }
.faq-a p { color: #c4c4c4; font-size: 15px; }

/* === APPLY FORM === */
.apply { background: var(--grey-100); }
.apply-head {
  text-align: center;
  margin-bottom: 48px;
}
.apply-head h2 { margin-bottom: 16px; }
.apply-head p {
  font-size: 17px;
  color: var(--grey-600);
  max-width: 560px;
  margin: 0 auto 20px;
}
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--grey-200);
}

.apply-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
}

.progress {
  height: 6px;
  background: var(--grey-200);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar {
  height: 100%;
  background: var(--yellow);
  width: 20%;
  transition: width 0.3s ease;
  border-radius: 999px;
}
.step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.step { display: none; animation: fadeIn 0.3s ease; }
.step.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.step h3 { margin-bottom: 28px; }

.apply-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  background: var(--white);
  color: var(--black);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,222,89,0.25);
}
.apply-form input.error,
.apply-form select.error,
.apply-form textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}
.apply-form textarea { resize: vertical; min-height: 100px; }

.check-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--grey-600) !important;
}
.check-row input { width: auto !important; margin: 0 !important; }
.check-row span { flex: 1; }

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-nav .btn-primary { margin-left: auto; }

.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid var(--grey-200);
  overflow: hidden;
}
.calendly-fallback {
  text-align: center;
  font-size: 14px;
  color: var(--grey-400);
  padding: 16px 0 4px;
}
.calendly-fallback a {
  color: var(--dark);
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
}
.calendly-fallback a:hover { color: var(--black); }

.success { text-align: center; padding: 24px 0; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
}
.success h3 { margin-bottom: 16px; }
.success p { color: var(--grey-600); margin-bottom: 12px; }
.muted { font-size: 14px; color: var(--grey-400) !important; }

/* === CLOSING CTA === */
.closing {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}
.closing h2 { margin-bottom: 16px; }
.closing p {
  font-size: 18px;
  color: #c4c4c4;
  margin-bottom: 32px;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: #c4c4c4;
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer .logo { color: var(--white); }
.footer-tag {
  font-size: 14px;
  margin-top: 8px;
  max-width: 320px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: #888;
  flex-wrap: wrap;
}
.disclaimer { max-width: 560px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .featured-slider {
    padding: 0 0 16px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: auto;
    bottom: 0;
    transform: none;
  }
  .slider-arrow:hover {
    transform: scale(1.08);
  }
  .slider-arrow.prev { left: 16px; }
  .slider-arrow.next { right: 16px; }
  .slider-dots { margin-top: 28px; }
  .featured { grid-template-columns: 1fr; gap: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .philos-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .apply-form { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .case-stats { grid-template-columns: repeat(3, 1fr); }
  .featured-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; justify-content: center; margin: 0 !important; }
}
