/* ============================================
   CorrectRep — Section Overhaul Styles
   ============================================ */

/* --- Fonts (BOLD weights) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --color-dark: #0f0f0f;
  --color-light: #f4f4f4;
  --color-coral: #2563eb;
  --color-coral-deep: #1d4ed8;
  --color-accent: #d0d0d0;
  --color-muted: #888;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  background-color: var(--color-light);
  color: var(--color-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img,
svg {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.container.fluid {
  max-width: 100%;
  padding: 0 4rem;
}

/* --- Animated Background Canvas --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* --- Cursor --- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-coral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor-grow {
  width: 70px;
  height: 70px;
  background: rgba(255, 94, 58, 0.12);
  border-color: transparent;
}

/* --- Noise Overlay --- */
.noise-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Section Label --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-coral);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.5);
}

.section-label--light::before {
  background: rgba(255, 255, 255, 0.3);
}

.section-label--dark {
  color: var(--color-dark);
}

.section-label--dark::before {
  background: var(--color-dark);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1;
}

h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}

.word {
  display: inline-block;
}

.line {
  overflow: hidden;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(244, 244, 244, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}

.nav__logo {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__logo-icon {
  color: var(--color-dark);
}

.nav__logo span {
  color: var(--color-coral);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 2px solid currentColor;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
}

.btn--primary:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
}

.btn--ghost {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn--ghost:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
}

.btn--dark:hover {
  background: #222;
}

.btn--white {
  background: var(--color-light);
  color: var(--color-dark);
  border: none;
}

.btn--white:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

.nav__hamburger {
  display: none;
  border: none;
  background: none;
}

/* --- Mobile Menu --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-dark);
  color: var(--color-light);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.8s var(--ease-expo);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 3rem;
  color: var(--color-light);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.hero__circle--2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
}

.hero__circle--3 {
  width: 180px;
  height: 180px;
  top: 18%;
  left: 14%;
  border-color: rgba(37, 99, 235, 0.16);
}

.hero__circle--4 {
  width: 460px;
  height: 460px;
  bottom: -220px;
  right: 28%;
  border-color: rgba(0, 0, 0, 0.05);
}

.hero__line {
  position: absolute;
  background: rgba(0, 0, 0, 0.04);
}

.hero__line--1 {
  width: 1px;
  height: 100%;
  left: 25%;
  top: 0;
}

.hero__line--2 {
  width: 1px;
  height: 100%;
  left: 75%;
  top: 0;
}

.hero__line--3 {
  width: 100%;
  height: 1px;
  left: 0;
  top: 62%;
}

.hero__artifact {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: rgba(37, 99, 235, 0.05);
  backdrop-filter: blur(2px);
  animation: artifactDrift 10s ease-in-out infinite;
}

.hero__artifact--1 {
  width: 120px;
  height: 120px;
  top: 14%;
  right: 18%;
  --artifact-rot: 20deg;
}

.hero__artifact--2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 32%;
  --artifact-rot: -18deg;
  animation-delay: 1.5s;
}

.hero__artifact--3 {
  width: 48px;
  height: 180px;
  top: 24%;
  left: 64%;
  --artifact-rot: 26deg;
  animation-delay: 3s;
}

.hero__vector {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  animation: heroVectorFloat 10s ease-in-out infinite;
}

.hero__vector--1 {
  width: 160px;
  height: 160px;
  left: 8%;
  top: 58%;
}

.hero__vector--2 {
  width: 220px;
  height: 120px;
  right: 12%;
  top: 10%;
  animation-delay: 1.8s;
}

@keyframes heroVectorFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes artifactDrift {

  0%,
  100% {
    transform: translateY(0) rotate(var(--artifact-rot, 0deg));
  }

  50% {
    transform: translateY(-14px) rotate(calc(var(--artifact-rot, 0deg) + 3deg));
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

.hero__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-coral);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title .word.accent {
  font-family: var(--font-sans);
  font-weight: 900;
  font-style: normal;
  color: var(--color-coral);
}

.hero__title .word.bracket {
  color: var(--color-coral);
  font-weight: 300;
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 4rem;
  gap: 2rem;
}

.hero__bottom-left {
  max-width: 460px;
}

.hero__desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero__desc strong {
  font-weight: 800;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
}

.hero__stats-row {
  display: flex;
  gap: 3rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-coral);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }

  100% {
    top: 100%;
  }
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 9rem 0;
  background: #f7f8fb;
  position: relative;
  z-index: 2;
}

.services__header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.services__header h2 {
  margin-bottom: 1.2rem;
}

.services__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  font-weight: 500;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  right: -26px;
  top: -26px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.16);
  transform: rotate(18deg);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
}

.service-card__num {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: 800;
}

.service-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
}

.service-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 18px;
  height: 18px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 1rem;
}

.service-card__list {
  margin-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.service-card__list li {
  font-size: 0.86rem;
  color: #1f2937;
  line-height: 1.5;
}

/* ================================================
   SOCIAL PROOF
   ================================================ */
.social-proof {
  padding: 9rem 0;
  background: #0f172a;
  color: var(--color-light);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.social-proof::before {
  content: '';
  position: absolute;
  right: -140px;
  top: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

.social-proof__header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 3rem;
}

.social-proof__header h2 {
  color: var(--color-light);
  margin-bottom: 1.1rem;
}

.social-proof__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.72;
}

.social-proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.4);
}

.proof-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
}

.proof-card__body {
  padding: 1.3rem;
}

.proof-card__quote {
  font-family: var(--font-serif);
  font-size: 1.03rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.proof-card__meta {
  font-size: 0.8rem;
  opacity: 0.74;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.proof-card__result {
  font-size: 0.84rem;
  color: #93c5fd;
  font-weight: 700;
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  padding: 10rem 0;
  background: var(--color-light);
  position: relative;
  z-index: 2;
}

.process__header {
  text-align: center;
  margin-bottom: 5rem;
}

.process__header h2 {
  margin-bottom: 1.5rem;
}

.process__desc {
  font-size: 1.1rem;
  color: var(--color-muted);
  font-weight: 500;
}

.process__vector-stack {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.process__vector-stack svg {
  width: 56px;
  height: 56px;
  opacity: 0.9;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.process__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease-expo);
}

.process__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.process__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.process__marker {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-coral);
}

.process__badge {
  background: var(--color-coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.process__step-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.process__step-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.process__step-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.2rem;
}

.process__duration,
.process__cost {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.process__cost {
  color: var(--color-coral);
  font-weight: 700;
}

/* ================================================
   COVERAGE
   ================================================ */
.coverage {
  padding: 9rem 0;
  background: #0c111a;
  color: var(--color-light);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.coverage::before {
  content: '';
  position: absolute;
  inset: -25% auto auto -15%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
}

.coverage__header {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 3rem;
}

.coverage__header h2 {
  color: var(--color-light);
  margin-bottom: 1.2rem;
}

.coverage__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.72;
  font-weight: 500;
}

.coverage__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.coverage__card {
  padding: 1.6rem;
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.coverage__card::before {
  content: '';
  position: absolute;
  right: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2393c5fd' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v4l2 2'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.coverage__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.14);
  color: #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.coverage__icon svg {
  width: 18px;
  height: 18px;
}

.coverage__card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.85);
  background: rgba(37, 99, 235, 0.12);
}

.coverage__card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.coverage__card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.72;
}

/* ================================================
   PLAYBOOK
   ================================================ */
.playbook {
  padding: 9rem 0;
  background: #edf1f8;
  color: var(--color-dark);
  position: relative;
  z-index: 2;
}

.playbook__header {
  max-width: 850px;
  margin-bottom: 3rem;
}

.playbook__header h2 {
  margin-bottom: 1.2rem;
}

.playbook__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.playbook__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.playbook__item {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid rgba(15, 15, 15, 0.09);
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.playbook__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.35);
}

.playbook__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-coral);
  margin-bottom: 1rem;
}

.playbook__item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.playbook__item p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4b5563;
}

/* ================================================
   RESULTS / TESTIMONIALS
   ================================================ */
.results {
  padding: 10rem 0;
  background: var(--color-dark);
  color: var(--color-light);
  position: relative;
  z-index: 2;
}

.results__header {
  margin-bottom: 4rem;
}

.results__header h2 {
  color: var(--color-light);
}

.results__vector-chips {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.results__vector-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.results__vector-chip svg {
  width: 14px;
  height: 14px;
  color: #93c5fd;
}

.results__counter {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.results__counter-item {
  text-align: left;
}

.results__counter-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-coral);
}

.results__counter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  margin-top: 0.3rem;
}

.results__testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-expo);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.75rem;
  opacity: 0.45;
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  padding: 8rem 0;
  background: var(--color-light);
  position: relative;
  z-index: 2;
}

.faq__header {
  margin-bottom: 4rem;
}

.faq__header h2 {
  margin-bottom: 0;
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--color-coral);
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-coral);
  transition: transform 0.3s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo), padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  font-weight: 500;
}

/* ================================================
   CTA / CONTACT
   ================================================ */
.cta {
  padding: 8rem 0;
  background: var(--color-coral);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta__vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__vector {
  position: absolute;
  opacity: 0.7;
  animation: ctaVectorFloat 8s ease-in-out infinite;
}

.cta__vector--1 {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: -44px;
}

.cta__vector--2 {
  width: 220px;
  height: 120px;
  right: 8%;
  top: 14%;
  animation-delay: 1.5s;
}

@keyframes ctaVectorFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cta__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 2.5rem;
}

.cta__guarantees {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta__guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.cta__form {
  background: #fff;
  padding: 3rem;
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--color-coral);
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-weight: 500;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--color-coral);
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.45;
  max-width: 320px;
  font-weight: 500;
}

.footer__col {}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.45;
  margin-bottom: 0.8rem;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.35;
  font-weight: 500;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .results__testimonials {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .cta__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: block;
    width: 40px;
    height: 22px;
    position: relative;
    pointer-events: auto;
  }

  .nav__hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: 0.3s;
  }

  .nav__hamburger span:first-child {
    top: 0;
  }

  .nav__hamburger span:last-child {
    bottom: 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.6rem;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 3rem;
  }

  .hero__bottom-right {
    align-items: flex-start;
  }

  .hero__stats-row {
    gap: 2rem;
  }

  .results__vector-chips {
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .container.fluid {
    padding: 0 1.5rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 0;
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 6rem);
  }

  .hero__circle--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }

  .hero__circle--2 {
    display: none;
  }

  .hero__circle--4,
  .hero__artifact {
    display: none;
  }

  .hero__vector,
  .process__vector-stack,
  .cta__vectors {
    display: none;
  }

  .hero__line {
    display: none;
  }

  h2 {
    font-size: 2.5rem;
  }

  .results__counter {
    flex-direction: column;
    gap: 2rem;
  }

  .results__vector-chips {
    gap: 0.5rem;
  }

  .services {
    padding: 6rem 0;
  }

  .social-proof {
    padding: 6rem 0;
  }

  .social-proof__grid {
    grid-template-columns: 1fr;
  }

  .proof-card__image {
    height: 220px;
  }

  .results__testimonials {
    grid-template-columns: 1fr;
  }

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

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

  .cta__content {
    grid-template-columns: 1fr;
  }

  .cta__form {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    display: none;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  * {
    cursor: auto;
  }
}
