:root {
  --primary: #cb0c9f;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  color: var(--dark);
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.small {
  max-width: 600px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  height: 36px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

.hero {
  padding: 140px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  margin: 1rem 0;
  color: var(--gray);
}

.hero img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.section {
  padding: 80px 0;
}

.alt {
  background: var(--light);
}

.title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  text-align: center;
}

.steps li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta input,
.cta textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: none;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: var(--primary);
  color: white;
}

.outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.light {
  background: white;
  color: var(--primary);
  width: 100%;
}

.footer {
  text-align: center;
  padding: 30px 0;
  color: var(--gray);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: white;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 16px 0;
  color: var(--primary);
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card li {
  margin-bottom: 10px;
}

.pricing-card.highlight {
  border: 2px solid var(--primary);
  transform: scale(1.03);
}
