:root {
  --bg: #020617;
  --bg-alt: #05091c;
  --bg-elevated: #0b1024;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;
  --accent-blue: #2563eb;
  --accent-blue-soft: #1d4ed8;
  --accent-orange: #f97316;
  --accent-orange-soft: #ea580c;
  --accent-pink: #ec4899;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.7);
  --shadow-subtle: 0 14px 30px rgba(15, 23, 42, 0.5);
  --transition-fast: 0.18s ease-out;
  --max-width: 1140px;
}

/* Make anchor links (like "Start free trial") stop *below* the sticky header */
html {
  scroll-padding-top: 120px; /* tweak this if you change header height */
}

/* GLOBAL */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #020617 60%, #020617 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* ...rest of your CSS stays exactly the same... */


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

/* LAYOUT HELPERS */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12), transparent 60%);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: clamp(2rem, 2.7vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-header.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  gap: 2rem;
}

.section-header.split h2 {
  margin-bottom: 0.4rem;
}

.section-tagline p {
  margin-top: 0.6rem;
  color: var(--text-muted);
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.nav-logo img {
  height: 150px; /* increased by 1.5x */
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  margin: 4px 0;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-lg {
  padding: 0.78rem 1.6rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent-orange), var(--accent-blue));
  box-shadow: 0 16px 35px rgba(59, 130, 246, 0.4);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.6);
}

.btn-primary-outline {
  background: transparent;
  border-color: rgba(59, 130, 246, 0.7);
  color: var(--accent-blue);
}

.btn-primary-outline:hover {
  background: rgba(37, 99, 235, 0.1);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn.full {
  width: 100%;
}

/* HERO */

.hero {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.36), transparent 55%),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.25), transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-soft);
}

.hero-small {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.hero-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-soft);
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.metric-chip {
  font-size: 0.7rem;
  padding: 0.13rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.metric-chip.up {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.7);
  color: #4ade80;
}

.hero-chart-placeholder {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

.hero-chart-placeholder span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-chart-bars {
  display: flex;
  gap: 0.3rem;
  align-items: flex-end;
  margin: 0.4rem 0 0.3rem;
  height: 60px;
}

.hero-chart-bars .bar {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.95), rgba(15, 23, 42, 0.2));
}

.bar-1 { height: 45%; }
.bar-2 { height: 55%; }
.bar-3 { height: 70%; }
.bar-4 {
  height: 92%;
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.95), rgba(15, 23, 42, 0.3));
}

.hero-chart-caption {
  font-size: 0.72rem;
  color: var(--text-soft);
}

/* Demo widget */

.chat-widget {
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.3), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  padding: 0.8rem 0.9rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-subtle);
}

.chat-header {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-soft);
}

.chat-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.chat-body {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.chat-msg {
  font-size: 0.75rem;
  line-height: 1.35;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  max-width: 100%;
}

.chat-msg.bot {
  background: rgba(30, 64, 175, 0.9);
}

.chat-msg.user {
  background: rgba(15, 23, 42, 1);
  align-self: flex-end;
}

.chat-input {
  font-size: 0.75rem;
  color: var(--text-soft);
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  cursor: text;
  user-select: none;
}

.chat-input:hover {
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 1);
}

/* TRUST */

.trust {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 1);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
  background: rgba(15, 23, 42, 0.9);
}

.trust-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.65rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-logos span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
}

/* HOW IT WORKS */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.how-step {
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.28), rgba(15, 23, 42, 0.95));
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.how-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.how-step ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.how-step li + li {
  margin-top: 0.2rem;
}

.code-block {
  background: #020617;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  overflow-x: auto;
  white-space: pre;
}

.code-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.how-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
}

.how-pill {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

.how-arrow {
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
  position: relative;
}

.how-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  border-left: 5px solid var(--accent-blue);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* FEATURE GRID */

.section-alt .section-inner {
  gap: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-soft);
}

.pill-gradient {
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.4), rgba(59, 130, 246, 0.5));
  border: none;
  color: #f9fafb;
}

.pill-save {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.3rem 1.2rem;
  border: 1px solid rgba(31, 41, 55, 1);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.75);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-card ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.feature-card li + li {
  margin-top: 0.18rem;
}

/* PRICING */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.billing-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.billing-label.active {
  color: #f9fafb;
  font-weight: 500;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(15, 23, 42, 1);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(120deg, var(--accent-orange), var(--accent-blue));
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.switch input:checked + .slider::before {
  transform: translate(18px, -50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.pricing-card {
  background: rgba(15, 23, 42, 0.97);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.45rem 1.3rem;
  border: 1px solid rgba(31, 41, 55, 1);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.pricing-card.popular {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.4), rgba(15, 23, 42, 0.98));
  border-color: rgba(59, 130, 246, 0.7);
  transform: translateY(-4px);
}

.badge-popular {
  position: absolute;
  top: -0.7rem;
  left: 1.4rem;
  padding: 0.18rem 0.6rem;
  font-size: 0.74rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.95);
  color: #fff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.6);
}

.pricing-header h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.pricing-header p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 600;
}

.price-term {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 0.1rem;
}

.pricing-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0.6rem;
  font-size: 0.83rem;
  color: var(--text-soft);
}

.pricing-features li + li {
  margin-top: 0.2rem;
}

.pricing-upsell {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.35rem;
}

/* COMPARISON TABLE */

.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 1);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.96);
  font-size: 0.82rem;
}

.compare-table th,
.compare-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(30, 64, 175, 0.5);
}

.compare-table th {
  text-align: left;
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.compare-table tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.95);
}

.compare-table td:first-child {
  color: var(--text-muted);
}

.compare-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* TESTIMONIALS */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(31, 41, 55, 1);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink));
}

.avatar-2 {
  background: linear-gradient(135deg, #22c55e, var(--accent-blue));
}
.avatar-3 {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.avatar-4 {
  background: linear-gradient(135deg, #f97316, #22c55e);
}

.testimonial-person h3 {
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-person p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* DASHBOARD SECTION */

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.3rem;
  align-items: center;
}

.dashboard-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.8rem;
}

.dash-item h3 {
  font-size: 0.98rem;
  margin: 0 0 0.15rem;
}

.dash-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.dashboard-visual {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  width: 100%;
  max-width: 360px;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.dashboard-header {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.8rem;
  color: var(--text-soft);
}

.dashboard-body {
  padding: 1rem;
}

.dashboard-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  font-size: 0.8rem;
}

.dashboard-stats span {
  color: var(--text-soft);
}

.dashboard-stats strong {
  display: block;
  font-size: 1rem;
}

.dashboard-chart {
  background: rgba(15, 23, 42, 1);
  border-radius: 14px;
  padding: 0.6rem 0.7rem 0.7rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.chart-line {
  height: 52px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(37, 99, 235, 0.9));
  border-radius: 9px;
  margin-bottom: 0.4rem;
}

.dashboard-caption {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* SIGNUP CTA */

.signup {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.5), transparent 55%),
              radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.45), transparent 55%);
}

.signup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.6rem;
  align-items: center;
}

.signup-copy h2 {
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.signup-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.signup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.signup-list li + li {
  margin-top: 0.25rem;
}

.signup-form {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid rgba(31, 41, 55, 1);
  box-shadow: var(--shadow-subtle);
  display: grid;
  gap: 0.85rem;
}

.signup-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.signup-form input,
.signup-form select {
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.98);
  padding: 0.5rem 0.6rem;
  font-size: 0.87rem;
  color: var(--text-main);
}

.signup-form input:focus,
.signup-form select:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.6);
}

.signup-note {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin: 0;
}

/* FAQ */

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 1);
  background: rgba(15, 23, 42, 0.98);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  font-size: 0.88rem;
}

.faq-question span:first-child {
  text-align: left;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--text-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.9rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  transition: max-height 0.24s ease-out, padding-bottom 0.22s ease-out;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 0.8rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */

.footer {
  padding: 1.8rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: #020617;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-logo img {
  height: 80px; /* was 32px, now 2.5x bigger */
}

.footer-text {
  margin-top: 0.4rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--text-main);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-visual {
    order: -1;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-layout,
  .signup-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .dashboard-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding-inline: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.nav-open .nav-links,
  .nav.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    padding: 0.9rem 1.4rem 1rem;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 1);
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-inner {
    gap: 2.3rem;
  }

  .how-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
