:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-soft: #dcfce7;
  --navy: #111827;
  --navy-deep: #1a2a44;
  --text: #111827;
  --muted: #6b7280;
  --faint: #9ca3af;
  --line: #e5e7eb;
  --bg: #f5f6f8;
  --card: #ffffff;
  --orange: #f97316;
  --orange-soft: #ffedd5;
  --amber: #f59e0b;
  --amber-soft: #fef3c7;
  --violet: #8b5cf6;
  --violet-soft: #ede9fe;
  --pink: #ec4899;
  --pink-soft: #fce7f3;
  --blue: #3b82f6;
  --blue-soft: #dbeafe;
  --teal: #0d9488;
  --teal-soft: #ccfbf1;
  --gray-soft: #f3f4f6;
  --shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 12px 32px -8px rgba(22, 163, 74, 0.18), 0 4px 12px -4px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 246, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.brand-mark img { width: 40px; height: 40px; object-fit: cover; }

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-name .egg { color: var(--navy-deep); }
.brand-name .pulse { color: var(--green-dark); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover { color: var(--text); background: #fff; }

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 9px;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--green);
  color: #fff;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 0 auto;
  height: 420px;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(34, 197, 94, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 95% 10%, rgba(59, 130, 246, 0.1), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #0d9488);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(22, 163, 74, 0.55);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.hero-stats strong { display: block; font-size: 1.25rem; }
.hero-stats span { color: var(--muted); font-size: 0.82rem; }

.phone {
  width: min(320px, 100%);
  margin: 0 auto;
  background: #0f172a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-hover);
}

.phone-screen {
  background: #f5f6f8;
  border-radius: 28px;
  min-height: 460px;
  padding: 18px 16px 16px;
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: var(--muted);
}

.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.kpi {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.kpi b { display: block; font-size: 1.15rem; }
.kpi small { color: var(--muted); }

.soft-list {
  margin-top: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
}

.soft-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-soft);
}

.soft-row:last-child { border-bottom: 0; }

.section { padding: 56px 0; }

.section h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 40rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 12px 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.icon svg { width: 22px; height: 22px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step h3 { margin: 12px 0 8px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-list { display: grid; gap: 10px; }

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.contact-list span { color: var(--muted); font-size: 0.92rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.legal-wrap {
  width: min(760px, calc(100% - 32px));
  margin: 36px auto 64px;
}

.legal-wrap h1 {
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.legal-meta { color: var(--muted); margin-bottom: 20px; }

.legal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.legal-card p { margin: 0 0 14px; }
.legal-card p:last-child { margin-bottom: 0; }

.legal-card h2 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
}

.legal-nav { margin-top: 20px; }

@media (max-width: 960px) {
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .hero-grid, .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow-hover);
  }
  .menu-btn { display: grid; place-items: center; }
  .cards, .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 28px; }
}
