/* ============================================
   OFFERLY. — GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

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

:root {
  --white:   #FFFFFF;
  --black:   #0D0D0D;
  --dark:    #111111;
  --off:     #F7F7F7;
  --accent:  #1A1AFF;
  --muted:   #888888;
  --border:  #E5E5E5;

  --font: 'Inter', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
p { line-height: 1.7; color: #444; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) { .container { padding: 0 24px; } }
@media (max-width: 480px) { .container { padding: 0 20px; } }

/* ── Sections ── */
section { position: relative; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
}

.btn:hover::after { left: 160%; }
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.btn-dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-bottom: 1.5px solid var(--black);
  padding: 14px 0;
}
.btn-ghost::after { display: none; }
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.25); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-logo {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--black);
}
.nav-logo span { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #444;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--black); font-weight: 600; }

.nav-cta { display: flex; align-items: center; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 18px; font-weight: 600; color: var(--black); }

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-logo {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: #aaa; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #1f1f1f;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 13px; color: #555; }
.footer-bottom a { color: #555; transition: color 0.2s; }
.footer-bottom a:hover { color: #aaa; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  display: inline-block;
  padding-right: 64px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.marquee-inner span em {
  font-style: normal;
  color: #666;
  padding: 0 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 28px;
}

.hero-headline .word {
  display: inline-block;
  overflow: hidden;
}

.hero-headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Hero SVG */
.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 60px 0; }
  .hero-headline { font-size: clamp(40px, 10vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas { gap: 20px; }
}

/* ============================================
   HOME — PROBLEM
   ============================================ */
.problem {
  padding: 140px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.section-watermark {
  position: absolute;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(0,0,0,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.section-header { margin-bottom: 72px; }
.section-label { margin-bottom: 16px; }

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 720px;
  color: var(--black);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.problem-item {
  padding: 48px 40px 48px 0;
  border-top: 1px solid var(--black);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.problem-item.visible { opacity: 1; transform: translateY(0); }

.problem-item:not(:last-child) {
  padding-right: 48px;
  margin-right: 48px;
  border-right: 1px solid var(--border);
}

.problem-item h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--black);
}

.problem-item p { font-size: 15px; color: #666; line-height: 1.65; }

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-item { padding: 40px 0; border-right: none !important; margin-right: 0 !important; }
}

/* ============================================
   HOME — SOLUTION
   ============================================ */
.solution {
  padding: 140px 0;
  background: var(--off);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.solution-copy p {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin-top: 28px;
}

.solution-deliverables { margin-top: 8px; }

.solution-deliverables h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.deliverable-item.visible { opacity: 1; transform: translateX(0); }

.deliverable-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-check svg { width: 10px; height: 10px; }

.deliverable-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.deliverable-item span { font-size: 14px; color: #777; }

@media (max-width: 900px) {
  .solution-inner { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   HOME — TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 140px 0;
  background: var(--white);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.carousel-nav {
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover { background: var(--black); border-color: var(--black); }
.carousel-btn:hover svg { stroke: var(--white); }
.carousel-btn svg { stroke: var(--black); }

.carousel-track-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.carousel-track-wrapper:active { cursor: grabbing; }

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s var(--ease);
}

.quote-card {
  min-width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 40px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  flex-shrink: 0;
}

.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.09);
}

.quote-mark {
  font-size: 72px;
  line-height: 1;
  color: var(--border);
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
}

.quote-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  font-weight: 300;
  margin-bottom: 32px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.quote-meta strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); }
.quote-meta span { font-size: 13px; color: var(--muted); }

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  justify-content: center;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}
.carousel-dot.active { background: var(--black); width: 24px; border-radius: 4px; }

@media (max-width: 768px) {
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .quote-card { min-width: 300px; padding: 32px 28px; }
}

/* ============================================
   HOME — REVENUE MODEL CALLOUT
   ============================================ */
.revenue-callout {
  padding: 140px 0;
  background: var(--dark);
  color: var(--white);
}

.revenue-callout .section-title { color: var(--white); }
.revenue-callout .section-label { color: #666; }

.revenue-sub {
  font-size: 18px;
  font-weight: 300;
  color: #aaa;
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1f1f1f;
  margin: 72px 0;
}

.stat-item {
  background: var(--dark);
  padding: 56px 48px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-item.visible { opacity: 1; transform: translateY(0); }

.stat-number {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-prefix, .stat-suffix { font-weight: 300; color: #666; }

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.revenue-callout .btn-white::after {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 40px 32px; }
}

/* ============================================
   HOME — BOTTOM CTA BAND
   ============================================ */
.cta-band {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.cta-band .section-title {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 40px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 100px;
  background: var(--white);
}

.page-hero .hero-headline {
  font-size: clamp(44px, 5.5vw, 76px);
}

.page-hero .hero-sub { max-width: 600px; margin-top: 24px; font-size: 18px; }

.about-content {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-copy p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.values-list { display: flex; flex-direction: column; gap: 0; }

.value-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.value-item.visible { opacity: 1; transform: translateX(0); }

.value-item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.value-item span { font-size: 15px; color: #666; line-height: 1.6; }

.team-section {
  padding: 100px 0;
  background: var(--off);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.team-card {
  background: var(--white);
  padding: 48px 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  opacity: 0;
  transform: translateY(24px);
}

.team-card.visible { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.team-card h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 6px; }
.team-card .role { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; }
.team-card p { font-size: 14px; color: #777; margin-top: 16px; line-height: 1.65; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.steps-section {
  padding: 100px 0 140px;
  background: var(--white);
}

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.step-item:last-child { border-bottom: none; }

.step-item.from-left  { transform: translateX(-40px); }
.step-item.from-right { transform: translateX(40px); }
.step-item.visible    { opacity: 1; transform: translateX(0); }

.step-item.reverse .step-text { order: 2; }
.step-item.reverse .step-visual { order: 1; }

.step-number {
  font-size: clamp(100px, 14vw, 160px);
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -16px;
}

.step-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}

.step-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  max-width: 420px;
}

.step-visual {
  background: var(--off);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap svg {
  width: 80px;
  height: 80px;
  stroke: rgba(0,0,0,0.15);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
}

@media (max-width: 900px) {
  .step-item { grid-template-columns: 1fr; gap: 32px; }
  .step-item.reverse .step-text { order: 0; }
  .step-item.reverse .step-visual { order: 0; }
  .step-visual { max-width: 400px; }
}

/* Revenue Tiers */
.revenue-tiers {
  padding: 100px 0;
  background: var(--dark);
}

.revenue-tiers .section-title { color: var(--white); }
.revenue-tiers .section-label { color: #555; }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.tier-card {
  background: #161616;
  border: 1px solid #222;
  padding: 48px 36px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.tier-card.visible { opacity: 1; transform: translateY(0); }
.tier-card:hover { transform: translateY(-6px); border-color: #333; }
.tier-card.featured { border-color: var(--accent); }

.tier-split {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.tier-split .creator { color: var(--white); }
.tier-split .slash { color: #333; font-weight: 300; }
.tier-split .offerly { color: #444; }

.tier-label-main {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 28px;
}

.tier-desc { font-size: 14px; color: #666; line-height: 1.65; }

.tier-card.featured .tier-label-main { color: var(--accent); }

@media (max-width: 768px) { .tiers-grid { grid-template-columns: 1fr; } }

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-grid {
  padding: 100px 0 140px;
  background: var(--white);
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 64px;
}

.cs-card {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.cs-card.visible { opacity: 1; transform: translateY(0); }

.cs-card-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.cs-niche {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.cs-result {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 12px;
}

.cs-summary { font-size: 16px; color: #666; max-width: 600px; }

.cs-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}

.cs-card.open .cs-toggle { background: var(--black); border-color: var(--black); transform: rotate(45deg); }
.cs-card.open .cs-toggle svg { stroke: var(--white); }
.cs-toggle svg { stroke: var(--black); transition: stroke 0.25s; }

.cs-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
}

.cs-body.open { max-height: 600px; opacity: 1; }

.cs-body-inner {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.cs-body h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.cs-body p { font-size: 15px; color: #555; line-height: 1.75; }

.cs-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cs-metric span:first-child { font-size: 14px; color: #777; }
.cs-metric strong { font-size: 18px; font-weight: 800; color: var(--black); }

.cs-bottom-cta {
  padding: 120px 0;
  background: var(--off);
  text-align: center;
}

.cs-bottom-cta .section-title { margin-bottom: 24px; }
.cs-bottom-cta p { font-size: 18px; color: #777; margin-bottom: 40px; }

@media (max-width: 768px) {
  .cs-card-header { grid-template-columns: 1fr; }
  .cs-body-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   APPLY PAGE
   ============================================ */
.apply-section {
  padding: 100px 0 140px;
  background: var(--white);
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.apply-side h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.apply-side p { font-size: 16px; color: #666; line-height: 1.75; }

.reassurances {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #555;
}

.reassurance-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Form */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: var(--black);
  pointer-events: none;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success.show { display: block; }

.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success h3 { font-size: 24px; margin-bottom: 12px; }
.form-success p { color: #666; }

@media (max-width: 900px) {
  .apply-inner { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================
   SCROLL REVEAL — GENERIC
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--black);
  z-index: 9999;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}
