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

:root {
  --bg: #f0fdf4;
  --surface: #ffffff;
  --text: #052e16;
  --muted: #4b5563;
  --border: #d1fae5;
  --primary: #059669;
  --primary-hover: #047857;
  --primary-soft: #d1fae5;
  --accent: #0ea5e9;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

/* Topbar */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { font-size: 26px; }
.topbar nav { display: flex; gap: 32px; }
.topbar nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  transition: color .15s;
}
.topbar nav a:hover { color: var(--primary); }
.phone-top {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

/* Hero */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f0f9ff 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero .lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.trust { display: flex; gap: 48px; }
.trust > div { display: flex; flex-direction: column; }
.trust strong { font-size: 26px; color: var(--primary); font-weight: 800; }
.trust span { color: var(--muted); font-size: 13px; }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.hero-card {
  background: var(--surface);
  padding: 28px 22px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: rotate(-2deg);
  border: 1px solid var(--border);
}
.hero-card-2 { transform: rotate(2deg) translateY(20px); background: linear-gradient(135deg, #ecfdf5 0%, #fff 100%); }
.hero-card-3 { transform: rotate(-1deg); grid-column: span 2; flex-direction: row; align-items: center; gap: 16px; }
.hero-card-3 .card-emoji { margin-bottom: 0; }
.card-emoji { font-size: 36px; margin-bottom: 8px; }
.hero-card strong { font-size: 17px; }
.hero-card span { color: var(--muted); font-size: 13px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-soft); }
.btn-block { width: 100%; }

/* Sections */
section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255, 255, 255, 0.15); color: #fff; }
h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub { color: var(--muted); font-size: 17px; margin-bottom: 48px; max-width: 640px; }

/* Services */
.services { background: var(--surface); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service {
  background: var(--bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all .2s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.12);
  border-color: var(--primary);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service h3 { font-size: 18px; margin-bottom: 10px; }
.service p { color: var(--muted); font-size: 14px; }

/* Prices */
.prices { background: var(--bg); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.plan {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(5, 150, 105, 0.1); }
.plan-popular {
  background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 100%);
  border: 2px solid var(--primary);
  transform: scale(1.03);
}
.plan-popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-head h3 { font-size: 22px; margin-bottom: 6px; }
.plan-head p { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.amount { font-size: 38px; font-weight: 800; color: var(--primary); }
.period { color: var(--muted); font-size: 15px; }
.plan-features { margin-bottom: 32px; flex: 1; }
.plan-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* How it works */
.how { background: var(--surface); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  padding: 24px;
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* Contact */
.contact { background: var(--bg); }
.contact-card {
  background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 24px 48px rgba(5, 150, 105, 0.2);
}
.contact-card h2 { color: #fff; margin-bottom: 12px; }
.contact-card > div > p { opacity: 0.92; margin-bottom: 24px; font-size: 16px; }
.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact-channels a { font-size: 17px; font-weight: 600; transition: opacity .15s; }
.contact-channels a:hover { opacity: 0.8; }
.hours { font-size: 13px; opacity: 0.8; }

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: 18px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form h3 { margin-bottom: 8px; font-size: 20px; }
.contact-form input,
.contact-form select {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form select:focus { border-color: var(--primary); }

/* Footer */
footer { background: #052e16; color: #a7f3d0; padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-inner > div { display: flex; flex-direction: column; gap: 6px; }
.footer-inner strong { color: #fff; font-size: 18px; }
.footer-inner p { font-size: 14px; }
.footer-inner span { font-size: 13px; opacity: 0.85; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 400px; }
  .service-grid, .plans, .steps { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 36px; }
}
@media (max-width: 640px) {
  .topbar nav, .phone-top { display: none; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  section { padding: 56px 0; }
  .service-grid, .plans, .steps { grid-template-columns: 1fr; }
  .plan-popular { transform: none; }
  .plan-popular:hover { transform: translateY(-4px); }
  .trust { gap: 24px; flex-wrap: wrap; }
}
