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

:root {
  --teal:        #00B5A5;
  --teal-dark:   #008F82;
  --teal-light:  #E6F7F6;
  --teal-glow:   rgba(0,181,165,0.18);
  --bg:          #0A0F0F;
  --bg-card:     #111918;
  --bg-card2:    #161E1D;
  --border:      rgba(0,181,165,0.14);
  --border-soft: rgba(255,255,255,0.07);
  --text:        #E8F0EF;
  --text-muted:  #7A9A98;
  --text-dim:    #4A6866;
  --white:       #ffffff;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 4px 32px rgba(0,0,0,0.45);
  --font:        'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
}
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,181,165,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-soft);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }

.btn--white {
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
}
.btn--white:hover { background: #f0fffe; transform: translateY(-1px); }

.btn--lg { padding: 14px 28px; font-size: 0.95rem; border-radius: 12px; }
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s;
  padding: 0;
}

.nav.scrolled {
  background: rgba(10,15,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}

.nav__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--teal); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── SECTION HELPERS ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--white);
  margin: 12px 0;
}
.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-glow);
  color: var(--teal);
  border: 1px solid rgba(0,181,165,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.section-tag--light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, #7FFFD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,181,165,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,181,165,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7FFFD4 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: 0.15;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-glow);
  color: var(--teal);
  border: 1px solid rgba(0,181,165,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge__dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { text-align: left; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}
.stat__divider {
  width: 1px; height: 36px;
  background: var(--border-soft);
}

/* ── PHONE MOCKUP ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-mockup__frame {
  width: 280px;
  background: #1a2322;
  border-radius: 36px;
  border: 2px solid rgba(0,181,165,0.2);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-mockup__notch {
  width: 80px; height: 6px;
  background: #0d1615;
  border-radius: 3px;
  margin: 10px auto 0;
}

.phone-mockup__screen {
  padding: 0 0 16px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.phone-mockup__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(0,181,165,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a2322;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,181,165,0.1);
}

.wa-avatar {
  width: 36px; height: 36px;
  background: var(--teal-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0,181,165,0.3);
}

.wa-name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.wa-status { font-size: 0.68rem; color: var(--teal); }

.wa-messages {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0f1918;
}

.wa-msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  position: relative;
}
.wa-msg p { color: var(--text); margin-bottom: 4px; }
.wa-msg span { font-size: 0.65rem; color: var(--text-dim); }

.wa-msg--in {
  background: #1e2d2b;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wa-msg--out {
  background: var(--teal-dark);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: rgba(255,255,255,0.9);
}
.wa-msg--out p { color: rgba(255,255,255,0.95); }
.wa-msg--out span { color: rgba(255,255,255,0.55); }

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  align-self: flex-end;
}
.typing-indicator span {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Float cards */
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  animation: floatUp 3s ease-in-out infinite;
  z-index: 3;
}
.float-card__icon { font-size: 1.4rem; }
.float-card strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--white); }
.float-card p { font-size: 0.72rem; color: var(--text-muted); margin: 0; }

.float-card--1 { top: 40px; right: -20px; animation-delay: 0s; }
.float-card--2 { top: 200px; left: -30px; animation-delay: 1s; }
.float-card--3 { bottom: 80px; right: -10px; animation-delay: 2s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ── LOGOS ── */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.logos__label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.logos__track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 56px;
  opacity: 0.65;
}

.logo-item {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }
.logo-item svg text { font-family: var(--font); }

/* ── FEATURES ── */
.features {
  padding: 120px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--large {
  grid-column: span 2;
}

.feature-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,181,165,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-card__visual {
  margin-top: 28px;
}

/* RAG demo */
.rag-demo {
  background: var(--bg-card2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rag-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,181,165,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.rag-doc span { font-size: 1rem; }
.rag-arrow {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
  padding: 4px 0;
  text-align: center;
}

/* Dashboard preview */
.dashboard-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card2);
  border-radius: 12px;
  padding: 18px;
}
.dp-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.dp-bar span { min-width: 120px; }
.dp-bar span strong { color: var(--white); }
.dp-bar__fill {
  height: 6px;
  background: var(--teal);
  border-radius: 3px;
  flex: 1;
  max-width: var(--w, 100%);
  transition: width 1.5s ease;
}
.dp-bar__fill--2 { background: #6366f1; }
.dp-bar__fill--3 { background: #f59e0b; }

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,181,165,0.03) 50%, transparent 100%);
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step--reverse {
  grid-template-columns: 80px 1fr 1fr;
}
.step--reverse .step__content { order: 1; }
.step--reverse .step__visual { order: 2; }

.step__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.15;
  letter-spacing: -0.04em;
  line-height: 1;
}

.step__content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 360px;
}

/* QR Mock */
.qr-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.qr-mock span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.qr-mock__inner {
  width: 100px; height: 100px;
  background: var(--bg-card2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-pattern {
  width: 70px; height: 70px;
  background:
    repeating-linear-gradient(0deg, var(--teal) 0px, var(--teal) 6px, transparent 6px, transparent 10px),
    repeating-linear-gradient(90deg, var(--teal) 0px, var(--teal) 6px, transparent 6px, transparent 10px);
  opacity: 0.4;
  border-radius: 4px;
}

/* Training Mock */
.training-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.training-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-card2);
}
.ti-status {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ti-status--done { background: var(--teal); }
.ti-status--loading {
  background: #f59e0b;
  animation: pulse 1s infinite;
}

/* Flow Mock */
.flow-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.fm-node {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid;
}
.fm-node--start { background: rgba(0,181,165,0.12); border-color: var(--teal); color: var(--teal); }
.fm-node--ai { background: rgba(99,102,241,0.12); border-color: #6366f1; color: #a5b4fc; }
.fm-node--ok { background: rgba(0,181,165,0.08); border-color: rgba(0,181,165,0.3); color: var(--teal); }
.fm-node--human { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.3); color: #fbbf24; }
.fm-arrow { font-size: 0.9rem; color: var(--text-dim); }
.fm-row { display: flex; gap: 8px; }

/* Metrics Mock */
.metrics-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 24px;
}
.mm-metric { text-align: center; }
.mm-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.mm-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 500; margin-top: 4px; }

/* ── SAAS SECTION ── */
.saas {
  padding: 120px 0;
}

.saas__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.saas__content .section-tag { margin-bottom: 16px; }

.saas__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.saas__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.saas__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.saas__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Tenant Cards */
.tenant-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tenant-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--tc-color, var(--teal));
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
}
.tenant-card:hover { transform: translateX(4px); }

.tc-logo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}
.tc-pill {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
}
.tc-pill--active { background: rgba(0,181,165,0.15); color: var(--teal); }
.tc-pill--trial { background: rgba(245,158,11,0.15); color: #fbbf24; }

.tc-stats {
  font-size: 0.75rem;
  color: var(--text-dim);
  min-width: 160px;
  text-align: right;
}

/* ── PRICING ── */
.pricing {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,181,165,0.02) 50%, transparent 100%);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}

.toggle-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.toggle-label.active { color: var(--white); }

.toggle-badge {
  background: rgba(0,181,165,0.15);
  color: var(--teal);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-weight: 700;
}

.toggle-switch {
  width: 44px; height: 24px;
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.toggle-switch.active { background: var(--teal); border-color: var(--teal); }
.toggle-switch__thumb {
  width: 16px; height: 16px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: transform 0.2s;
}
.toggle-switch.active .toggle-switch__thumb { transform: translateX(20px); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured {
  background: linear-gradient(160deg, var(--teal-dark) 0%, #006d63 100%);
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(0,181,165,0.25);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header { margin-bottom: 24px; }
.pricing-card__header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-card__header p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__header p { color: rgba(255,255,255,0.7); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price__currency { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.pricing-card--featured .price__currency { color: rgba(255,255,255,0.7); }

.price__value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  transition: all 0.3s;
}
.price__period { font-size: 0.82rem; color: var(--text-muted); }
.pricing-card--featured .price__period { color: rgba(255,255,255,0.7); }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  min-height: 220px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card__features li.disabled { opacity: 0.4; }

/* ── CTA ── */
.cta {
  padding: 120px 0;
}

.cta__inner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #004d46 100%);
  border-radius: 28px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(127,255,212,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner .section-tag { margin-bottom: 16px; }

.cta__inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta__inner > p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.cta__form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.cta__form input::placeholder { color: rgba(255,255,255,0.45); }
.cta__form input:focus { border-color: rgba(255,255,255,0.6); }

.cta__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ── FOOTER ── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-soft);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 260px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.87rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--teal); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { height: 420px; }
  .float-card--1 { right: 10px; }
  .float-card--2 { left: 0; }
  .float-card--3 { right: 10px; }

  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }

  .step { grid-template-columns: 60px 1fr 1fr; gap: 24px; }
  .saas__inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: 2rem; }
  .hero__visual { display: none; }
  .hero__stats { flex-wrap: wrap; gap: 16px; }
  .stat__divider { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .step { grid-template-columns: 1fr; }
  .step__number { display: none; }
  .step--reverse .step__content { order: unset; }
  .step--reverse .step__visual { order: unset; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta__inner { padding: 48px 24px; }
  .cta__form { flex-direction: column; }
  .logos__track { gap: 24px 36px; }
}
