:root {
  --green: #4d8059;
  --green-dark: #3d6647;
  --green-light: #e8f2ec;
  --emerald: #059669;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8faf9;
  --white: #ffffff;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 249, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
  text-decoration: none;
}

.brand img,
.mock-header img,
.footer-brand img {
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-primary:hover {
  background: #047857;
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--green);
  border: 1px solid rgba(77, 128, 89, 0.25);
}

.btn-ghost:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
  background: var(--green);
  color: #ffffff !important;
}

.btn-small:hover {
  background: var(--green-dark);
  color: #ffffff !important;
  text-decoration: none;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-shot {
  margin: 0;
  width: 100%;
  max-width: 340px;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(77, 128, 89, 0.18);
  background: var(--white);
}

.hero-shot figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-card-featured {
  border-color: #9fbfa8;
  box-shadow: 0 10px 30px rgba(77, 128, 89, 0.1);
}

.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 999px;
  padding: 4px 10px;
}

.plan-badge-pro {
  color: #92400e;
  background: #fff7ed;
}

.plan-card h3 {
  font-size: 1.25rem;
  color: var(--text);
}

.plan-who {
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 6px 0 4px;
  flex: 1;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  color: var(--text);
}

.plan-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plan-access {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.plan-cta {
  margin-top: 4px;
  width: 100%;
}

.install-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

.mock-popup {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(77, 128, 89, 0.15);
  overflow: hidden;
  font-size: 13px;
}

.mock-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--green-light), var(--white));
  border-bottom: 1px solid var(--border);
}

.mock-header strong {
  display: block;
  color: var(--green);
  font-size: 14px;
}

.mock-header small {
  color: var(--muted);
  font-size: 11px;
}

.mock-session {
  margin: 12px 14px 0;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--emerald));
  border-radius: 10px;
  color: var(--white);
}

.mock-session span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.mock-timer {
  font-size: 28px;
  font-weight: 700;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.mock-list {
  padding: 12px 14px 0;
  opacity: 0.45;
}

.mock-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
  background: #f8fafc;
}

.mock-item .x {
  color: var(--muted);
}

.mock-durations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 14px 0;
  opacity: 0.45;
}

.mock-durations span {
  text-align: center;
  padding: 8px 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
}

.mock-durations .active {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
}

.mock-start {
  margin: 12px 14px 16px;
  padding: 11px;
  text-align: center;
  background: var(--emerald);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  opacity: 0.45;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-alt {
  background: var(--white);
  max-width: none;
}

.section-alt > h2,
.section-alt > .steps {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.section-alt .feature-card {
  background: var(--bg);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
}

.steps {
  list-style: none;
  display: grid;
  gap: 24px;
  padding: 0 24px;
}

.steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 4px;
  color: var(--green-dark);
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.install-section {
  padding-bottom: 96px;
}

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

.install-footer {
  text-align: center;
  margin-top: 28px;
}

.install-card {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--white) 100%);
  border: 1px solid rgba(77, 128, 89, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.install-grid .install-card {
  max-width: none;
  margin: 0;
  text-align: left;
}

.install-grid .install-card h2 {
  text-align: left;
}

.install-grid .install-steps {
  margin-left: 0;
}

.install-card h2 {
  margin-bottom: 10px;
}

.install-card > p {
  color: var(--muted);
  margin-bottom: 16px;
}

.store-status {
  background: rgba(77, 128, 89, 0.08);
  border: 1px solid rgba(77, 128, 89, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.store-status a {
  font-weight: 600;
}

.install-card > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.install-steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 20px;
  padding-left: 20px;
  color: var(--text);
}

.install-steps li {
  margin-bottom: 8px;
}

.install-steps code {
  background: rgba(77, 128, 89, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.install-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--green);
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
  color: #4b5563;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo img {
  border-radius: 50%;
  object-fit: cover;
}

.footer-about {
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: #9ca3af;
  display: inline-flex;
}

.footer-socials a:hover {
  color: var(--green);
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}

.footer-legal p,
.footer-made {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--green);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .nav-links {
    gap: 12px;
  }

  .install-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .install-card {
    padding: 28px 20px;
  }

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