:root {
  --bg: #0b0f19;
  --surface: #111827;
  --surface-2: #0f172a;
  --card: #1f2937;
  --glass: rgba(17, 24, 39, 0.6);
  --ink: #ffffff;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --primary: #4f46e5;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --stroke: rgba(148, 163, 184, 0.2);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --gradient: linear-gradient(120deg, #4f46e5 0%, #8b5cf6 50%, #06b6d4 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

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

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

.section {
  padding: 90px 0;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  padding: 140px 0 90px;
  background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.5), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.4), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.35), transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(11, 15, 25, 0.6) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2306b6d4' fill-opacity='0.08'%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3Ccircle cx='110' cy='64' r='2'/%3E%3Ccircle cx='40' cy='160' r='2'/%3E%3Ccircle cx='180' cy='130' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  animation: float 10s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--stroke);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(2.7rem, 4vw, 4.3rem);
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 20px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #0b0f19;
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.6);
  border-color: var(--stroke);
  color: var(--ink);
}

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

.trust {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-visual img {
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-floating {
  position: absolute;
  right: -18px;
  bottom: -20px;
  width: 200px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.hero-floating strong {
  display: block;
  font-size: 1.1rem;
}

.dashboard {
  background: linear-gradient(150deg, rgba(31, 41, 55, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--stroke);
}

.dashboard h4 {
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--stroke);
}

.stat span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.stat strong {
  font-size: 1.1rem;
}

.section-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
}

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

.card {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--accent);
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.25);
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight {
  color: var(--ink);
  font-weight: 600;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.comparison th,
.comparison td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
}

.comparison th {
  background: rgba(79, 70, 229, 0.12);
  font-weight: 600;
}

.testimonial {
  display: grid;
  gap: 18px;
}

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

.plan {
  position: relative;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid var(--stroke);
}

.plan-starter {
  color: var(--accent);
  background: rgba(6, 182, 212, 0.15);
}

.plan-growth {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.2);
}

.plan-enterprise {
  color: var(--secondary);
  background: rgba(139, 92, 246, 0.2);
}

.plan-block {
  margin-bottom: 16px;
}

.plan-list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.plan-list li {
  padding-left: 18px;
  position: relative;
}

.plan-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan-formula pre {
  margin: 12px 0 0;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  color: var(--ink);
  overflow-x: auto;
}

.pricing-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.7);
  color: var(--ink);
  font-family: inherit;
}

.pricing-form button {
  align-self: end;
}

.price-tag {
  font-size: 2rem;
  color: var(--ink);
  font-weight: 700;
}

.footer-cta {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.25),
    rgba(139, 92, 246, 0.2),
    rgba(6, 182, 212, 0.2)
  );
  border-radius: 28px;
  border: 1px solid var(--stroke);
  padding: 60px 40px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.microcopy {
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  background: rgba(79, 70, 229, 0.12);
  border-radius: 16px;
  border: 1px solid var(--stroke);
  padding: 18px;
  text-align: left;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tag {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px dashed var(--stroke);
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
}

.photo-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-callout {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(79, 70, 229, 0.15));
  border: 1px solid var(--stroke);
  padding: 18px 20px;
  border-radius: 16px;
  margin-top: 18px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  opacity: 0.7;
}

.logo-pill {
  padding: 12px 14px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view,
  .hero-floating,
  .hero::after {
    transition: none;
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .pricing-grid,
  .trust-strip,
  .trust-list,
  .logo-row,
  .pricing-form {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

  .hero-floating {
    position: static;
    width: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 120px;
  }

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

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
