:root {
  --bg: #f5fbf7;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #557066;
  --green: #008b68;
  --green-dark: #006b55;
  --mint: #dff8ec;
  --line: rgba(0, 139, 104, 0.24);
  --warning: #f59e0b;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.16);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 251, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green-dark);
}

.brand img {
  width: 48px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.94rem;
  color: var(--muted);
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--green-dark);
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(18px, 6vw, 82px) 92px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 38, 35, 0.9) 0%, rgba(6, 38, 35, 0.75) 42%, rgba(6, 38, 35, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: #fff;
}

.eyebrow,
.section-heading span,
.showcase-text span {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(0, 139, 104, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bff5de;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.52;
  margin-bottom: 24px;
}

.hero-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 28px;
}

.hero-price span {
  grid-column: 1 / -1;
}

.hero-price span,
.hero-price small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero-price strong {
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: #ffffff;
}

.hero-actions,
.price-box .wide {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: #10b981;
  color: #062623;
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.trust-band {
  width: min(1180px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-band div {
  background: var(--paper);
  padding: 22px;
}

.trust-band strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--green-dark);
}

.trust-band span {
  color: var(--muted);
  font-weight: 650;
}

.section,
.pricing-section,
.showcase {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 28px;
}

.section-heading h2,
.showcase-text h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 210px;
}

.feature-card i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-dark);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p,
.showcase-text p,
.faq p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.62;
}

.showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: center;
}

.showcase-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.showcase-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.showcase-text li i {
  color: var(--green);
}

.showcase figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.pricing-section {
  text-align: center;
}

.pricing-section .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.price-box {
  width: min(720px, 100%);
  margin: 0 auto;
  background: #062623;
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.price-main span {
  display: block;
  color: #bff5de;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.price-main strong {
  display: block;
  margin: 8px 0 2px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
}

.price-main small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.price-list {
  margin: 26px 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.price-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.price-list i {
  color: #10b981;
}

.price-box .wide {
  width: 100%;
}

.price-box .wide.btn {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 86px auto 0;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.site-footer img {
  width: 62px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}

.site-footer div {
  flex: 1;
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--green-dark);
}

.site-footer a {
  font-weight: 900;
  color: var(--green-dark);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 88px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 38, 35, 0.93), rgba(6, 38, 35, 0.76));
  }

  .trust-band,
  .feature-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase {
    gap: 24px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-inline: 14px;
  }

  .header-action {
    padding-inline: 12px;
  }

  .hero-price {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .btn,
  .hero-actions a {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
