/* ============================================================
   BOOST YOURS — Shared Stylesheet
   King Kong Design System Applied
   ============================================================ */

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

:root {
  --orange:        #7248FF;
  --orange-hover:  #5C33E8;
  --orange-light:  #F0EAFF;
  --orange-pale:   #EAE0FF;
  --orange-tint:   #F0EAFF;
  --navy-dark:     #0D0A1A;
  --navy:          #1A0E3D;
  --navy-mid:      #1A0E3D;
  --navy-light:    #2D1B6E;
  --green:         #50B96B;
  --gold:          #DA9A40;
  --light-bg:      #F9F9F9;
  --white:         #ffffff;
  --text:          #111111;
  --text-muted:    #6b7280;
  --text-dim:      #4b5563;
  --border:        #e5e7eb;
  --font:          'Inter', sans-serif;
  --container:     1140px;
  --radius:        8px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media (min-width: 992px) { .section { padding: 160px 0; } }

.section-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }
.section-title .accent { color: var(--orange); }

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
}

.section-sub.light { color: var(--text-dim); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── KK Stripes Decoration ─────────────────────────────────── */
.stripes {
  width: 100%;
  height: 40vw;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: repeat(10, 1fr);
  transform: skewY(-8deg);
  transform-origin: 0;
  position: absolute;
  z-index: 1;
  bottom: 0;
  margin-bottom: -25vw;
  pointer-events: none;
}
@media (min-width: 992px) {
  .stripes {
    transform: skewY(-11deg);
    height: 31vw;
    margin-bottom: -24.5vw;
  }
}

.stripes-bg { grid-column: 1 / -1; grid-row: 1 / -1; }

/* Orange theme stripes */
.stripes span:nth-child(2)  { grid-column: 1 / span 2;  grid-row: 3; background: rgba(114,72,255,.7); }
.stripes span:nth-child(3)  { grid-column: 1 / span 5;  grid-row: 4; background: #233759; }
.stripes span:nth-child(4)  { grid-column: 1 / span 4;  grid-row: 5; background: rgba(114,72,255,.5); }
.stripes span:nth-child(5)  { grid-column: 4 / span 7;  grid-row: 5; background: #1e3a5f; }
.stripes span:nth-child(6)  { grid-column: 28 / span 3; grid-row: 4; background: #1e3a5f; }
.stripes span:nth-child(7)  { grid-column: 25 / span 6; grid-row: 5; background: rgba(114,72,255,.3); }
.stripes span:nth-child(8)  { grid-column: 24 / span 4; grid-row: 6; background: rgba(114,72,255,.5); }

/* ── Background Container ──────────────────────────────────── */
.bg-container {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-container > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-skewed {
  transform: skewY(-8deg);
  transform-origin: 0;
  top: 5vw !important;
}
@media (min-width: 992px) { .bg-skewed { transform: skewY(-11deg); top: 9vw !important; } }

.bg-skewed > div {
  transform: scale(1.3) skewY(8deg);
}
@media (min-width: 992px) { .bg-skewed > div { transform: scale(1.3) skewY(11deg); } }

/* ── Video Background ──────────────────────────────────────── */
.video-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.video-bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  opacity: .82;
}
.video-bg-wrap iframe,
.video-bg-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  pointer-events: none;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .1s;
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }

.btn-navy { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .82rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: .5rem 1.25rem;
  border-radius: 4px;
  transition: background .2s !important;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
}
.has-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  min-width: 180px;
  padding: .5rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
/* Bridge the gap so mouse doesn't lose hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex !important;
  align-items: center;
  padding: .65rem 1.25rem !important;
  font-size: .82rem !important;
  color: rgba(255,255,255,.7) !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .15s, color .15s !important;
}
.nav-dropdown a:hover {
  background: rgba(114,72,255,.15);
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #0d1826;
  padding: 1rem 24px 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li { border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-mobile ul li a {
  display: block;
  padding: .9rem 0;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s;
}
.nav-mobile ul li a:hover { color: var(--orange); }
.nav-mobile .nav-cta {
  margin-top: 1rem;
  display: inline-block;
  padding: .75rem 1.5rem;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  position: relative;
  padding: 140px 0 200px;
}

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

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-stars {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
}
.hero-stars .stars { color: var(--gold); letter-spacing: 2px; margin-right: 6px; }

.scroll-arrow {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.3);
  font-size: 1.4rem;
  animation: bounce 2.5s ease-in-out infinite;
  z-index: 2;
  cursor: pointer;
}

/* ── Stats Counter ─────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-label {
  font-size: .72rem;
  color: #9ca3af;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Opening Letter ────────────────────────────────────────── */
.letter-section {
  background: var(--navy);
  color: var(--white);
}

.letter-content {
  max-width: 680px;
  margin: 0 auto;
}

.letter-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.2em;
}

.letter-content p strong,
.letter-content .highlight {
  color: var(--white);
  font-weight: 700;
}

.letter-content .orange-text { color: var(--orange); font-weight: 700; }

.letter-list {
  margin: 24px 0;
  padding-left: 0;
}
.letter-list li {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.letter-list li::before {
  content: '"';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.letter-wants {
  border-left: 3px solid var(--orange);
  padding-left: 24px;
  margin: 28px 0;
}
.letter-wants li {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  padding: 4px 0;
}

/* ── Offering Cards ────────────────────────────────────────── */
.offering-section { background: var(--light-bg); }

.offering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 60px;
}
@media (min-width: 768px) { .offering-grid { grid-template-columns: 1fr 1fr; } }

.offer-card {
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.offer-card.light {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
}

.offer-card.dark {
  background: var(--navy);
  border: 1px solid #1e3a5f;
}

.offer-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.offer-badge.orange { background: var(--orange-pale); color: var(--orange); }
.offer-badge.navy   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }

.offer-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.offer-card.light h3 { color: var(--navy); }
.offer-card.dark h3  { color: var(--white); }

.offer-card .offer-sub {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.offer-card.light .offer-sub { color: var(--text-muted); }
.offer-card.dark  .offer-sub { color: rgba(255,255,255,.4); }

.offer-features {
  margin-bottom: 32px;
}
.offer-features li {
  font-size: .88rem;
  padding: 9px 0;
  border-bottom: 1px solid;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.offer-card.light .offer-features li { color: #374151; border-color: var(--border); }
.offer-card.dark  .offer-features li { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.08); }
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Anti-Retainer / Guarantee ─────────────────────────────── */
.guarantee-section { background: var(--navy); }

.guarantee-box {
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 600px) { .guarantee-box { padding: 40px 24px; } }

.guarantee-box h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 18px;
}
.guarantee-box h2 .accent { color: var(--orange); }

.guarantee-box p {
  font-size: .92rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 32px;
}

.guarantee-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  text-align: left;
}
@media (max-width: 600px) { .guarantee-steps { grid-template-columns: 1fr; } }

.g-step { background: rgba(255,255,255,.04); border-radius: 8px; padding: 18px; }
.g-step .g-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.g-step p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.5; }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-section { background: var(--white); padding: 64px 0; }

.marquee-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d1d5db;
  margin-bottom: 36px;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
}

.marquee-track.left  { animation: scrollMarqueeLeft  40s linear infinite; }
.marquee-track.right { animation: scrollMarqueeRight 40s linear infinite; margin-top: 12px; }

.marquee-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin: 0 28px;
  flex-shrink: 0;
  display: block;
}
.marquee-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  margin: 0 8px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-fade-l {
  position: absolute; left: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(90deg, var(--white) 30%, transparent);
  z-index: 2; pointer-events: none;
}
.marquee-fade-r {
  position: absolute; right: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(-90deg, var(--white) 30%, transparent);
  z-index: 2; pointer-events: none;
}

/* Dark marquee variant */
.marquee-section.dark { background: var(--navy-dark); }
.marquee-section.dark .marquee-label { color: #374151; }
.marquee-section.dark .marquee-pill { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.marquee-section.dark .marquee-fade-l { background: linear-gradient(90deg, var(--navy-dark) 30%, transparent); }
.marquee-section.dark .marquee-fade-r { background: linear-gradient(-90deg, var(--navy-dark) 30%, transparent); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--light-bg); }

.testimonial-swiper { padding-bottom: 56px !important; }

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.test-stars { color: var(--gold); font-size: .85rem; letter-spacing: 3px; margin-bottom: 14px; }

.test-quote {
  font-size: .9rem;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.test-quote::before { content: '\201C'; color: var(--orange); font-size: 1.4rem; line-height: 0; vertical-align: -4px; margin-right: 3px; }

.test-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.test-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.test-company { font-size: .73rem; color: #9ca3af; margin-top: 2px; }
.test-result {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.test-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 12px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  transition: gap .2s;
}
.test-video-btn:hover { gap: 10px; }
.test-video-btn .play-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
}

/* ── Video Modal ───────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.video-modal.active { opacity: 1; pointer-events: all; }

.video-modal-inner {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  font-family: var(--font);
  transition: color .2s;
}
.video-modal-close:hover { color: var(--white); }

.video-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Case Study Slider ─────────────────────────────────────── */
.cases-section { background: var(--navy); padding: 100px 0 120px; }
@media (min-width: 992px) { .cases-section { padding: 160px 0 180px; } }

.case-swiper {
  overflow: visible !important;
  padding-bottom: 60px !important;
}

.case-slide {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: grab;
  background: var(--navy-mid);
}
.case-slide:active { cursor: grabbing; }

.case-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.case-slide:hover .case-slide-img { transform: scale(1.04); }

.case-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,14,26,.92) 0%, rgba(7,14,26,.3) 50%, transparent 100%);
}

.case-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.case-industry {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.case-slide-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.case-slide-content .case-result {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}

.case-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: color .2s, gap .2s;
}
.case-slide-link:hover { color: var(--white); gap: 10px; }

.cases-cta { text-align: center; margin-top: 56px; }

/* Swiper custom */
.swiper-pagination-bullet { background: rgba(255,255,255,.3) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--orange) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--orange) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; }

/* ── Team ──────────────────────────────────────────────────── */
.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.team-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }

.team-photo {
  height: 280px;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s;
}
.team-card:hover .team-photo img { transform: scale(1.04); }

.team-body { padding: 28px 28px 32px; }
.team-role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.team-name { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.team-bio { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--light-bg); }

.faq-list { max-width: 720px; margin: 60px auto 0; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }

.faq-q {
  padding: 20px 24px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a-inner { padding: 0 24px 20px; }
.faq-item.active .faq-a { max-height: 300px; }

/* ── Final CTA ─────────────────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-8deg, transparent, transparent 40px, rgba(0,0,0,.04) 40px, rgba(0,0,0,.04) 41px);
}
.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.05em;
  line-height: .92;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-section .btn-cta-white {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
  padding: 18px 48px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: background .15s, transform .1s;
}
.cta-section .btn-cta-white:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.footer-brand .logo span { color: var(--orange); }
.footer-brand p { font-size: .82rem; color: #374151; line-height: 1.65; max-width: 220px; margin-bottom: 16px; }

.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  transition: background .2s, color .2s;
}
.footer-social-btn:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .82rem;
  color: #374151;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-address {
  font-size: .78rem;
  color: #374151;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: .75rem; color: #1f2937; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .72rem; color: #1f2937; transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }

/* ── Case Studies Page ─────────────────────────────────────── */
.cs-hero {
  background: var(--navy-dark);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-11deg, transparent, transparent 60px, rgba(114,72,255,.03) 60px, rgba(114,72,255,.03) 61px);
}
.cs-hero .container { position: relative; z-index: 1; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 60px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: #6b7280;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .cs-grid { grid-template-columns: repeat(3, 1fr); } }

.cs-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.cs-card[data-hidden="true"] { display: none; }

.cs-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}
.cs-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cs-card:hover .cs-card-img img { transform: scale(1.06); }
.cs-card-img .cs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.cs-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cs-card-body h3 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 8px;
}
.cs-card-result {
  font-size: .82rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.cs-card-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.cs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  transition: gap .2s, color .2s;
}
.cs-card-link:hover { color: var(--orange); gap: 10px; }

/* ── Case Study Detail ─────────────────────────────────────── */
.detail-hero {
  background: var(--navy-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-11deg, transparent, transparent 60px, rgba(114,72,255,.03) 60px, rgba(114,72,255,.03) 61px);
}
.detail-hero .container { position: relative; z-index: 1; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin: 60px 0;
}
@media (min-width: 640px) { .overview-grid { grid-template-columns: repeat(4, 1fr); } }

.overview-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.overview-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}
.overview-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.challenge-section { background: var(--navy); }

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

.system-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 640px) { .system-steps { grid-template-columns: repeat(3, 1fr); } }

.sys-step {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sys-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: .3;
  margin-bottom: 14px;
  line-height: 1;
}
.sys-step h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sys-step p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

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

.results-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 600px) { .results-stats { grid-template-columns: 1fr; } }

.result-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
}
.result-stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -.05em;
  line-height: 1;
}
.result-stat .lbl { font-size: .72rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; font-weight: 600; }

/* Before/After Slider */
.ba-section { background: var(--light-bg); padding: 80px 0; }

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

.ba-panel {
  width: 100%;
  height: 380px;
}
@media (max-width: 600px) { .ba-panel { height: 240px; } }

.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
}

.ba-before .ba-panel, .ba-after .ba-panel {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-label, .ba-after-label {
  position: absolute;
  bottom: 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.ba-before-label { right: 16px; background: rgba(0,0,0,.7); color: rgba(255,255,255,.7); }
.ba-after-label  { left: 16px;  background: var(--orange); color: var(--white); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--white);
  z-index: 10;
}

.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  cursor: ew-resize;
}

.ba-mobile-tabs {
  display: none;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}
@media (max-width: 500px) {
  .ba-mobile-tabs { display: flex; }
  .ba-slider { display: none; }
}

.ba-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  color: #6b7280;
  transition: all .2s;
}
.ba-tab.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.ba-mobile-view {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
@media (max-width: 500px) { .ba-mobile-view { display: block; } }

/* Quote Section */
.quote-section { background: var(--navy); padding: 80px 0; }

.quote-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 28px;
}
.quote-block blockquote::before { content: '\201C'; color: var(--orange); font-size: 3rem; line-height: 0; vertical-align: -12px; margin-right: 4px; font-style: normal; }
.quote-block .quote-name { font-size: .88rem; font-weight: 700; color: var(--orange); }
.quote-block .quote-role { font-size: .78rem; color: #4b5563; margin-top: 4px; }

/* Gallery Swiper */
.gallery-swiper .swiper-slide { border-radius: 8px; overflow: hidden; }
.gallery-swiper img { width: 100%; height: 260px; object-fit: cover; display: block; }

/* Related Cases */
.related-section { background: var(--light-bg); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* ── Animations ────────────────────────────────────────────── */
@keyframes scrollMarqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollMarqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up { animation: fadeInUp .6s ease both; }
.fade-in-up.delay-1 { animation-delay: .1s; }
.fade-in-up.delay-2 { animation-delay: .2s; }
.fade-in-up.delay-3 { animation-delay: .3s; }

/* ── Nav dropdown gap fix ── */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

/* ── Scroll Animations ── */
.anim-el {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.anim-el.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .anim-el { opacity: 1; transform: none; transition: none; }
}
