﻿:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --text: #0c1a15;
  --muted: #4a5b54;
  --green: #0f9d63;
  --green-dark: #0b7a4d;
  --green-soft: #e6f6ee;
  --shadow: 0 12px 30px rgba(5, 30, 20, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cairo", "Playfair Display", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1, h2, h3 {
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  background: rgba(247, 251, 248, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
}

.logo__text small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.nav__links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.nav__cta {
  display: flex;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 20px rgba(15, 157, 99, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(15, 157, 99, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(15, 157, 99, 0.3);
  box-shadow: none;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  z-index: 0;
}

.hero::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #e3f8ee, transparent 70%);
  top: -120px;
  right: -80px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #eaf6ff, transparent 70%);
  bottom: -120px;
  left: -60px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: var(--green-dark);
  font-weight: 700;
}

.subhead {
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.trust {
  font-weight: 700;
  color: var(--green-dark);
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.invoice__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.badge {
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.invoice__body .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--muted);
}

.invoice__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.qr {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.hero__note {
  margin-top: 14px;
  font-size: 0.95rem;
}

.section {
  padding: 70px 0;
}

.section__head {
  margin-bottom: 32px;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text);
}

.list li {
  padding: 8px 0;
  position: relative;
  padding-right: 26px;
}

.list li::before {
  content: "?";
  position: absolute;
  right: 0;
  color: var(--green);
  font-weight: 700;
}

.solution__panel {
  background: linear-gradient(135deg, #ffffff, #f0fbf6);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 157, 99, 0.12);
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.icon-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: var(--shadow);
  text-align: right;
}

.icon-card span {
  font-size: 1.6rem;
}

.no-do__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.no-do__cards {
  display: grid;
  gap: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff3f0;
  color: #b5472f;
  font-weight: 700;
  width: fit-content;
}

.no-do__benefit {
  color: var(--text);
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card--popular {
  border: 2px solid rgba(15, 157, 99, 0.35);
  transform: translateY(-6px);
}

.popular {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.price {
  font-size: 2rem;
  color: var(--text);
  margin: 12px 0;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.plan-for {
  font-weight: 600;
}

.pricing__note {
  margin-top: 16px;
  color: var(--muted);
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.faq__grid {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.final-cta {
  padding-bottom: 90px;
}

.final-cta__inner {
  background: linear-gradient(135deg, #0f9d63, #12b875);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.final-cta__inner p {
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

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

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

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    width: 100%;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .nav__inner {
    flex-wrap: wrap;
  }

  .hero__actions,
  .nav__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__inner {
    padding: 28px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .reveal {
    transition: none;
  }
}

