:root {
  --green: #0f8f55;
  --green-dark: #075237;
  --mint: #dff8e8;
  --yellow: #f7c948;
  --ink: #17211d;
  --muted: #5e6b64;
  --line: #d9e4dd;
  --paper: #ffffff;
  --soft: #f4f7f3;
  --shadow: 0 24px 70px rgba(9, 52, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(217, 228, 221, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 154px;
  height: 44px;
  object-fit: contain;
}

.nav {
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(18px, 6vw, 84px) 64px;
  background: var(--green-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-photo {
  object-position: 68% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 35, 24, 0.94) 0%, rgba(4, 35, 24, 0.82) 42%, rgba(4, 35, 24, 0.18) 78%),
    linear-gradient(180deg, rgba(4, 35, 24, 0.18) 0%, rgba(4, 35, 24, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: white;
}

.photo-badge {
  position: absolute;
  right: clamp(18px, 6vw, 82px);
  bottom: clamp(24px, 8vw, 86px);
  z-index: 2;
  display: grid;
  width: min(300px, calc(100% - 36px));
  gap: 2px;
  padding: 18px 22px;
  color: var(--green-dark);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(4, 35, 24, 0.28);
  transform: rotate(-2deg);
}

.photo-badge span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-badge strong {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.photo-badge small {
  font-size: 1.02rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions,
.discount-strip,
.trust-band,
.upload-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: 0 16px 36px rgba(247, 201, 72, 0.24);
}

.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.whatsapp-cta {
  gap: 10px;
  color: white;
  background: #18b357;
  box-shadow: 0 16px 36px rgba(24, 179, 87, 0.24);
}

.whatsapp-icon,
.floating-whatsapp-icon {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

.whatsapp-icon {
  width: 38px;
  height: 38px;
}

.full {
  width: 100%;
}

.discount-strip {
  margin-top: 34px;
}

.consultant-note {
  display: grid;
  max-width: 520px;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--yellow);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.consultant-note strong {
  color: white;
}

.discount-strip div {
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.discount-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1;
}

.discount-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.trust-band {
  justify-content: center;
  padding: 20px clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.trust-band strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.benefits,
.signup-section,
.faq,
.legal-note {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading .eyebrow,
.signup-copy .eyebrow {
  color: var(--green);
}

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

.benefit-card,
.lead-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.benefit-card {
  padding: 26px;
}

.benefit-card p,
.signup-copy p,
details p {
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 8px;
  font-weight: 900;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #eef6f0;
}

.signup-copy {
  position: sticky;
  top: 98px;
}

.signup-copy p {
  max-width: 560px;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.lead-form {
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

input:focus,
select:focus,
.upload-box:focus-within {
  outline: 3px solid rgba(15, 143, 85, 0.18);
  border-color: var(--green);
}

.upload-row {
  margin-top: 18px;
}

.upload-box {
  position: relative;
  flex: 1 1 240px;
  min-height: 118px;
  justify-content: center;
  padding: 20px;
  border: 1px dashed #91b99f;
  border-radius: 8px;
  background: #f6fbf7;
  cursor: pointer;
}

.upload-box span {
  font-size: 1rem;
}

.upload-box small {
  color: var(--muted);
  font-weight: 700;
}

.upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  padding: 20px 22px;
}

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

details p {
  margin: 14px 0 0;
}

.legal-note {
  background: #f7faf7;
  border-top: 1px solid var(--line);
}

.legal-note > div {
  max-width: 980px;
}

.legal-note h2 {
  color: var(--green-dark);
}

.legal-note p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: white;
  background: var(--green-dark);
}

.footer-logo {
  display: block;
  width: 160px;
  height: 46px;
  object-fit: contain;
  padding: 6px 10px;
  background: white;
  border-radius: 8px;
}

.footer span {
  color: rgba(255, 255, 255, 0.74);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #075237 0%, #0f8f55 100%);
}

.thanks-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 54px);
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thanks-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 36px;
  padding: 8px 12px;
  background: white;
  border-radius: 8px;
}

.thanks-card h1 {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
}

.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 330px;
  padding: 12px 14px;
  color: white;
  background: #18b357;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 82, 55, 0.26);
}

.consultant-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: 62% 34%;
  border: 3px solid white;
  border-radius: 50%;
}

.floating-whatsapp-icon {
  width: 52px;
  height: 52px;
  margin-left: auto;
}

.floating-whatsapp-copy {
  display: grid;
  gap: 2px;
}

.floating-whatsapp-copy span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-whatsapp-copy strong {
  font-size: 1rem;
}

.floating-whatsapp-copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .brand-logo {
    width: 138px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 35, 24, 0.92) 0%, rgba(4, 35, 24, 0.86) 52%, rgba(4, 35, 24, 0.66) 100%);
  }

  .hero-photo {
    object-position: 58% center;
  }

  .photo-badge {
    right: 18px;
    bottom: 18px;
    width: min(260px, calc(100% - 36px));
    padding: 14px 16px;
  }

  .benefit-grid,
  .signup-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .signup-copy {
    position: static;
  }
}

@media (max-width: 520px) {
  .hero-actions .button,
  .discount-strip div,
  .trust-band div {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
    text-align: left;
  }

  .consultant-avatar {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-icon {
    width: 44px;
    height: 44px;
  }

  .benefits,
  .signup-section,
  .faq,
  .legal-note {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lead-form {
    padding: 18px;
  }
}
