:root {
  --bg: #fbfcfb;
  --surface: #ffffff;
  --surface-strong: #f0f7f3;
  --text: #17211d;
  --muted: #64706b;
  --line: #dfe8e3;
  --primary: #0f9f6e;
  --primary-dark: #08734f;
  --accent: #2563eb;
  --ink: #0d1612;
  --shadow: 0 20px 60px rgba(12, 29, 22, 0.1);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 232, 227, 0.85);
  background: rgba(251, 252, 251, 0.88);
  backdrop-filter: blur(18px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

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

.nav-logo {
  gap: 0;
  font-size: 1.05rem;
}

.nav-logo span {
  color: var(--primary);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.quick-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.quick-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.quick-nav a:hover {
  color: var(--text);
  background: var(--surface-strong);
}

.quick-nav .nav-cta {
  color: white;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  padding: 36px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: #eef7f1;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: start;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2rem, 5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
}

h3 {
  font-size: 1rem;
}

.hero-subtitle {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}

.hero-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-price {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 800;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 34px rgba(15, 159, 110, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.trust-row {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  justify-self: end;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--surface);
  transform: rotate(1deg);
}

.hero-visual img {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
}

section {
  padding: 68px 0;
}

.section-grid,
.split-layout,
.faq-layout,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
  align-items: start;
}

.cta-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p:last-child,
.solution-panel p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.problem,
.benefits,
.audience,
.portfolio,
.faq {
  background: var(--surface);
}

.pain-list,
.solution-points,
.faq-list {
  display: grid;
  gap: 14px;
}

.pain-list article,
.solution-points div,
.benefit-card,
.steps article,
blockquote,
.project-card,
.lead-form,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.pain-list article {
  padding: 22px;
}

.pain-list span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-weight: 800;
}

.pain-list p,
.benefit-card p,
.steps p,
blockquote p,
.project-card p,
details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.solution {
  background: var(--ink);
  color: white;
}

.solution h2,
.solution .eyebrow,
.solution-panel p {
  color: white;
}

.solution-panel p {
  opacity: 0.78;
}

.solution-points div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.solution-points strong,
.solution-points span {
  display: block;
}

.solution-points span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.card-grid,
.portfolio-grid,
.testimonial-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

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

.benefit-card {
  min-height: 170px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.benefit-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(12, 29, 22, 0.09);
}

.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #e8f8ef;
  color: var(--primary-dark);
  font-weight: 900;
}

.process {
  background: #f7faf8;
  padding-top: 58px;
}

.benefits {
  padding-bottom: 58px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: steps;
}

.steps article {
  padding: 24px;
}

.social-proof {
  background: var(--ink);
}

.social-proof h2,
.social-proof .eyebrow {
  color: white;
}

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

.testimonial-empty {
  max-width: 680px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.testimonial-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

blockquote {
  margin: 0;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

blockquote p {
  color: white;
  font-size: 1.02rem;
}

cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 700;
}

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

.portfolio-empty {
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  padding: 24px;
}

.portfolio-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.project-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.project-card div {
  padding: 20px;
}

.final-cta {
  background: var(--primary);
  color: white;
}

.final-cta h2,
.final-cta .eyebrow,
.final-cta p {
  color: white;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta .btn {
  margin-top: 20px;
}

.plans {
  background: #f7faf8;
  padding-top: 50px;
}

.portfolio {
  padding-bottom: 48px;
}

.plans-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: auto;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

.plan-price {
  margin: 4px 0 14px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.old-price {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: line-through;
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #e8f8ef;
  color: var(--primary-dark);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-features {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
}

.launch-offer {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  border: 1px solid rgba(15, 159, 110, 0.18);
  border-radius: 999px;
  background: rgba(232, 248, 239, 0.72);
  color: var(--primary-dark);
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.btn-plan {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-plan.btn-primary {
  border-color: transparent;
  background: var(--primary);
  color: white;
}

.btn-plan.btn-primary:hover {
  background: var(--primary-dark);
}

.plans-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.featured-plan {
  border-color: rgba(15, 159, 110, 0.55);
  box-shadow: 0 22px 52px rgba(15, 159, 110, 0.14);
}

.btn-white {
  background: white;
  color: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(12, 29, 22, 0.16);
}

.btn-white:hover {
  background: #f3fff8;
}

.about {
  background: var(--surface);
  padding-top: 44px;
  padding-bottom: 54px;
}

.about-content {
  max-width: var(--container);
}

.section-sub {
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
}

.faq {
  padding-bottom: 44px;
}

.lead-form {
  display: grid;
  gap: 10px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 5px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.lead-form textarea {
  min-height: 112px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.12);
}

.form-button {
  width: 100%;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

summary::marker {
  color: var(--primary);
}

.site-footer {
  padding: 34px 0 90px;
  background: var(--ink);
  color: white;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-links a:hover {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  padding: 0 18px;
  box-shadow: 0 16px 34px rgba(15, 159, 110, 0.36);
  font-weight: 900;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .section-grid,
  .split-layout,
  .faq-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .benefits-grid,
  .audience-grid,
  .plans-grid,
  .steps,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-content {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .quick-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.86rem;
  }

  .quick-nav a {
    padding: 8px 9px;
  }

  .hero {
    padding: 40px 0 36px;
  }

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

  .hero-visual {
    transform: none;
  }

  section {
    padding: 64px 0;
  }

  .benefits-grid,
  .audience-grid,
  .plans-grid,
  .steps,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .featured-plan {
    transform: none;
  }

  .footer-content {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
