/* Humanly website styles */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #000;
  --bg-light: #f4f4f4;
  --surface-dark: #0f0f0f;
  --surface-darker: #1a1a1a;
  --text-light: #f4f4f4;
  --text-mid: #b7b7b7;
  --text-muted: #6b6b6b;
  --text-dark: #0f0f0f;
  --accent-orange: #fa7e61;
  --accent-pink: #f44174;
  --accent-crimson: #cd2756;
  --accent-purple: #401f3e;
  --border-light: rgba(244, 244, 244, 0.12);
}

html, body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------------- NAV ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 80px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav.light {
  background: rgba(244, 244, 244, 0.78);
  color: var(--text-dark);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg:first-child { width: 26px; height: auto; flex-shrink: 0; }
.nav-logo svg:last-child { height: 13px; width: auto; flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  background: rgba(244, 244, 244, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px;
  border-radius: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav.light .nav-links { background: rgba(15, 15, 15, 0.06); }

.nav-link {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  color: inherit;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-link * { cursor: pointer !important; }
.nav-link.active {
  background: rgba(244, 244, 244, 0.95);
  color: #0f0f0f;
}
.nav.light .nav-link.active {
  background: #0f0f0f;
  color: #f4f4f4;
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-signin { font-size: 14px; font-weight: 700; padding: 8px 14px; }
.nav-signup {
  background: var(--text-light);
  color: var(--text-dark);
  font-size: 14px; font-weight: 700;
  padding: 8px 16px; border-radius: 4px;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.15s ease;
}
.nav.light .nav-signup { background: #0f0f0f; color: #f4f4f4; }
.nav-signup:hover { transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 6px;
  background: rgba(244,244,244,0.1);
  color: #f4f4f4;
}
.nav.light .nav-burger { background: rgba(15,15,15,0.08); color: #0f0f0f; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 98;
  background: #000;
  display: flex; flex-direction: column;
  padding: 100px 32px 48px;
  overflow-y: auto;
}
.mobile-menu.light {
  background: #f4f4f4;
}
.mobile-link {
  font-size: 36px; font-weight: 700;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244,244,244,0.08);
  text-align: left;
  color: rgba(244,244,244,0.85);
  transition: color 0.15s ease;
  letter-spacing: -0.01em;
}
.mobile-menu.light .mobile-link {
  color: #0f0f0f;
  border-bottom-color: rgba(15,15,15,0.1);
}
.mobile-link.active { color: var(--accent-crimson); }
.mobile-menu.light .mobile-link.active { color: var(--accent-crimson); }
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: auto;
  padding-top: 48px;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 48px; padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  letter-spacing: 0;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background:
    radial-gradient(circle at 50% -10%, rgba(250, 126, 97, 0.85) 0%, rgba(250, 126, 97, 0) 70%),
    linear-gradient(180deg, #cd2756 0%, #b3204a 100%);
  box-shadow: 0 8px 32px -8px rgba(205, 39, 86, 0.55), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 12px 36px -8px rgba(205, 39, 86, 0.7); }

.btn-dark {
  color: var(--text-light);
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid rgba(244,244,244,0.05);
}

.btn-light {
  color: var(--text-dark);
  background: var(--text-light);
}

.btn-outline-light {
  color: var(--text-dark);
  background: transparent;
  border: 1px solid #0f0f0f;
}

.btn-pair { display: flex; gap: 16px; align-items: center; }
.title-br-space { display: none; }
.title-part { display: block; }
@media (max-width: 700px) {
  .btn-pair { flex-direction: column-reverse; gap: 12px; }
  .btn-pair .btn { width: 100%; justify-content: center; }
  .title-br { display: none; }
  .title-br-space { display: inline; }
  .title-part { display: inline; }
  .title-part:not(:last-child)::after { content: ' '; }
}
.btn-link { font-weight: 700; font-size: 16px; color: inherit; padding: 0 16px; height: 48px; display: inline-flex; align-items: center; }

/* ---------------- TYPE ---------------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.h-display {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.h1 {
  font-weight: 700;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.h2 {
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.h3 {
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.1;
}
.h4 { font-weight: 700; font-size: 32px; line-height: 1.1; }
.body-mid { font-size: 16px; line-height: 24px; color: var(--text-mid); }
.body-on-light { color: #1a1a1a; }

/* ---------------- LAYOUT ---------------- */
.page { padding-top: 80px; }
.page-light { background: var(--bg-light); color: #0f0f0f; }
.section { padding: 180px 0; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 80px; }
.container-wide { max-width: 1620px; margin: 0 auto; padding: 0 80px; }
@media (max-width: 900px) {
  .container, .container-wide { padding: 0 24px; }
  .section { padding: 120px 0; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .nav-signup, .nav-cta .nav-signin { display: none; }
}

/* ---------------- HOME HERO ---------------- */
.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(250, 126, 97, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(244, 65, 116, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 90%, rgba(64, 31, 62, 0.4) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #000 95%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,244,244,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,244,244,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image:
    linear-gradient(to bottom, black 30%, transparent 85%),
    radial-gradient(ellipse 120% 100% at 50% 0%, black 40%, transparent 80%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(to bottom, black 30%, transparent 85%),
    radial-gradient(ellipse 120% 100% at 50% 0%, black 40%, transparent 80%);
  -webkit-mask-composite: source-in;
}
.hero-inner {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 140px 24px 80px;
}
.hero h1 {
  margin: 0 auto 32px;
  max-width: 1100px;
}
.hero p.lead {
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-mid);
}
.hero .btn-pair { justify-content: center; }

@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding: 100px 24px 60px; }
}

/* Hero floating cards */
.hero-floats { position: absolute; inset: 0; pointer-events: none; }
.float-card {
  position: absolute;
  border-radius: 12px;
  padding: 16px 20px;
  background: rgba(244,244,244,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244,244,244,0.06);
}

/* ---------------- PRODUCT GRID (Home features) — staggered ---------------- */
.feat-stagger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 32px;
  align-items: start;
}
.feat-card {
  position: relative;
  border-radius: 24px;
  padding: 56px 64px;
  min-height: 380px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.feat-card::before { display: none; }
.feat-card-inner { position: relative; max-width: 480px; z-index: 2; display: flex; align-items: flex-start; gap: 24px; }
.feat-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: rgba(244,244,244,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(244,244,244,0.75);
}
.feat-icon svg { width: 36px; height: 36px; }
.feat-text { display: flex; flex-direction: column; }
.feat-title { font-size: 28px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: #f4f4f4; }
.feat-body { color: rgba(244,244,244,0.55); font-size: 15px; line-height: 22px; white-space: pre-line; }
.feat-coming-soon {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: #f44174;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

@media (max-width: 1100px) {
  .feat-stagger { grid-template-columns: 1fr; }
  .feat-card { transform: none !important; min-height: 320px; padding: 40px; }
  .feat-coming-soon { top: 24px; left: auto; right: 24px; }
  .feat-card-inner { flex-direction: column; }
}

/* Onboarding steps */
.onboard { position: relative; padding: 180px 0; }
.onboard-track { position: relative; }
.onboard-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  padding: 60px 0;
}
.onboard-tile {
  width: 320px;
  height: 320px;
  border-radius: 28px;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.onboard-tile::before { display: none; }
.onboard-tile > span {
  font-size: 128px;
  font-weight: 700;
  color: #f4f4f4;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.onboard-row > .onboard-tile:last-child { margin-left: 0; margin-right: auto; }

.onboard-copy { max-width: 460px; }
.onboard-copy.left { margin-left: auto; text-align: left; }
.onboard-copy.right { margin-right: auto; text-align: left; }
.onboard-h { font-size: 28px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: #f4f4f4; }
.onboard-p { color: rgba(244,244,244,0.55); font-size: 15px; line-height: 24px; margin-bottom: 32px; max-width: 360px; }.onboard-copy.right .onboard-p { margin-left: 0; }
.onboard-copy.left .onboard-p { margin-right: 0; }

.onboard-dot {
  position: relative;
  width: 80px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.onboard-dot::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #f4f4f4;
  z-index: 2;
  position: relative;
}
.onboard-dot::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,244,244,0.14) 0%, transparent 60%);
}
.onboard-rail {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(244,244,244,0.18) 6%, rgba(244,244,244,0.18) 94%, transparent 100%);
  transform: translateX(-0.5px);
}

@media (max-width: 1100px) {
  .onboard-row { grid-template-columns: 1fr; gap: 24px; }
  .onboard-tile { order: -1; margin: 0 auto !important; width: 240px; height: 240px; }
  .onboard-tile > span { font-size: 96px; }
  .onboard-dot { display: none; }
  .onboard-rail { display: none; }
  .onboard-copy { margin: 0 auto !important; text-align: center !important; }
  .onboard-copy .btn { width: 100%; justify-content: center; }
}

/* Dirty work section */
.dirty-section { padding: 180px 0; }
.dirty-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 80px;
  align-items: center;
}
.dirty-copy { max-width: 480px; }
.dirty-copy .h2 { margin-bottom: 32px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.dirty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.dirty-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid;
  background: transparent;
  opacity: 0.8;
}
.dirty-p {
  color: rgba(244,244,244,0.55);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 40px;
  max-width: 420px;
}
.dirty-illo {
  position: relative;
  border-radius: 24px;
  height: 520px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 30% 80%, rgba(244,65,116,0.06) 0 60%, transparent 80%),
    radial-gradient(60% 50% at 75% 55%, rgba(205, 39, 86, 0.18) 0%, transparent 70%),
    radial-gradient(40% 35% at 50% 35%, rgba(40,40,40,0.5) 0%, transparent 70%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(244,244,244,0.04);
}
.dirty-illo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
}
.dirty-illo-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 24px;
}
.dirty-illo-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(244,244,244,0.35);
}
@media (max-width: 1100px) {
  .dirty-grid { grid-template-columns: 1fr; gap: 40px; }
  .dirty-illo { height: 320px; }
}

/* Stats / Number cards */
.numcards-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.numcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.numcard-wrap { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.numcard-caption { font-size: 13px; color: var(--text-mid); line-height: 20px; }
.numcard {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: none;
}
.numcard.peach { background: linear-gradient(160deg, #cd2756 0%, #401f3e 100%); }
.numcard.tex {
  background:
    radial-gradient(circle at 30% 20%, rgba(250,126,97,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(244,65,116,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #2a1421 0%, #0a0a0a 100%);
}
.numcard .num {
  font-size: clamp(72px, 6vw, 96px); font-weight: 700; line-height: 1;
  color: var(--text-light);
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
}

/* Demo banner */
.demo-banner {
  border-radius: 28px;
  background: #ededed;
  color: #0f0f0f;
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.demo-banner-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: #cd2756; margin-bottom: 20px;
}
.demo-banner-sub {
  font-size: 15px; color: #4a4a4a; line-height: 1.6;
  max-width: 480px; margin-top: 16px; margin-bottom: 48px;
}
.demo-banner-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.demo-call-btn {
  display: flex; align-items: center; gap: 12px;
  background: #0f0f0f; color: #f4f4f4;
  border: none; border-radius: 100px;
  padding: 0 40px; height: 56px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  line-height: 1.3; transition: background 0.2s, color 0.2s;
}
.demo-call-btn:hover { background: #cd2756; color: #f4f4f4; }
.demo-play-btn {
  display: flex; align-items: center; gap: 14px;
  background: transparent; color: #0f0f0f;
  border: 1.5px solid rgba(15,15,15,0.2); border-radius: 100px;
  padding: 0 28px 0 8px; height: 56px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.demo-play-btn:hover { border-color: #cd2756; color: #cd2756; }
.demo-play-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,15,15,0.1); color: #0f0f0f;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-play-btn:hover .demo-play-icon { background: rgba(205,39,86,0.12); color: #cd2756; }
.demo-call-num { font-size: 12px; font-weight: 400; opacity: 0.6; }

@media (max-width: 700px) {
  .demo-banner { padding: 48px 24px; }
  .demo-banner-actions { flex-direction: column; width: 100%; }
  .demo-play-btn, .demo-call-btn { width: 100%; justify-content: center; }
}

/* Platform card */
.platform-card {
  position: relative;
  border-radius: 28px;
  background: #ededed;
  color: #0f0f0f;
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  min-height: 480px;
}
.platform-copy { max-width: 720px; padding-left: 24px; }
.platform-p {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
  margin-top: 24px;
  margin-bottom: 56px;
  max-width: 560px;
}
.platform-cta { display: flex; align-items: center; gap: 16px; }
.platform-cta .platform-demo-btn { font-size: 16px; }
.btn-link-dark {
  color: #0f0f0f;
  font-weight: 700;
  font-size: 14px;
  height: 44px;
  padding: 0 16px;
  background: transparent;
  border: 0;
}

@media (max-width: 1100px) {
  .platform-card { padding: 48px; }
  .platform-copy { padding-left: 0; }
}
@media (max-width: 700px) {
  .platform-card { padding: 48px 32px; }
  .platform-demo-btn { display: none; }
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--surface-dark);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.t-head { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 20px; color: var(--text-light);
}
.t-name { font-weight: 700; font-size: 24px; line-height: 1; }
.t-role { font-style: italic; font-size: 14px; color: var(--text-mid); margin-top: 6px; }
.t-stars { display: flex; gap: 4px; color: #fa7e61; }
.t-body { font-size: 14px; line-height: 24px; color: var(--text-mid); }

/* ---------------- CTA SECTION (gradient bottom) ---------------- */
.cta {
  position: relative;
  padding: 200px 24px 460px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, var(--accent-purple) 50%, #f44174 100%);
  color: #f4f4f4;
}
.cta-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.cta .eyebrow { color: #f4f4f4; opacity: 0.7; }
.cta h2 { margin: 24px 0 48px; }
.cta-logo {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  display: flex; justify-content: center; align-items: center;
  width: 100%;
  padding: 0 24px;
  opacity: 0.92;
  z-index: 1;
}
.cta-logo > svg { width: min(90%, 1200px); height: auto; max-width: 1200px; }
.cta-logo-mobile { display: none; }
@media (max-width: 700px) {
  .cta-logo-desktop { display: none; }
  .cta-logo-mobile {
    display: block;
    width: 92vw;
    height: auto;
  }
}

/* ---------------- FAQ ---------------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(244,244,244,0.18);
  cursor: pointer;
  transition: padding 0.25s ease;
}
.faq-item .q { font-size: 18px; font-weight: 500; line-height: 1.3; }
.faq-item .plus {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(244,244,244,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item .plus svg { width: 12px; height: 12px; }
.faq-item.open .plus { transform: rotate(45deg); background: rgba(244,244,244,0.1); }
.faq-item .a {
  display: none;
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 14px; line-height: 22px;
}
.faq-item.open .a { display: block; }

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
  max-width: 720px;
  margin: 56px auto 0;
}
.contact-form .full { grid-column: 1 / -1; }
.input, .textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(244,244,244,0.18);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--text-light);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-light .input, .page-light .textarea {
  background: #fff;
  border-color: rgba(15,15,15,0.12);
  color: #0f0f0f;
}
.input:focus, .textarea:focus { outline: none; border-color: var(--accent-orange); }
.input::placeholder, .textarea::placeholder { color: rgba(244,244,244,1); }
.page-light .input::placeholder, .page-light .textarea::placeholder { color: rgba(15,15,15,0.4); }
.section-dark { background: #000; color: #f4f4f4; }
.section-dark .input, .section-dark .textarea {
  background: rgba(0,0,0,0.4);
  border-color: rgba(244,244,244,0.18);
  color: var(--text-light);
}
.section-dark .input::placeholder, .section-dark .textarea::placeholder { color: rgba(244,244,244,1); }
.section-dark .h2, .section-dark .lead { color: #f4f4f4; }
.section-dark select option { background: #1a1a1a; color: #f4f4f4; }
.textarea { min-height: 140px; resize: vertical; }

/* ---------------- FOOTER ---------------- */
.footer {
  background: var(--text-light);
  color: #0f0f0f;
  padding: 80px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer h5 {
  font-size: 16px; font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
  color: #0f0f0f;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid > *:not(:first-child) { text-align: right; }
.footer-grid > *:not(:first-child) ul { align-items: flex-end; }
.footer ul a {
  font-size: 14px; color: #2a2a2a;
  transition: color 0.15s ease;
}
.footer ul a:hover { color: #cd2756; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(15,15,15,0.1);
  display: flex; justify-content: space-between;
  font-size: 12px; color: #2a2a2a;
  font-weight: 300;
}
.footer-meta { display: flex; flex-direction: column; gap: 6px; }

/* ============================================ */
/* PRODUCTS PAGE */
/* ============================================ */
.products-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.products-hero-section > .container {
  width: 100%;
}
.products-hero {
  position: relative;
  padding: 140px 0 100px;
  max-width: 620px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 180px 0;
}
.product-row.reverse > .copy { order: 2; text-align: right; }
.product-row .copy {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 560px;
}
.product-row .copy.right { margin-left: auto; }
.product-row .num-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--text-light);
  color: #0f0f0f;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 32px;
}
.product-row.reverse .num-circle { margin-left: auto; }
.product-row p { line-height: 24px; }
.product-row .illo {
  height: 500px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 30% 80%, rgba(244,65,116,0.06) 0 60%, transparent 80%),
    radial-gradient(60% 50% at 35% 55%, rgba(205, 39, 86, 0.18) 0%, transparent 70%),
    radial-gradient(40% 35% at 50% 35%, rgba(40,40,40,0.5) 0%, transparent 70%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
  position: relative; overflow: hidden;
  border: 1px solid rgba(244,244,244,0.04);
  display: flex; align-items: flex-end; padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(244,244,244,0.35);
}

.product-illo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.5;
}
.products-light .product-illo-img { opacity: 0.85; }

/* Light section in products */
.products-light {
  background: var(--bg-light);
  color: #0f0f0f;
  padding: 180px 0;
}
.products-light .product-row p { color: #2a2a2a; }
.products-light .num-circle { background: #0f0f0f; color: #f4f4f4; }
.products-light .product-row h2 { color: #0f0f0f; }
.products-light .product-row .illo {
  border-color: rgba(0,0,0,0.06);
  background: #fff;
}

/* Home contact form */
.home-contact-head { max-width: 720px; margin-bottom: 56px; }
.home-form { max-width: 720px; margin-top: 0; }
.home-contact-success {
  max-width: 560px; margin: 40px auto 0;
  padding: 48px; border-radius: 24px;
  background: #1a1a1a; text-align: center;
  border: 1px solid rgba(244,244,244,0.08);
}
.success-badge {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #fa7e61, #f44174);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}

/* Benefits — diagonal cards */
.benefits-section { padding: 60px 0 180px; }
.benefits-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.benefit-card {
  position: relative;
  width: 560px;
  max-width: 100%;
  border-radius: 24px;
  padding: 48px 56px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border: none;
  overflow: hidden;
}
.benefit-card::before { display: none; }
.benefit-card > * { position: relative; z-index: 1; }

.bpos-0 { align-self: flex-start; }
.bpos-1 { align-self: center; }
.bpos-2 { align-self: flex-end; }

.benefit-body { display: block; }
.benefit-h {
  font-size: 28px; font-weight: 700; line-height: 1.1;
  color: #f4f4f4; margin-bottom: 16px;
}
.benefit-p {
  color: rgba(244,244,244,0.55);
  font-size: 15px; line-height: 22px;
  max-width: 420px;
}

@media (max-width: 1100px) {
  .benefit-card { width: 100%; padding: 40px; }
  .bpos-0, .bpos-1, .bpos-2 { align-self: stretch; }
}

/* All In One section */
.aio-section {
  background: transparent;
  color: #f4f4f4;
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}
.aio-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 80px;
  align-items: center;
}
.aio-copy { max-width: 480px; }
.aio-copy .h2 { margin-bottom: 32px; }
.aio-p {
  color: rgba(244,244,244,0.55);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 40px;
  max-width: 420px;
}
.aio-cta { display: flex; gap: 16px; }
.aio-illo {
  position: relative;
  border-radius: 24px;
  height: 520px;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 35% 55%, rgba(205, 39, 86, 0.18) 0%, transparent 70%),
    radial-gradient(40% 35% at 50% 35%, rgba(40,40,40,0.5) 0%, transparent 70%),
    linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(244,244,244,0.04);
}
.aio-illo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 30% 80%, rgba(244,65,116,0.06) 0 60%, transparent 80%);
  pointer-events: none;
}
.aio-illo-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 24px;
}
.aio-illo-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: rgba(244,244,244,0.35);
}
.aio-illo-img {
  width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5;
}


@media (max-width: 1100px) {
  .aio-grid { grid-template-columns: 1fr; gap: 40px; }
  .aio-illo { height: 320px; }
}

/* ============================================ */
/* PRICING PAGE */
/* ============================================ */
.pricing-hero {
  text-align: center;
  padding: 160px 24px 80px;
}
.pricing-hero h1 { font-size: clamp(40px, 4.4vw, 64px); margin-bottom: 32px; color: #0f0f0f; }
.pricing-hero p { color: #6b6b6b; font-size: 16px; line-height: 32px; max-width: 640px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.plan {
  background: var(--text-light);
  color: #0f0f0f;
  border-radius: 32px;
  padding: 48px 40px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(15,15,15,0.06);
  position: relative;
  overflow: hidden;
}
.plan.dark {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #f4f4f4;
}
.plan.featured {
  background:
    radial-gradient(circle at 25% 15%, rgba(255,255,255,0.09) 0%, transparent 45%),
    linear-gradient(145deg, #fa7e61 0%, #f44174 52%, #c44d8a 100%);
  color: #f4f4f4;
  border: none;
  transform: translateY(-28px);
}
.plan-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: var(--text-light);
}
.plan.featured .plan-icon { background: rgba(255,255,255,0.18); }
.plan-icon svg { width: 32px; height: 32px; color: #0f0f0f; }
.plan.featured .plan-icon svg { color: #fff; }

.plan-name { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.plan-tag { font-size: 14px; color: #6b6b6b; margin-bottom: 32px; }
.plan.dark .plan-tag, .plan.featured .plan-tag { color: rgba(244,244,244,0.6); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 32px; }
.plan-price .amount { font-size: 48px; font-weight: 700; line-height: 1; }
.plan-price .per { font-size: 16px; color: #6b6b6b; }
.plan.dark .plan-price .per, .plan.featured .plan-price .per { color: rgba(244,244,244,0.6); }
.plan-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 40px;
  flex: 1;
}
.plan-features li {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px;
}
.plan-features li svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.85; }
.plan .btn { width: 100%; }

/* Comparison layout */
.comp-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 80px;
  align-items: start;
}
.comp-copy { position: sticky; top: 100px; }
.comp-copy .h2 { color: #0f0f0f; }

/* Comparison table */
.comp-table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,15,15,0.08);
}
.comp-header,
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.comp-header { background: #0f0f0f; }
.comp-cell { padding: 20px 28px; }
.comp-feature-head { background: #fff; }
.comp-plan-head {
  color: #f4f4f4;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.comp-row { border-top: 1px solid rgba(15,15,15,0.07); }
.comp-row:nth-child(even) { background: #fafafa; }
.comp-row:nth-child(odd)  { background: #fff; }
.comp-feature-cell {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.comp-val-cell {
  font-size: 14px;
  color: #0f0f0f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(15,15,15,0.07);
}
.comp-bold { font-weight: 700; }
@media (max-width: 1280px) {
  .comp-layout { grid-template-columns: 1fr; gap: 48px; }
  .comp-copy { position: static; }
}
@media (max-width: 700px) {
  .comp-table { display: none; }
}

.pricing-callout {
  background: #f4f4f4;
  border-radius: 32px;
  padding: 48px;
  margin: 56px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.pricing-callout .col { display: flex; flex-direction: column; gap: 16px; }
.pricing-callout .col h3 { font-size: 20px; font-weight: 700; color: #0f0f0f; }
.pricing-callout .col p { font-size: 14px; color: #6b6b6b; line-height: 22px; }

/* ============================================ */
/* CONTACTS PAGE */
/* ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contacts-hero {
  text-align: center;
  padding: 160px 24px 60px;
}
.contacts-hero h1 { font-size: clamp(40px, 4.4vw, 64px); margin-bottom: 24px; color: #0f0f0f; letter-spacing: 0.02em; line-height: 1.05; }
.contacts-hero p { color: #6b6b6b; font-size: 16px; line-height: 28px; max-width: 640px; margin: 0 auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 56px 0 120px;
}
.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(15,15,15,0.05);
}
.contact-card .ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: #0f0f0f; color: #f4f4f4;
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 20px; font-weight: 700; color: #0f0f0f; }
.contact-card p { font-size: 14px; line-height: 22px; color: #6b6b6b; }
.contact-card a.cta-link {
  font-size: 14px; font-weight: 700; color: #cd2756;
  display: inline-flex; align-items: center; gap: 6px;
}

/* RESPONSIVE - common shrinks */
@media (max-width: 1100px) {
  .testimonials, .pricing-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .pricing-grid .plan:last-child { grid-column: 1 / -1; }
  .platform-card { grid-template-columns: 1fr; padding: 48px; }
  .numcards { grid-template-columns: 1fr 1fr; }
  .numcards-header { grid-template-columns: 1fr; gap: 24px; }
  .product-row, .products-hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .product-row.reverse > .copy { order: 0; text-align: left; }
  .product-row.reverse .num-circle { margin-left: 0; }
  .product-row .copy.right { margin-left: 0; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-callout { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
}
@media (min-width: 701px) and (max-width: 1024px) {
  .h-display { font-size: 64px; }
  .hero { align-items: center; }
  .hero-inner { padding: 140px 24px 80px; }
  .float-card-call { top: 100px !important; }
  .float-card-booked { top: 200px !important; }
  .numcard .num { font-size: clamp(72px, 8vw, 96px); }
  .numcard-caption { font-size: 15px; line-height: 22px; }
}
@media (max-width: 700px) {
  .testimonials, .pricing-grid, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:not(:first-child) { text-align: left; }
  .footer-grid > *:not(:first-child) ul { align-items: flex-start; }
  .hero { align-items: flex-start; }
  .hero-floats { display: none; }
  .numcards { grid-template-columns: 1fr 1fr; }
  .numcard .num { font-size: clamp(36px, 10vw, 52px); white-space: normal; }
  .h-display { font-size: 52px; }
  .h1, .h2 { font-size: 36px; }
  .platform-card { padding: 32px; }
  .nav-cta .nav-signin { display: none; }
}
@media (orientation: landscape) and (max-height: 600px) {
  .hero-floats { display: none; }
}
