:root {
  --bg: #071510;
  --bg-soft: #0d2118;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: #0f261b;
  --surface-light: #ffffff;
  --text: #edf7f1;
  --text-dark: #122118;
  --muted: #b8cbc0;
  --muted-dark: #557366;
  --primary: #19c56a;
  --primary-dark: #0ea654;
  --primary-soft: rgba(25, 197, 106, 0.14);
  --accent: #ffd24d;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 12px 30px rgba(6, 24, 16, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 124px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(32, 145, 85, 0.18), transparent 34%),
    linear-gradient(180deg, #071510 0%, #0b1b14 35%, #f7fbf8 35%, #f7fbf8 100%);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.orb-1 {
  top: -120px;
  right: -120px;
  background: rgba(25, 197, 106, 0.25);
}

.orb-2 {
  bottom: 10%;
  left: -160px;
  background: rgba(255, 210, 77, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(7, 21, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 21, 16, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  height: 80px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}


.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--text);
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.76rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: white;
  margin: 5px auto;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  background: rgba(7, 21, 16, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-large {
  min-height: 56px;
  padding: 1rem 1.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 16px 35px rgba(25, 197, 106, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(25, 197, 106, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: white;
  color: #0d2419;
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  padding: 4.4rem 0 5.5rem;
  z-index: 1;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow,
.section-tag,
.mini-label,
.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow,
.section-tag,
.mini-label {
  background: rgba(255, 255, 255, 0.08);
  color: #d9f6e7;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-tag {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.hero-content {
  color: var(--text);
}

.hero-content h1 {
  font-size: clamp(2.3rem, 3.8vw, 4.4rem);
  line-height: 0.98;
  margin: 1rem 0 1rem;
  max-width: 12ch;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 1.65rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-item {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #d5ebde;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card,
.stat-card,
.info-panel,
.service-card,
.step-card,
.pain-card,
.cta-box,
.faq-item,
.benefit-item {
  box-shadow: var(--shadow);
}

.card-main {
  position: absolute;
  right: 0;
  top: 1rem;
  width: min(100%, 430px);
  padding: 1.5rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text);
}

.card-main ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
  color: #e4f1ea;
}

.hero-stats {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: min(100%, 440px);
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: white;
  color: var(--text-dark);
  border-radius: 24px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-card strong {
  font-size: 1.9rem;
  letter-spacing: -0.04em;
  color: #0d2419;
}

.stat-card span {
  max-width: 12ch;
  font-size: 0.95rem;
  color: var(--muted-dark);
  text-align: right;
}

.hero-wave {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent 0%, rgba(247, 251, 248, 0.9) 100%);
}

.section {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
}

.section-compact {
  padding-top: 2.5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.8rem;
}

.section-heading .section-tag {
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-color: transparent;
}

.section-heading h2 {
  margin: 0.9rem 0 0.9rem;
  font-size: 42px !important;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.section-heading p {
  margin: 0;
  color: #557366;
  font-size: 1.02rem;
  line-height: 1.75;
}

.pain-grid,
.services-grid,
.steps-grid {
  display: grid;
  gap: 1.15rem;
}

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

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.pain-card,
.service-card,
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(12, 39, 27, 0.08);
}

.pain-card h3,
.service-card h3,
.step-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.22rem;
  line-height: 1.2;
  color: #13261c;
}

.pain-card p,
.service-card p,
.step-card p {
  margin: 0;
  color: #557366;
  line-height: 1.7;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -35px -35px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 197, 106, 0.14), transparent 70%);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary-dark);
  background: var(--primary-soft);
  margin-bottom: 1rem;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  color: #365548;
  line-height: 1.5;
}

.dark-section {
  background:
    radial-gradient(circle at top left, rgba(25, 197, 106, 0.12), transparent 28%),
    linear-gradient(180deg, #081710 0%, #0d2218 100%);
  color: white;
}

.dark-section .section-heading h2,
.dark-section .section-heading p,
.dark-section .step-card h3,
.dark-section .step-card p {
  color: white;
}

.dark-section .section-heading p {
  color: #bdd5c8;
}

.dark-section .section-heading .section-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #ecfff3;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.steps-grid .step-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 800;
  background: rgba(25, 197, 106, 0.18);
  color: #dff9ea;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-item {
  background: white;
  border-radius: 24px;
  padding: 1.2rem;
  border: 1px solid rgba(12, 39, 27, 0.08);
}

.benefit-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #112319;
}

.benefit-item span {
  color: #557366;
  line-height: 1.65;
}

.benefits-panel {
  display: flex;
}

.info-panel {
  width: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, #103120 0%, #0b2117 100%);
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-panel h3 {
  font-size: 2rem;
  margin: 0.9rem 0 0.9rem;
  line-height: 1.06;
}

.info-panel p {
  color: #c0d7cb;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  border-radius: 34px;
  padding: 2rem;
  background: linear-gradient(135deg, #14b660, #0d8d4b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-box h2 {
  margin: 0.8rem 0 0.8rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.cta-box p {
  margin: 0;
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.faq-wrap {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(12, 39, 27, 0.08);
  border-radius: 24px;
  padding: 0.35rem 1.25rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #12241a;
  padding: 1rem 0;
  position: relative;
  padding-right: 2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: #557366;
  line-height: 1.7;
  padding-right: 1rem;
}

.site-footer {
  background: #081510;
  color: #d2e4da;
  padding: 2rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  color: #93ad9f;
  margin: 0.45rem 0 0;
  max-width: 52ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #dff4e8;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.floating-card {
  animation: floatY 5.5s ease-in-out infinite;
}

.delay-float-1 { animation-delay: 0.5s; }
.delay-float-2 { animation-delay: 1.1s; }
.delay-float-3 { animation-delay: 1.7s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

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

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

@media (max-width: 780px) {
  :root {
    --header-height: 112px;
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(32, 145, 85, 0.18), transparent 34%),
      linear-gradient(180deg, #071510 0%, #0b1b14 28%, #f7fbf8 28%, #f7fbf8 100%);
  }

  .hero {
    padding-top: 2rem;
  }

  .brand-logo {
    height: 80px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .card-main,
  .hero-stats {
    position: static;
    width: 100%;
  }

  .benefit-list,
  .pain-grid,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-points,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .section {
    padding: 4.2rem 0;
  }

  .pain-card,
  .service-card,
  .step-card,
  .benefit-item,
  .faq-item,
  .cta-box,
  .info-panel {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .floating-card,
  .btn,
  .site-header,
  .desktop-nav a {
    transition: none !important;
    animation: none !important;
  }
}
