:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-strong: #eef3e7;
  --ink: #17201c;
  --muted: #647067;
  --line: #dfe6da;
  --green: #1f8a5b;
  --green-dark: #126640;
  --lime: #c9f16d;
  --gold: #f1c85c;
  --coral: #e87452;
  --shadow: 0 24px 70px rgba(28, 45, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 230, 218, 0.78);
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta,
.button,
.choose-plan {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--ink);
  color: white;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 14px 32px rgba(31, 138, 91, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button.whatsapp {
  background: #25d366;
  color: #0b2d18;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.22);
}

.button:hover,
.header-cta:hover,
.choose-plan:hover {
  transform: translateY(-2px);
}

.section,
.section-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-band {
  background: linear-gradient(180deg, #ffffff 0%, #eef5e8 100%);
}

.hero {
  display: grid;
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.58;
}

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

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
}

.browser-shell {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.browser-shell::before {
  position: absolute;
  inset: auto -70px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 241, 109, 0.42);
  content: "";
  filter: blur(34px);
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d1c4;
}

.browser-bar strong {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
}

.site-preview {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
}

.preview-hero {
  min-height: 250px;
  padding: 28px;
  border-radius: 12px;
  background:
    linear-gradient(rgba(17, 34, 25, 0.22), rgba(17, 34, 25, 0.62)),
    linear-gradient(135deg, #1d7050, #d5b052 48%, #e87452);
  color: white;
}

.preview-hero p {
  display: inline-flex;
  margin-bottom: 58px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 750;
}

.preview-hero h2 {
  max-width: 380px;
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
}

.preview-hero button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
}

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

.preview-grid article,
.preview-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.preview-grid article {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.preview-grid span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.preview-grid small,
.preview-card small {
  color: var(--muted);
}

.preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.preview-card strong {
  color: var(--green-dark);
  font-size: 28px;
}

.compact {
  padding-top: 74px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

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

.steps article,
.plan,
.example-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps article {
  padding: 28px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.steps p,
.example-card p,
.plan-for,
.order-copy p,
.partner p,
.site-footer p,
.faq p {
  color: var(--muted);
  line-height: 1.58;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 0.78fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-grid button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.audience-grid button.is-active {
  border-color: rgba(31, 138, 91, 0.36);
  background: var(--green);
  color: white;
}

.recommendation-card {
  position: sticky;
  top: 92px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(31, 138, 91, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.recommendation-card h3 {
  font-size: 26px;
}

.recommendation-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.recommendation-card .button {
  width: 100%;
  margin-top: 14px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  overflow: hidden;
}

.example-card h3,
.example-card p {
  padding-inline: 22px;
}

.example-card p {
  padding-bottom: 22px;
}

.example-art {
  display: block;
  width: 100%;
  height: 220px;
  margin-bottom: 22px;
  object-fit: cover;
  background: #dde8d7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan {
  display: grid;
  padding: 24px;
}

.plan.highlighted {
  border-color: rgba(31, 138, 91, 0.48);
  background: #f8fff2;
  box-shadow: var(--shadow);
}

.plan h3 {
  margin-bottom: 12px;
}

.price {
  margin-bottom: 22px;
  font-size: 42px;
  font-weight: 900;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan ul {
  display: grid;
  gap: 10px;
  min-height: 220px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.plan li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  color: #2e3a35;
  line-height: 1.4;
}

.plan li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.choose-plan {
  align-self: end;
  background: var(--ink);
  color: white;
}

.comparison {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
  padding-top: 0;
}

.addons-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.addons-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.addons-table div:last-child {
  border-bottom: 0;
}

.addons-table span {
  color: var(--muted);
}

.plan-compare {
  padding-top: 0;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.3fr) repeat(4, minmax(96px, 0.6fr));
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row span,
.compare-row strong,
.compare-row b {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 18px;
}

.compare-row strong,
.compare-row b {
  justify-items: center;
  border-left: 1px solid var(--line);
  text-align: center;
}

.compare-head {
  background: var(--surface-strong);
}

.compare-head span,
.compare-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.compare-row b {
  color: var(--green-dark);
}

.payment-rules {
  padding-top: 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rules-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.rules-grid strong {
  font-size: 28px;
}

.rules-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.seo-content {
  padding-top: 0;
}

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

.seo-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.seo-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.organic-pages {
  padding-top: 0;
}

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

.organic-grid a {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.organic-grid a:hover {
  border-color: rgba(31, 138, 91, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.organic-grid span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.organic-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.content-page {
  background: var(--bg);
}

.article-hero {
  display: grid;
  gap: 18px;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #ffffff 0%, #eef5e8 100%);
}

.article-hero h1 {
  max-width: 920px;
}

.article-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.article-body {
  display: grid;
  gap: 28px;
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(50px, 7vw, 86px) 18px;
}

.article-body section {
  padding: 0;
}

.article-body h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(31, 138, 91, 0.2);
  border-radius: 8px;
  background: var(--surface);
}

.article-cta p {
  margin: 0;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--ink);
  color: white;
}

.order-section .eyebrow {
  color: var(--lime);
}

.order-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.support-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 4px;
  color: var(--lime);
  font-weight: 800;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.policy-list span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.order-form label {
  display: grid;
  gap: 8px;
  color: #44514a;
  font-size: 14px;
  font-weight: 750;
}

.order-form .full {
  grid-column: 1 / -1;
}

.bot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
}

.order-form input,
.order-form select {
  height: 48px;
  padding: 0 14px;
}

.order-form textarea {
  resize: vertical;
  padding: 13px 14px;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 138, 91, 0.1);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 750;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

summary::after {
  content: "+";
  font-size: 26px;
}

details[open] summary::after {
  content: "−";
}

.partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.partner h2 {
  max-width: 780px;
}

.partner p {
  max-width: 620px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .comparison,
  .order-section {
    grid-template-columns: 1fr;
  }

  .recommendation-card {
    position: static;
  }

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

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 14px;
  }

  .section,
  .section-band {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-stats,
  .steps,
  .example-grid,
  .pricing-grid,
  .order-form,
  .rules-grid,
  .seo-grid,
  .organic-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-row {
    min-width: 720px;
  }

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

  .preview-hero {
    min-height: 220px;
  }

  .plan ul {
    min-height: auto;
  }

  .addons-table div,
  .partner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    font-size: 15px;
  }

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

  .browser-shell {
    border-radius: 12px;
  }

  .site-preview {
    padding: 12px;
  }

  .preview-hero {
    padding: 20px;
  }

  .price {
    font-size: 36px;
  }
}
