/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ── Tokens ── */
:root {
  --blue: #005cff;
  --orange: #ff8800;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-bg: #f2f3f5;
  --text-muted: rgba(0,0,0,0.6);
  --text-body: rgba(0,0,0,0.7);
  --border: rgba(0,0,0,0.08);
  --blue-tint: rgba(0,92,255,0.04);
  --blue-border: rgba(0,92,255,0.12);
  --max-w: 1152px;
  --section-pad: 100px 0;
}

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--blue);
}
.h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--black);
}
.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
}
.h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--black);
}
.accent { color: var(--orange); }
.accent-blue { color: var(--blue); }
.body-lg {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
}
.body-sm {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ── CTA Button ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  padding: 18px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 35px rgba(0,92,255,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-shadow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background-color: var(--orange);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  min-height: 65.5px;
  padding: 0 32px;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 20px 50px -12px rgba(245,166,35,0.50), inset 0 1px 0 rgba(245,166,35,0.30);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px -12px rgba(245,166,35,0.65), inset 0 1px 0 rgba(245,166,35,0.30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 40px rgba(0,92,255,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.14);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--blue); background: var(--blue-tint); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo img {
  width: 32px;
  height: 32px;
  will-change: transform, opacity;
  animation: logo-fade-in 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes logo-fade-in {
  0%   { opacity: 0; transform: scale(0.72); }
  100% { opacity: 1; transform: scale(1); }
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--black);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(0,0,0,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta { font-size: 12px; font-weight: 600; padding: 12px 22px; border-radius: 24px; background: #000; color: #f0f0f0; box-shadow: none; text-decoration: none; }
.nav-cta:hover { background: #1a1a1a; box-shadow: none; }
.nav-hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }

/* ── HERO ── */
.hero {
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(0,92,255,0.07) 0%, transparent 70%);
  padding: 100px 0 0;
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,136,0,0.08);
  border: 1px solid rgba(255,136,0,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 36px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); flex-shrink: 0; }
.hero h1 { max-width: 900px; margin: 0 auto 32px; }
.hero-sub {
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}
.hero-social-proof {
  display: inline-flex;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--orange);
  max-width: 744px;
}
.hero-proof-dot {margin-top: 4px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; will-change: transform, opacity; }
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
.hero-app-preview {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 60px rgba(0,0,0,0.12), -24px -9px 62px 2px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.08);
  border-bottom: none;
}
.hero-app-preview img { display: block; width: 100%; }
.hero-preview-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

/* ── APP MOCKUP (SVG) ── */
.app-mockup {
  background: #fff;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.app-topbar {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-topbar-left { display: flex; align-items: center; gap: 10px; }
.app-topbar-logo { width: 28px; height: 28px; }
.app-topbar-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: -0.02em; }
.app-body { display: grid; grid-template-columns: 200px 1fr; }
.app-sidebar { border-right: 1px solid #f0f0f0; padding: 16px 0; }
.app-sidebar-item { padding: 8px 20px; font-size: 13px; color: rgba(0,0,0,0.5); display: flex; align-items: center; gap: 8px; }
.app-sidebar-item.active { color: var(--blue); background: var(--blue-tint); border-right: 2px solid var(--blue); }
.app-content { padding: 24px; }
.app-content-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.app-content-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.app-stat { border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.app-stat-label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.app-stat-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; }
.app-table-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 12px; }
.app-table-header { color: var(--text-muted); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.badge-green { background: rgba(0,180,80,0.1); color: #00b450; }
.badge-blue { background: var(--blue-tint); color: var(--blue); }
.badge-orange { background: rgba(255,136,0,0.1); color: var(--orange); }

/* ── WAITING LIST ── */
.section-waiting {
  background: var(--gray-bg);
  padding: var(--section-pad);
  text-align: center;
}
.section-waiting .container { max-width: 780px; }
.section-waiting .h2 { margin: 16px auto 32px; max-width: 680px; }
.section-waiting .body-lg { max-width: 900px; margin: 0 auto 44px; text-align: center; }
.waitlist-body p { margin-bottom: 18px; font-weight: 400; }
.waitlist-body p:last-child { color: var(--orange); font-weight: 500; margin-bottom: 0; }
.avatar-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(odd) { background: var(--orange); }
.avatar-stack span:nth-child(even) { background: var(--blue); }
.avatar-proof-text { font-size: 13px; color: rgba(0,0,0,0.6); }
.avatar-proof-text strong { color: var(--black); }

/* ── WHY HIVARA ── */
.section-why {
  background: #fff;
  padding: var(--section-pad);
}
.section-why .container { max-width: 758px; }
.section-why .h2 { margin: 16px 0 40px; }
.section-why .body-lg p { margin-bottom: 20px; text-align: center; }

/* ── TESTIMONIAL ── */
.section-testimonial {
  background: var(--gray-bg);
  padding: 80px 0;
}
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: 16px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.quote-icon {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
  color: rgba(0,0,0,0.12);
  margin-bottom: 24px;
  -webkit-user-select: none;
  user-select: none;
}
.testimonial-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 36px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--orange); margin-bottom: 2px; }
.author-role { font-size: 13px; color: var(--text-muted); }

/* ── FEATURES ── */
.section-features {
  background: var(--gray-bg);
  padding: var(--section-pad);
}
.section-features .container { text-align: center; }
.section-features .h2 { margin: 16px auto 20px; }
.features-intro { max-width: 680px; margin: 0 auto 60px; color: var(--text-body); font-size: 17px; line-height: 1.65; }
.features-intro p { margin-bottom: 16px; }
.features-intro p:last-child { margin-bottom: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 40px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feature-card.blue-tint {
  background: var(--blue-tint);
  border-color: var(--blue-border);
}
.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
}
.feature-card .h3 { margin-bottom: 12px; }
.features-cta { margin-top: 56px; text-align: center; }

/* ── WHY NOW ── */
.section-why-now {
  background: #fff;
  padding: var(--section-pad);
}
.why-now-intro { max-width: 1080px; margin-bottom: 48px; }
.why-now-intro .h2 { margin: 16px 0 20px; }
.why-now-intro .body-lg { margin-top: 20px; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.comparison-table thead tr { background: var(--blue); }
.comparison-table th {
  padding: 20px 28px;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
}
.comparison-table th:first-child { border-right: 1px solid rgba(255,255,255,0.15); width: 50%; }
.comparison-table th:last-child { font-weight: 500; opacity: 0.85; }
.comparison-table th .th-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.comparison-table tbody tr:nth-child(even) { background: var(--gray-bg); }
.comparison-table td {
  padding: 22px 28px;
  font-size: 15px;
  vertical-align: top;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.comparison-table td:first-child {
  border-right: 1px solid var(--border);
  color: var(--black);
}
.comparison-table td:last-child { color: var(--text-muted); }
.check-icon { display: inline-block; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.why-now-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--orange);
}
.why-now-note-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── TRY AGENT ── */
.section-try {
  background: #0c0c18;
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
  position: relative;
}
.try-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.try-content .label {
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.try-content .label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.try-content .h2 { color: #fff; margin-bottom: 32px; }
.try-paragraphs p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.try-paragraphs p:last-child { margin-bottom: 0; }
.try-cta-group { margin-top: 44px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.try-cta-group .btn-primary {
  background: var(--orange);
  box-shadow: 0 12px 32px rgba(255,136,0,0.35);
}
.try-cta-group .btn-primary:hover {
  background: #e67a00;
  box-shadow: 0 16px 40px rgba(255,136,0,0.5);
}
.try-note { font-size: 13px; color: rgba(255,255,255,0.35); }

.try-content { position: relative; }
.try-grid .elipsis {
  position: absolute;
  width: 679px;
  height: 187px;
  background: rgba(255, 136, 0, 0.23);
  border-radius: 50%;
  filter: blur(86px);
  bottom: -60px;
  left: -326px;
  pointer-events: none;
  z-index: 0;
}

/* ── CHAT MOCKUP ── */
.chat-wrapper {
  position: relative;
}
.chat-demo-badge {
  position: absolute;
  top: -14px;
  right: -16px;
  background: var(--orange);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 99px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 12px 24px rgba(255,136,0,0.5);
}
.chat-mockup {
  background: #161622;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.chat-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-left { display: flex; align-items: center; gap: 12px; }
.chat-header-right {z-index: 3; position: relative; display: flex; align-items: center; gap: 14px; }
.chat-dots { display: flex; gap: 6px; }
.chat-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: #fff;
}
.chat-agent-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: #fff; }
.chat-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.45); }
.chat-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #00c853; box-shadow: 0 0 6px rgba(0,200,83,0.6); flex-shrink: 0; }
.chat-messages { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; }
.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-bubble.agent {
  background: #fff;
  color: var(--black);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble.user {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); opacity: 0.4; animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100%{opacity:0.4;transform:scale(1)} 40%{opacity:1;transform:scale(1.2)} }
.chat-input {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
}
.chat-input-field {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.chat-send {
  width: 34px; height: 34px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.chat-send svg { width: 14px; height: 14px; color: #fff; }

/* ── TEAM ── */
.section-team {
  background: #fff;
  padding: var(--section-pad);
  text-align: center;
}
.section-team .label { text-align: center; }
.section-team .h2 { text-align: center; margin-top: 16px; margin-bottom: 48px; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  padding: 40px;
  text-align: left;
}
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.team-col { display: flex; flex-direction: column; gap: 16px; }
.team-member-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.team-member-photo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 6px;
}
.team-member-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--black); }
.team-member-role { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #0A66C2;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 4px;
}
.team-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0 8px;
}
.team-activos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(255,136,0,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.team-activos-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.team-quote-icon { color: var(--orange); }
.team-bio-lead {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 12px;
}
.team-bio p { font-size: 15px; line-height: 1.75; color: var(--text-body); margin-bottom: 12px; }
.team-bio p:last-child { margin-bottom: 0; }
.team-built-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
}
.team-built-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.section-testimonials {
  background: var(--gray-bg);
  padding: var(--section-pad);
}
.section-testimonials .h2 { text-align: center; margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.tcard .quote-icon { margin-bottom: 20px; color: var(--blue); opacity: 0.35; }
.tcard-text { font-size: 16px; line-height: 1.7; color: var(--black); margin-bottom: 32px; }
.tcard-author { display: flex; align-items: center; gap: 14px; }

/* ── FAQ ── */
.section-faq {
  background: #fff;
  padding: var(--section-pad);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner .label { text-align: center; margin-bottom: 16px; }
.faq-inner .h2 { text-align: center; margin-bottom: 56px; }
.faq-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  padding: 0 32px;
}
.faq-item { border-top: 1px solid var(--border); }
.faq-item:first-child { border-top: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  letter-spacing: -0.01em;
}
.faq-chevron {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}
.faq-chevron svg { display: none; }
.faq-chevron::before { content: '+'; }
.faq-item.open .faq-chevron {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.faq-item.open .faq-chevron::before { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ── FOOTER CTA ── */
.section-footer-cta {
  background: var(--blue);
  padding: 80px 0;
  text-align: center;
}
.section-footer-cta .container { max-width: 640px; }
.section-footer-cta .h2 { color: #fff; margin-bottom: 16px; }
.footer-cta-sub { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 40px; }
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.18s, box-shadow 0.18s;
}
.footer-cta-btn:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
.footer-copy { font-size: 14px; color: var(--text-muted); }

/* ── FADE IN ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 60px 0 0; }
  .hero-social-proof { border-radius: 16px; font-size: 13px; }
  .hero-app-preview { border-radius: 14px 14px 0 0; }
  .hero-preview-img { width: 420px; }
  .btn-shadow { width: 100%; justify-content: center; }
  .team-main-photo { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .team-main-photo img { width: 100%; height: auto; aspect-ratio: 1; border-radius: 50%; }
  .section-testimonial { padding-left: 16px; padding-right: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .try-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-card { padding: 20px; }
  .team-layout { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-center { grid-column: 1 / -1; order: -1; }
  .comparison-table th, .comparison-table td { padding: 14px 18px; font-size: 14px; }
  .testimonial-card { padding: 36px 28px; }
  .tcard { padding: 28px; }
  .faq-question { font-size: 16px; }
  .h1 { font-size: 38px; }
  .h2 { font-size: 30px; }
}
