@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --p: #dc2626;
  --pd: #991b1b;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --ok: #10b981;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: radial-gradient(ellipse at top left, rgba(220, 38, 38, 0.08), transparent 50%), radial-gradient(ellipse at top right, rgba(225, 29, 72, 0.06), transparent 50%), var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin: auto;
}

.site-nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}

.navlinks a:not(.btn):hover {
  color: var(--p);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-p {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
}

.btn-p:hover {
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);
}

.btn-s {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.btn-s:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Hero Section */
.hero {
  padding: 80px 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: var(--p);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 20px 0;
  color: #0f172a;
}

.hero p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 680px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.15);
  filter: blur(40px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  border-radius: 18px;
  transition: transform 0.2s ease;
}

.metric:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
}

.metric small {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.metric strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 6px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 36px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature, .price-card, .form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
}

.feature h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  font-weight: 800;
}

.feature p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Grid */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid #ef4444;
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.18);
  transform: scale(1.02);
}

.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef4444, #3b82f6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.price-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.price-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--ink);
}

.price small {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.public-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .features, .pricing { grid-template-columns: 1fr; }
  .navlinks a:not(.btn) { display: none; }
  .price-card.featured { transform: none; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1200px); }
  .hero h1 { font-size: 2.4rem; }
}
