:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --green: #059669;
  --green-dark: #047857;
  --green-soft: #ecfdf5;
  --dark: #0f172a;
  --radius: 28px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 500;
}

.menu a:hover { color: var(--green-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; border-color: #cbd5e1; color: #334155; }
.btn-secondary:hover { border-color: #86efac; color: var(--green-dark); }
.btn-white { width: 100%; background: #fff; color: var(--green-dark); }
.btn-large { padding: 16px 28px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 45%, #f1f5f9 100%);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.75;
}

.hero-bg-1 {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 40px;
  background: #bbf7d0;
}

.hero-bg-2 {
  width: 280px;
  height: 280px;
  left: 0;
  top: 180px;
  background: #e2e8f0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--green-soft);
  border: 1px solid #bbf7d0;
  color: var(--green-dark);
}

.section-tag-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #a7f3d0;
}

.hero h1,
.section h2,
.section-dark h2 {
  margin: 18px 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

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

.hero p,
.section-text,
.intro-text,
.card p,
.service-card p,
.step-card p,
.testimonial p,
.contact-box p {
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card,
.service-card,
.testimonial,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card-dark,
.feature-box,
.section-dark,
.site-footer {
  background: var(--dark);
  color: #fff;
}

.card-dark p,
.section-dark p,
.feature-box li,
.site-footer {
  color: #cbd5e1;
}

.card-green,
.contact-box {
  background: var(--green);
  color: #fff;
}

.card-green p,
.contact-box p {
  color: #ecfdf5;
}

.card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #a7f3d0;
}

.card h3,
.service-card h3,
.step-card h3,
.contact-box h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.big-number {
  font-size: 3rem !important;
  font-weight: 900;
}

.emoji { font-size: 2.1rem; }

.stats {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.stats-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.contact-cards {
  display: grid;
  gap: 24px;
}

.stats-grid { grid-template-columns: repeat(4, 1fr); }

.stat-item {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}

.stat-item span {
  margin-top: 6px;
  display: block;
  color: var(--muted);
}

.section { padding: 88px 0; }
.section-soft { background: var(--soft); }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.feature-box {
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.feature-box li {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.services-grid,
.steps-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
}

.service-card {
  background: #fff;
  transition: 0.25s ease;
}

.service-card:hover { transform: translateY(-6px); }

.section-dark { padding: 88px 0; }

.step-card {
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.step-card span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-card p { color: #cbd5e1; }

.testimonials-grid { grid-template-columns: repeat(2, 1fr); }

.quote {
  font-size: 2rem;
  color: var(--green);
}

.testimonial strong {
  display: block;
  margin-top: 20px;
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
}

.contact-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card strong { font-size: 1.1rem; }

.contact-box {
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.25);
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #d1fae5;
}

.form-message {
  margin: 14px 4px 0;
  font-size: 0.95rem;
  min-height: 1.4em;
  color: #ecfdf5;
}

.site-footer { padding: 30px 0; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .services-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .hero-cards,
  .about-grid > div:first-child,
  .feature-box,
  .contact-grid > div {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1200px); }
  .menu { display: none; }

  .hero,
  .section,
  .section-dark {
    padding: 64px 0;
  }

  .hero-grid,
  .hero-cards,
  .stats-grid,
  .about-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .contact-grid,
  .contact-cards,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content,
  .hero-cards,
  .about-grid > div:first-child,
  .feature-box,
  .contact-grid > div {
    grid-column: auto;
  }

  .footer-inner { gap: 12px; }
  .hero-actions { flex-direction: column; }

  .btn-large,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }
}
