:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --text: #0d0f14;
  --muted: #69707a;
  --line: #e8ebe7;
  --green: #15d66b;
  --green-dark: #08a94f;
  --soft-green: #eafaf1;
  --shadow: 0 24px 70px rgba(13, 15, 20, 0.10);
  --radius: 28px;
  --max: 1160px;
}

* {
  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 82% 12%, rgba(21, 214, 107, 0.13), transparent 30%),
    radial-gradient(circle at 12% 35%, rgba(21, 214, 107, 0.09), transparent 24%),
    var(--bg);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

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

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  backdrop-filter: blur(18px);
}

.brand img {
  width: 168px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  border: 1px solid var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 34px rgba(13, 15, 20, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(13, 15, 20, 0.22);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 82px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(21, 214, 107, 0.12);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.phone-card {
  width: min(390px, 100%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 42px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.phone-top {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 24px 10px 20px;
}

.avatar-mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px 16px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: #101217;
}

.avatar-mark span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #fff;
}

.avatar-mark span:nth-child(3) {
  width: 70%;
}

.avatar-mark i {
  position: absolute;
  right: 16px;
  bottom: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.phone-top strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.phone-top small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

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

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.link-list span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.mini-analytics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-analytics div {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft-green);
}

.mini-analytics strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.mini-analytics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  padding: 15px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(13, 15, 20, 0.10);
  color: var(--text);
  font-weight: 800;
}

.card-one {
  left: -10px;
  top: 100px;
}

.card-two {
  right: 0;
  bottom: 140px;
}

.features {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 16px 50px rgba(13, 15, 20, 0.05);
}

.features article {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.features article:last-child {
  border-right: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--soft-green);
}

.features h3,
.showcase h3,
.price-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.features p,
.showcase p,
.pricing-head p,
.price-card li,
.faq p,
.cta p {
  color: var(--muted);
  line-height: 1.6;
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.showcase h2,
.pricing h2,
.cta h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.showcase-grid {
  display: grid;
  gap: 16px;
}

.showcase-grid article,
.price-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 44px rgba(13, 15, 20, 0.05);
}

.showcase-grid article {
  padding: 28px;
}

.pricing-head {
  max-width: 690px;
  margin: 0 auto 40px;
  text-align: center;
}

.pricing-head .section-label {
  justify-content: center;
}

.pricing-head h2 {
  margin-bottom: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  padding: 32px;
}

.price-card.featured {
  position: relative;
  border-color: rgba(21, 214, 107, 0.55);
  background: linear-gradient(180deg, #ffffff, #f0fff6);
  box-shadow: 0 28px 80px rgba(8, 169, 79, 0.14);
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green);
  color: #071009;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge.muted {
  background: #eef1ee;
  color: var(--muted);
}

.price {
  margin: 16px 0 10px;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.price small {
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.saving {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.cta-box {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 58px 28px;
  border-radius: 42px;
  background: #101217;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-box img {
  width: min(320px, 80%);
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #fff;
}

.cta-box h2 {
  max-width: 760px;
}

.cta-box p {
  max-width: 620px;
  margin: 18px 0 30px;
  color: rgba(255,255,255,0.70);
}

.cta-box .btn {
  background: var(--green);
  color: #071009;
  border-color: var(--green);
}

.faq {
  max-width: 900px;
}

.faq details {
  padding: 22px 26px;
  margin-top: 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 46px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer p {
  margin: 0;
}

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

  .nav {
    display: none;
  }

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

  .hero {
    gap: 30px;
    min-height: auto;
  }

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

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

  .features article:nth-child(2) {
    border-right: 0;
  }

  .features article:nth-child(1),
  .features article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 64px 18px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 130px;
  }

  .site-header .btn {
    display: none;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy p {
    font-size: 16px;
  }

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

  .hero-visual {
    min-height: auto;
    padding-bottom: 70px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 0;
    overflow: hidden;
  }

  .features article,
  .features article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .features article:last-child {
    border-bottom: 0;
  }

  .price-card {
    padding: 26px;
  }

  .footer {
    flex-direction: column;
  }
}
