/* ============================================================
   1405 — Company Website Styles
   Pure CSS, no frameworks. Drop on any VPS and serve.
   ============================================================ */

:root {
  --bg: #06090f;
  --bg-elevated: #0c1018;
  --bg-card: #0f1520;
  --bg-card-hover: #141c2a;
  --border: rgba(148, 163, 184, 0.09);
  --border-strong: rgba(148, 163, 184, 0.18);
  --text: #eaf0fb;
  --text-muted: #8b9ab8;
  --text-dim: #5a6a85;
  --primary: #7c6cf0;
  --primary-hover: #9d90f7;
  --primary-soft: rgba(124, 108, 240, 0.12);
  --accent: #36e8d4;
  --accent-soft: rgba(54, 232, 212, 0.10);
  --success: #3ddba5;
  --gradient: linear-gradient(135deg, #7c6cf0 0%, #36e8d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 108, 240, 0.15), rgba(54, 232, 212, 0.08));
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1100px;
  --nav-h: 68px;
  --font: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Cascadia Code", "Fira Code", monospace;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* ---------- Background ambience ---------- */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.bg-glow::before {
  width: 600px;
  height: 600px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.3), transparent 70%);
}

.bg-glow::after {
  width: 500px;
  height: 500px;
  bottom: 5%;
  left: -150px;
  background: radial-gradient(circle, rgba(54, 232, 212, 0.15), transparent 70%);
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2.75rem;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 108, 240, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(124, 108, 240, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  background: rgba(6, 9, 15, 0.7);
  transition: border-color var(--transition), background var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 9, 15, 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(124, 108, 240, 0.35);
}

.logo-mark svg {
  width: 18px;
  height: 18px;
}

.logo span {
  background: linear-gradient(90deg, #fff 0%, #c4d0f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  padding: 5rem 0 5.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: pulse 2.5s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-bottom: 1.4rem;
}

.hero h1 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Hero visual card */
.hero-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(165deg, rgba(15, 21, 32, 0.95), rgba(12, 16, 24, 0.9));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0.4;
  pointer-events: none;
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  position: relative;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a3448;
}

.dots span:nth-child(1) { background: #f87171; }
.dots span:nth-child(2) { background: #fbbf24; }
.dots span:nth-child(3) { background: #34d399; }

.chip {
  font-size: 0.72rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  border: 1px solid rgba(124, 108, 240, 0.25);
  font-family: var(--mono);
}

.model-row {
  position: relative;
  display: grid;
  gap: 0.65rem;
}

.model-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.model-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-strong);
}

.model-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--gradient-soft);
  border: 1px solid rgba(124, 108, 240, 0.2);
  font-size: 1.05rem;
}

.model-meta {
  flex: 1;
  min-width: 0;
}

.model-meta strong {
  display: block;
  font-size: 0.9rem;
}

.model-meta span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.45rem;
}

.bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--gradient);
  opacity: 0.8;
}

.floating-note {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 230px;
  animation: float 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

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

.floating-note .check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(61, 219, 165, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.floating-note p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.floating-note strong {
  color: var(--text);
  display: block;
}

/* ---------- Logos / trust strip ---------- */
.trust {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  padding: 1.75rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.trust p {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  opacity: 0.65;
}

.trust-logos span {
  letter-spacing: 0.02em;
}

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 240, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: var(--gradient-soft);
  border: 1px solid rgba(124, 108, 240, 0.2);
  font-size: 1.3rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.card ul li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 1.15rem;
  position: relative;
}

.card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.82rem;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--transition), background var(--transition);
}

.step:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--primary-hover);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- Top notice / free trial strip ---------- */
.top-strip {
  background: linear-gradient(90deg, rgba(54, 232, 212, 0.08), rgba(124, 108, 240, 0.12));
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
}

.top-strip a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(54, 232, 212, 0.3);
  transition: text-decoration-color var(--transition);
}

.top-strip a:hover {
  color: #5aefe3;
  text-decoration-color: var(--accent);
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing.pricing-4 {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: rgba(124, 108, 240, 0.45);
  background: linear-gradient(180deg, rgba(124, 108, 240, 0.1), var(--bg-card) 40%);
  box-shadow: 0 20px 50px rgba(124, 108, 240, 0.12);
}

.price-card.free {
  border-color: rgba(61, 219, 165, 0.35);
  background: linear-gradient(180deg, rgba(61, 219, 165, 0.08), var(--bg-card) 45%);
}

.price-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
}

.price-card .badge.badge-free {
  background: linear-gradient(135deg, #3ddba5, #36e8d4);
  color: #042f2e;
}

.price-card .badge.badge-soft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.price.free-price {
  color: var(--success);
}

.fine-print {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}

.checklist {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
}

.checklist li {
  color: var(--text-muted);
  font-size: 0.93rem;
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.legal-content {
  max-width: 700px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 1rem 1.15rem;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.trial-step {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.trial-step:hover {
  border-color: var(--border-strong);
}

.trial-step .num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-hover);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.trial-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.trial-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.price-card .tagline {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
}

.price-card .note {
  color: var(--text-dim);
  font-size: 0.83rem;
  margin-bottom: 1.5rem;
}

.price-card ul {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.price-card ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.quote:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

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

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 108, 240, 0.25);
}

.quote-author strong {
  display: block;
  font-size: 0.92rem;
}

.quote-author span {
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  margin: 2rem 0 0;
  border-radius: 22px;
  padding: 3.25rem;
  background: var(--gradient-soft);
  border: 1px solid rgba(124, 108, 240, 0.25);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(54, 232, 212, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 420px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124, 108, 240, 0.06), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.035em;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-grid h2 {
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.values {
  display: grid;
  gap: 0.85rem;
}

.value {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--transition), background var(--transition);
}

.value:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.value-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.value h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.value p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.member {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform var(--transition), border-color var(--transition);
}

.member:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.member-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(124, 108, 240, 0.25);
}

.member h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.member .role {
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.member p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--primary-soft);
  border: 1px solid rgba(124, 108, 240, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.93rem;
  margin-bottom: 0.15rem;
}

.contact-item span,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.form-card .form-lead {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 0.93rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(61, 219, 165, 0.10);
  border: 1px solid rgba(61, 219, 165, 0.3);
  color: var(--success);
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

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

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 740px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.faq-q::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary-hover);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.85rem;
  max-width: 270px;
  line-height: 1.6;
}

.footer h4 {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 460px;
    margin-inline: auto;
  }

  .cards,
  .testimonials,
  .pricing,
  .pricing.pricing-4,
  .team,
  .trial-steps {
    grid-template-columns: 1fr 1fr;
  }

  .cards[style*="repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-note {
    left: 0;
    bottom: -1rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(6, 9, 15, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .cards,
  .testimonials,
  .pricing,
  .pricing.pricing-4,
  .team,
  .steps,
  .trial-steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .cta-band {
    padding: 2rem;
  }

  .section {
    padding: 4rem 0;
  }
}
