:root {
  --green: #24943f;
  --green-dark: #147231;
  --green-soft: #dff4e5;
  --blue: #0b5f78;
  --ink: #082b36;
  --ink-soft: #174353;
  --paper: #f7fbf8;
  --surface: #ffffff;
  --line: #dbe7df;
  --muted: #62737a;
  --shadow: 0 18px 48px rgba(8, 43, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
iframe,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(219, 231, 223, 0.86);
  padding: 12px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(247, 251, 248, 0.92);
  backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
  box-shadow: 0 10px 30px rgba(8, 43, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(170px, 17vw, 220px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 850;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(36, 148, 63, 0.22);
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(36, 148, 63, 0.25);
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.button--ghost {
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button--ghost:hover {
  color: var(--ink);
  background: #edf7f0;
}

.button--dark {
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(8, 43, 54, 0.18);
}

.button--dark:hover {
  background: #041c24;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 70px));
  padding: clamp(66px, 10vw, 118px) clamp(20px, 6vw, 84px) clamp(52px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(247, 251, 248, 0.98), rgba(239, 249, 242, 0.94)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(223, 244, 229, 0), rgba(223, 244, 229, 0.58));
  pointer-events: none;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 800px;
}

.hero__visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-device-stage {
  position: relative;
  width: min(590px, 100%);
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-device-stage::before {
  content: "";
  position: absolute;
  inset: 11% 4% 6% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 148, 63, 0.18), rgba(11, 95, 120, 0.06) 58%, transparent 70%);
  filter: blur(2px);
}

.hero-device-stage__logo {
  position: absolute;
  width: min(500px, 86vw);
  opacity: 0.22;
  filter: saturate(0.9);
}

.hero-phone-frame {
  position: relative;
  width: min(370px, 58vw);
  min-width: 240px;
  aspect-ratio: 2 / 3;
  display: grid;
  place-items: center;
  animation: hero-phone-float 5.8s ease-in-out infinite;
}

.hero-phone-frame::before {
  content: "";
  position: absolute;
  inset: 10% 3% 6%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 148, 63, 0.24), rgba(36, 148, 63, 0.08) 50%, transparent 72%);
  filter: blur(18px);
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(8, 43, 54, 0.28));
}

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

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

h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 5.8vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero__proof li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
}

section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.referral-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.referral-section p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.section-heading .button {
  margin-top: 18px;
}

.pain-section,
.steps-section,
.pricing-section,
.faq-section {
  background: var(--surface);
}

.pain-grid,
.feature-list,
.pricing-grid,
.projects-grid,
.business-grid {
  display: grid;
  gap: 16px;
}

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

.pain-grid article,
.feature-list article,
.project-card,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(8, 43, 54, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pain-grid article:hover,
.feature-list article:hover,
.project-card:hover,
.price-card:hover,
.faq-list details:hover {
  border-color: rgba(36, 148, 63, 0.28);
  box-shadow: 0 18px 42px rgba(8, 43, 54, 0.08);
  transform: translateY(-3px);
}

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

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-grid h3,
.feature-list h3,
.price-card h3 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
}

.project-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.pain-grid p,
.feature-list p,
.project-card p,
.price-card li,
.faq-list p,
.steps-list p {
  color: var(--muted);
  line-height: 1.55;
}

.solution-section {
  background:
    linear-gradient(180deg, rgba(223, 244, 229, 0.54), rgba(247, 251, 248, 0.94)),
    var(--paper);
}

.feature-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.steps-list li {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
  box-shadow: 0 14px 36px rgba(8, 43, 54, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.steps-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.steps-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(8, 43, 54, 0.1);
}

.step-marker {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  position: relative;
  color: var(--green-dark);
  background: #eaf8ef;
  box-shadow: inset 0 0 0 1px rgba(36, 148, 63, 0.16);
}

.step-marker svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-marker small {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border: 2px solid white;
  font-size: 0.72rem;
  font-weight: 950;
}

.steps-list strong {
  display: block;
  margin-top: 16px;
  font-size: 1.04rem;
}

.visual-proof-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.96), rgba(238, 248, 241, 0.88)),
    var(--paper);
}

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

.device-proof-grid article,
.variety-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(8, 43, 54, 0.08);
}

.device-proof-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.variety-showcase {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(18px, 4vw, 36px);
  padding: clamp(20px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(8, 43, 54, 0.96), rgba(20, 114, 49, 0.82)),
    var(--ink);
}

.variety-showcase h3,
.variety-showcase p,
.variety-showcase .eyebrow {
  color: white;
}

.variety-showcase h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.variety-showcase p:not(.eyebrow) {
  margin: 12px 0 0;
  max-width: 560px;
  opacity: 0.84;
  line-height: 1.6;
}

.variety-showcase img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.projects-section {
  background: #eef8f1;
}

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

.project-card {
  min-height: 100%;
  padding: 14px;
  display: grid;
  gap: 18px;
}

.project-preview {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: grid;
  place-items: end center;
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--project-theme) 18%, white), transparent 48%),
    linear-gradient(180deg, #ffffff, #f5fbf7);
  box-shadow: 0 16px 34px rgba(8, 43, 54, 0.14);
}

.project-preview img {
  width: min(236px, 88%);
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(8, 43, 54, 0.2));
  transition: transform 0.18s ease;
}

.project-card:hover .project-preview img {
  transform: translateY(-3px) rotate(-1deg);
}

.project-card__body {
  display: grid;
  gap: 14px;
}

.project-card__top {
  display: grid;
  gap: 14px;
}

.project-card__top .text-link {
  justify-self: start;
}

.text-link {
  color: var(--green-dark);
  font-weight: 950;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.price-card--featured {
  border-color: rgba(36, 148, 63, 0.46);
  box-shadow: 0 20px 60px rgba(36, 148, 63, 0.16);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  color: white;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.plan-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 0;
  display: grid;
  gap: 4px;
}

.price strong {
  font-size: 2.5rem;
  line-height: 1;
}

.price small,
.monthly {
  color: var(--muted);
  font-weight: 850;
}

.old-price {
  width: max-content;
  color: #87959a;
  text-decoration: line-through;
  font-weight: 850;
}

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

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

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

.business-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 251, 248, 0.96)),
    var(--paper);
}

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

.business-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: white;
  box-shadow: 0 10px 26px rgba(8, 43, 54, 0.04);
  font-weight: 900;
}

.referral-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  background:
    linear-gradient(135deg, rgba(8, 43, 54, 0.96), rgba(20, 114, 49, 0.9)),
    var(--ink);
}

.referral-section h2,
.referral-section p,
.referral-section .eyebrow {
  color: white;
}

.referral-section p {
  max-width: 760px;
  opacity: 0.84;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-list p {
  margin-bottom: 0;
}

.faq-cta {
  margin-top: 22px;
}

.final-cta {
  padding-block: clamp(62px, 9vw, 112px);
  display: grid;
  justify-items: center;
  text-align: center;
  background: #f7fbf8;
}

.final-cta img {
  width: min(360px, 72vw);
  max-height: 96px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 14px 22px rgba(8, 43, 54, 0.08));
}

.final-cta .button {
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px clamp(20px, 6vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  background: white;
  font-weight: 850;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer-brand img {
  width: min(210px, 54vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-footer > a:not(.footer-brand) {
  color: var(--ink-soft);
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  box-shadow: 0 18px 34px rgba(20, 120, 55, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: #1fbd5a;
  box-shadow: 0 22px 42px rgba(20, 120, 55, 0.4);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

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

  .hero__visual {
    min-height: 420px;
  }

  .projects-grid,
  .device-proof-grid,
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: clamp(145px, 28vw, 180px);
    max-height: 46px;
  }

  .pain-grid,
  .feature-list,
  .steps-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .referral-section {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .projects-grid,
  .device-proof-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .variety-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
  }

  .brand img {
    width: clamp(112px, 34vw, 150px);
    max-height: 38px;
  }

  .button--small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
    padding-top: 58px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero-device-stage {
    min-height: 400px;
  }

  .hero-device-stage__logo {
    width: min(360px, 88vw);
  }

  .hero-phone-frame {
    width: min(250px, 68vw);
    min-width: 0;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof li {
    width: 100%;
    text-align: center;
  }

  section {
    padding-inline: 16px;
  }

  .price-card,
  .project-card,
  .pain-grid article,
  .feature-list article,
  .steps-list li {
    padding: 18px;
  }

  .project-preview {
    min-height: 360px;
  }

  .project-preview img {
    max-height: 340px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-inline: 16px;
  }

  .footer-brand img {
    width: min(160px, 58vw);
    max-height: 42px;
  }

  .site-footer > a:not(.footer-brand) {
    display: inline-flex;
    width: auto;
    justify-content: center;
    padding-right: 0;
    color: var(--ink);
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .floating-whatsapp svg {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero-phone-frame {
    animation: none;
  }
}
