/* ===== ZEROVA — style ported 1:1 from DESIGN.md (outlierfounder.com reverse-engineered spec) ===== */

:root {
  --ink: #060612;
  --ink-muted: #69686e;
  --paper: #faf9f8;
  --paper-2: #f5f4f3;
  --paper-3: #eeecea;
  --paper-4: #e7e2dd;
  --white: #ffffff;
  --black: #000000;
  --accent-blue: #007cfa;
  --accent-blue-2: #2f9dff;
  --accent-blue-3: #0058c9;

  --shadow-card: 0px 0px 0.22px 0.6px #0606120d,
                 0px 2.7px 3px -1.3px #0606122e,
                 0px 1px 3.5px 1px #0606121a;
  --shadow-inset: inset 0px 0px 6px 0px #0606122e;

  --container: 1199px;
  --tablet: 809px;
}

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

html { scroll-behavior: smooth; }

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--accent-blue-2);
  box-shadow: 0 0 16px 2px rgba(0,124,250,0.55);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(1);
  transition: opacity 0.3s ease, scale 0.2s ease;
  will-change: transform;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-active { transform-origin: center; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  letter-spacing: 0.0025em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }
.meet-hamad-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.meet-hamad-photo {
  position: relative;
}
.meet-hamad-photo::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,124,250,0.85) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
  animation: portfolioGlowPulse 5s ease-in-out infinite;
}
.meet-hamad-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 24px;
}
@media (max-width: 809px) {
  .meet-hamad-grid { grid-template-columns: 1fr; gap: 32px; }
  .meet-hamad-photo { max-width: 360px; margin: 0 auto; }
}

/* subtle grain so cream surfaces don't look flat/digital */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== TYPE ===== */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: #b8b6c2; }

.hero-title, .section-title, .section-title-left, .cta-title {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1em;
}

.hero-title {
  font-size: 64px;
  max-width: 880px;
  margin-bottom: 24px;
}
.accent-word {
  color: var(--accent-blue);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4em;
  color: var(--ink-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 16px;
}
.section-title-left { font-size: 36px; margin-bottom: 24px; }
.section-title.light { color: var(--white); }

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 60px;
}
.section-sub.center { text-align: center; }

.center { text-align: center; }

.lead-label {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.letter-p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4em;
  color: var(--ink);
  margin-bottom: 20px;
}

.script-accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.3em;
  color: var(--accent-blue);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 10px;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--accent-blue-2) 0%, var(--accent-blue-3) 100%);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0,88,201,0.15), 0 8px 20px -6px rgba(0,88,201,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 4px 10px rgba(0,88,201,0.25), 0 14px 28px -6px rgba(0,88,201,0.55);
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 12px; }
.btn-pill { padding: 10px 22px; font-size: 14px; border-radius: 999px; }
.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(6,6,18,0.15), 0 8px 20px -6px rgba(6,6,18,0.35);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(6,6,18,0.25), 0 14px 28px -6px rgba(6,6,18,0.45);
}

/* ===== NAV (floating pill) ===== */
.nav-wrap {
  position: sticky;
  top: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-pill {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  gap: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav-wrap.scrolled .nav-pill {
  box-shadow: 0 4px 16px -4px #06061233, 0 1px 3px #0606121a;
}
.nav-pill .logo,
.nav-toggle {
  display: flex;
  align-items: center;
  padding: 8px 22px;
  border-right: 1px solid var(--paper-4);
}
.nav-toggle {
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  cursor: pointer;
}
.logo {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--accent-blue); }
.nav-pill .btn-pill { align-self: center; margin-left: 8px; }

.nav-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-top: 10px;
  padding: 10px;
  min-width: 160px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
}
.nav-dropdown.open {
  max-height: 260px;
  opacity: 1;
}
.nav-dropdown a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown a:hover {
  background: var(--paper-2);
  color: var(--ink);
}

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section-paper2 { background: var(--paper-2); }
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark .letter-p, .section-dark p { color: #cbc9d4; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
  text-align: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.hero-title { text-align: center; margin: 0 auto 24px; }
.hero-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.hero-ctas { display: flex; gap: 16px; align-items: center; justify-content: center; position: relative; }
.hero-ctas.center { justify-content: center; }

.hand-arrow {
  position: absolute;
  left: -172px;
  top: -38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-4deg);
  pointer-events: none;
  width: 150px;
}
.hand-arrow .script-accent {
  font-size: 17px;
  line-height: 1.15;
  color: var(--accent-blue);
  margin-top: 2px;
  text-align: center;
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 56px auto 20px;
  max-width: 620px;
}
.trust-line { flex: 1; height: 1px; background: #06061224; }
.trust-label { margin-bottom: 0; white-space: nowrap; font-weight: 700; }

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-logos img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.trust-logos img.round {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--paper-4);
}

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--paper-4);
  border-radius: 999px;
  padding: 8px 18px;
  margin: 0 auto 32px;
  background: var(--white);
}
.pill-eyebrow .chev { color: #d5d2cc; font-weight: 400; }

/* hero decorative background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.arc {
  position: absolute;
  border: 1px solid #06061211;
  border-radius: 50%;
}
.arc-left-1 { width: 640px; height: 640px; left: -360px; top: -80px; }
.arc-left-2 { width: 900px; height: 900px; left: -520px; top: -180px; }
.arc-right-1 { width: 640px; height: 640px; right: -360px; top: -60px; }
.arc-right-2 { width: 900px; height: 900px; right: -520px; top: -160px; }

.float-chip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%) rotate(var(--rot));
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.float-chip:hover { transform: translate(-50%, -50%) rotate(0deg) scale(1.06); }

@media (max-width: 1100px) {
  .hand-arrow { display: none; }
}
@media (max-width: 809px) {
  .float-chip { display: none; }
  .arc { display: none; }
  .trust-strip { flex-direction: column; gap: 12px; }
  .trust-line { display: none; }
}
@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}

/* ===== OFFER GRID ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.offer-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-blue-2) 0%, var(--accent-blue-3) 100%);
  clip-path: circle(0% at 15% 15%);
  transition: clip-path 0.6s cubic-bezier(.65, 0, .35, 1);
  z-index: 0;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px #06061224;
}
.offer-card:hover::before {
  clip-path: circle(150% at 15% 15%);
}
.offer-num {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  transition: color 0.45s ease 0.1s;
}
.offer-card:hover .offer-num { color: var(--ink); }
.offer-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.45s ease 0.1s;
}
.offer-card:hover h3 { color: var(--white); }
.offer-card p {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  color: var(--ink-muted);
  transition: color 0.45s ease 0.1s;
}
.offer-card:hover p { color: var(--white); }

/* ===== PORTFOLIO ===== */
.portfolio-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #050810 0%, #0a1626 55%, #0c1c30 100%);
}
.section-sub.light-muted { color: #9a9aa8; }

.portfolio-arc-1, .portfolio-arc-2 {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.portfolio-arc-1 { width: 620px; height: 620px; right: -220px; top: -260px; }
.portfolio-arc-2 { width: 780px; height: 780px; left: -320px; bottom: -420px; }

.portfolio-block { position: relative; z-index: 1; margin-top: 64px; }
.portfolio-block-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.portfolio-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 64px 0 0;
}

.portfolio-combo-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
}
.portfolio-combo-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.portfolio-video-grid { display: grid; gap: 16px; }
.portfolio-video-grid-2 { grid-template-columns: repeat(2, 1fr); }
.portfolio-video-grid-1 { grid-template-columns: 1fr; }
.portfolio-video-card {
  position: relative;
  aspect-ratio: 16/9;
  min-width: 0;
  border-radius: 14px;
  background: linear-gradient(160deg, #1c3050 0%, #101d33 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.portfolio-video-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.portfolio-video-card img,
.portfolio-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}
.portfolio-play {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}
.portfolio-video-card:hover .portfolio-play {
  transform: scale(1.08);
  background: rgba(0,0,0,0.6);
}

.portfolio-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.portfolio-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  background: linear-gradient(160deg, #0b1220 0%, #05080f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  padding: 22px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.portfolio-service-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.portfolio-service-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,124,250,0.75) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  animation: portfolioGlowPulse 5s ease-in-out infinite;
}
.portfolio-service-card:hover::before { animation-play-state: paused; opacity: 1; transform: scale(1.15); }
@keyframes portfolioGlowPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.portfolio-service-card h4 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 8px;
}
.portfolio-service-card p {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4em;
  color: #9a9aa8;
  margin-bottom: 16px;
}
.portfolio-service-btn { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }

@media (max-width: 809px) {
  .portfolio-block { margin-top: 48px; }
  .portfolio-block-title { font-size: 24px; }
  .portfolio-divider { margin-top: 48px; }
  .portfolio-video-grid-2 { grid-template-columns: 1fr; }
  .portfolio-combo-grid { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-arc-1, .portfolio-arc-2 { width: 320px !important; height: 320px !important; }
}

/* ===== COMPARISON TABLE ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.compare-col {
  border-radius: 20px;
  padding: 40px;
}
.compare-them {
  background: var(--paper-3);
  color: var(--ink-muted);
}
.compare-us {
  background: linear-gradient(160deg, var(--accent-blue-2) 0%, var(--accent-blue-3) 100%);
  box-shadow: 0 20px 40px -12px rgba(0,88,201,0.35);
  color: var(--white);
}
.compare-head {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.compare-them .compare-head { color: var(--ink-muted); }
.compare-us .compare-head { color: var(--white); }
.compare-col li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  padding: 12px 0;
  border-top: 1px solid var(--paper-4);
}
.compare-us li { border-top: 1px solid rgba(255,255,255,0.2); }
.compare-col li:first-child { border-top: none; }
.compare-them li::before { content: "✕  "; color: #c7c5cc; }
.compare-us li::before { content: "✓  "; color: #cfe7ff; font-weight: 700; }
.compare-us .btn-white { margin-top: 24px; }
.btn-white {
  background: var(--white);
  color: var(--accent-blue-3);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
}
.btn-white:hover { transform: translateY(-2px); }

/* ===== STEPS ===== */
.process-section { position: relative; overflow: hidden; }
.process-arc {
  position: absolute;
  left: 50%;
  bottom: -420px;
  transform: translateX(-50%);
  width: 1100px;
  height: 850px;
  border-radius: 50%;
  border: 1px solid #06061212;
  pointer-events: none;
}
.process-arc::before,
.process-arc::after {
  content: "";
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid #06061210;
}
.process-arc::after { inset: 180px; }
.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 30px -18px rgba(6, 6, 18, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-blue-2) 0%, var(--accent-blue-3) 100%);
  clip-path: circle(0% at 15% 15%);
  transition: clip-path 0.6s cubic-bezier(.65, 0, .35, 1);
  z-index: 0;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 88, 201, 0.45);
}
.step-card:hover::before {
  clip-path: circle(150% at 15% 15%);
}
.step-num {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-blue);
  margin-bottom: 16px;
  transition: color 0.45s ease 0.1s;
}
.step-card:hover .step-num { color: var(--ink); }
.step-card p {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  color: var(--ink);
  transition: color 0.45s ease 0.1s;
}
.step-card:hover p { color: var(--white); }

/* ===== QUICK STAT STRIP ===== */
.stat-strip-section { padding: 56px 0; background: var(--paper); }
.stat-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-mini { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-mini-num {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-mini-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink-muted);
}
.stat-mini-divider { width: 1px; height: 52px; background: var(--paper-4); }
@media (max-width: 809px) {
  .stat-mini-divider { display: none; }
  .stat-strip-inner { gap: 28px; }
}

/* ===== FEATURED TESTIMONIAL ===== */
.testimonial-feature-section { padding-top: 20px; padding-bottom: 80px; }
.testimonial-feature-section-2 { padding-top: 0; padding-bottom: 60px; background: var(--paper-2); }
.testimonial-container { max-width: 1160px; }
.testimonial-container .testimonial-card + .testimonial-card { margin-top: 32px; }
.testimonial-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  background: linear-gradient(135deg, #050810 0%, #071a33 60%, #0a2647 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.testimonial-video {
  position: relative;
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 340px;
}
.testimonial-video img,
.testimonial-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.testimonial-video img { cursor: pointer; }
.testimonial-video-head {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.testimonial-video-title { font-size: 15px; font-weight: 700; }
.testimonial-video-sub { font-size: 12px; opacity: 0.85; }
.testimonial-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(220,20,20,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease;
  cursor: pointer;
  padding: 0;
}
.testimonial-video:hover .testimonial-play { transform: translate(-50%, -50%) scale(1.08); }
.testimonial-link-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-yt-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.testimonial-claim {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  text-align: left;
  min-width: 0;
}
.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4em;
  color: var(--white);
}
.testimonial-quote u { color: var(--accent-blue-2); text-decoration-color: var(--accent-blue-2); }
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #05081080, 0 0 0 3px var(--accent-blue-2);
  flex-shrink: 0;
}
.testimonial-avatar-logo {
  object-fit: contain;
  background: var(--white);
  padding: 9px;
}
.testimonial-person-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--white); }
.testimonial-person-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9a9aa8;
  margin-top: 2px;
}
@media (max-width: 809px) {
  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-quote { font-size: 18px; }
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.stat-card {
  background: #100f1c;
  border: 1px solid #2a2938;
  border-radius: 20px;
  padding: 40px;
}
.stat-num {
  display: block;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.stat-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.4em;
  color: #b8b6c2;
}

/* ===== TESTIMONIAL PLACEHOLDERS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.testimonial-placeholder-outer {
  background: var(--paper-4);
  border-radius: 26px;
  padding: 14px;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.7),
    inset 0 -1px 2px rgba(0,0,0,0.05),
    0 1px 0 rgba(255,255,255,0.4);
}
.testimonial-placeholder {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-shadow:
    0 1px 2px rgba(6,6,18,0.04),
    0 14px 28px -18px rgba(6,6,18,0.18);
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1;
  color: var(--paper-4);
}
.testimonial-placeholder-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--ink-muted);
  flex-grow: 1;
}
.testimonial-placeholder-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-placeholder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-3);
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-placeholder-name { font-size: 14px; font-weight: 600; }
.testimonial-placeholder-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-muted);
}
@media (max-width: 809px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ===== ACCORDION ===== */
.accordion { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
}
.accordion-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.accordion-panel p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  color: var(--ink-muted);
  padding: 0 22px 22px;
}

/* ===== FINAL CTA ===== */
.cta-section { padding: 100px 0; }
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-3) 55%, var(--ink) 130%);
  border-radius: 32px;
  padding: 90px 60px 60px;
  text-align: center;
}
.cta-arc-1, .cta-arc-2 {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.cta-arc-1 { width: 500px; height: 500px; left: -220px; top: -220px; }
.cta-arc-2 { width: 700px; height: 700px; right: -320px; bottom: -320px; }
.cta-title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .btn { position: relative; z-index: 1; }

.cta-calendly {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.35);
  padding: 8px;
  overflow: hidden;
}
.calendly-inline-widget { min-width: 280px; width: 100%; }
@media (max-width: 809px) {
  .cta-calendly { margin-top: 32px; }
}
@media (max-width: 809px) {
  .cta-card { padding: 60px 20px 40px; border-radius: 24px; }
  .cta-title { font-size: 32px; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--paper-4);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-muted);
  border: 1px solid var(--paper-4);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer-social-link:hover {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.offer-card.reveal, .step-card.reveal, .stat-card.reveal { transition-delay: var(--stagger, 0s); }

/* ===== RESPONSIVE ===== */
@media (max-width: 809px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 40px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 32px; }
  .offer-grid, .steps-grid, .stats-grid, .work-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
