* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #1a8c3e;
  --green-dark: #145f2a;
  --green-light: #e8f7ed;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --gray: #6b7280;
  --dark: #111827;
  --white: #fff;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #145f2a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .2);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block
}

.logo-text {
  line-height: 1.1
}

.logo-text strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark)
}

.logo-text span {
  font-size: .7rem;
  color: var(--green);
  font-weight: 500;
  display: block
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: .92rem;
  font-weight: 500;
  align-items: center;
}

.nav-links>a,
.nav-dropdown>a {
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  padding: 10px 0;
}

.nav-links>a:hover,
.nav-dropdown>a:hover {
  color: #fff
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 240px;
  top: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
}

.dropdown-content a {
  color: #333 !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.2s;
}

.dropdown-content a:hover {
  background-color: #f4fbf6;
  color: #145f2a !important;
  padding-left: 20px;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  transition: background .2s
}

.nav-cta:hover {
  background: #ea6600
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  background: #145f2a;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: block;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 20px;
  background: rgba(0, 0, 0, .2);
  border-radius: 8px;
}

.mobile-dropdown.open .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown.open > a {
  color: #fbbf24;
}

.mobile-menu.open {
  display: flex
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a8c3e 0%, #145f2a 60%, #0d3d1a 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  width: 100%
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: rgba(249, 115, 22, .1);
  border-radius: 50%;
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
  pointer-events: none
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .25)
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px
}

.hero h1 span {
  color: #fbbf24
}

.hero-sub {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px
}

/* HERO SOCIAL PROOF */
.hero-prefer {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px
}

.hero-avatars {
  display: flex;
  align-items: center
}

.hero-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -15px;
  background: #eee;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.hero-avatars img:first-child {
  margin-left: 0
}

.hero-prefer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff
}

.hero-prefer-text .count {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1
}

.hero-prefer-text .tagline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px
}

.stat {
  text-align: center
}

.stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fbbf24
}

.stat .lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .75);
  font-weight: 500
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(249, 115, 22, .4)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, .5)
}

.btn-outline {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: .2s
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .25)
}

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3)
}

.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover
}

/* TRUST BAND */
.trust-band {
  background: #f9fafb;
  padding: 28px 24px;
  border-bottom: 1px solid #e5e7eb
}

.trust-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray)
}

.trust-item svg {
  color: var(--green)
}

/* SECTION WRAPPER */
.section {
  padding: 80px 24px
}

.section-inner {
  max-width: 1200px;
  margin: auto
}

.sec-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.sec-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px
}

.sec-title span {
  color: var(--green)
}

.sec-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px
}

.tc {
  text-align: center
}

.tc .sec-sub {
  margin: 0 auto
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px
}

.feat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25px;
  cursor: default
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 140, 62, .12)
}

.feat-icon {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

.feat-icon.green {
  background: var(--green-light)
}

.feat-icon.orange {
  background: var(--orange-light)
}

.feat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.feat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px
}

.feat-card p {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.65
}

/* PROCESS — Enterprise */
.process {
  background: linear-gradient(160deg, #0a1f0f 0%, #0d2b16 50%, #091a0c 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden
}

.process::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 140, 62, .18) 0%, transparent 70%);
  pointer-events: none
}

.process::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, .07) 0%, transparent 70%);
  pointer-events: none
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1
}

.process-header .sec-tag {
  background: rgba(26, 140, 62, .2);
  color: #4ade80;
  border: 1px solid rgba(26, 140, 62, .4)
}

.process-header .sec-title {
  color: #fff
}

.process-header .sec-sub {
  margin: 0 auto;
  color: rgba(255, 255, 255, .55)
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  align-items: start
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 140, 62, .5), #1a8c3e, rgba(26, 140, 62, .5), transparent);
  z-index: 0
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: transform .35s, background .35s, border-color .35s, box-shadow .35s;
  backdrop-filter: blur(8px)
}

.step-card:nth-child(even) {
  margin-top: 44px
}

.step-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 140, 62, .12);
  border-color: rgba(26, 140, 62, .45);
  box-shadow: 0 24px 60px rgba(26, 140, 62, .22)
}

.step-num-ghost {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
  pointer-events: none
}

.step-bubble {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8c3e, #145f2a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 4px rgba(26, 140, 62, .2), 0 0 0 10px rgba(26, 140, 62, .07), 0 12px 28px rgba(26, 140, 62, .4);
  border: 2px solid rgba(255, 255, 255, .15);
  position: relative;
  z-index: 2;
  transition: box-shadow .35s, transform .35s
}

.step-card:hover .step-bubble {
  box-shadow: 0 0 0 5px rgba(26, 140, 62, .4), 0 0 0 14px rgba(26, 140, 62, .14), 0 16px 40px rgba(26, 140, 62, .55);
  transform: scale(1.1)
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: .1px
}

.step-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7
}

.step-tag {
  display: inline-block;
  background: rgba(249, 115, 22, .15);
  color: #fb923c;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 14px;
  border: 1px solid rgba(249, 115, 22, .28);
  letter-spacing: .4px
}

.step-tag.live {
  background: rgba(26, 140, 62, .18);
  color: #4ade80;
  border-color: rgba(74, 222, 128, .3)
}

@media(max-width:900px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .steps-row::before {
    display: none
  }

  .step-card:nth-child(even) {
    margin-top: 0
  }
}

@media(max-width:560px) {
  .steps-row {
    grid-template-columns: 1fr
  }
}

/* SAVINGS */
.savings-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px
}

.savings-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1)
}

.calc-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  border: 1px solid #e5e7eb
}

.calc-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px
}

.form-row {
  margin-bottom: 18px
}

.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px
}

.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  transition: .2s;
  outline: none
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 140, 62, .1)
}

.calc-result {
  background: var(--green-light);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between
}

.calc-result .res-item .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green)
}

.calc-result .res-item .res-lbl {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 500
}

.calc-btn {
  width: 100%;
  margin-top: 18px;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
  font-family: inherit
}

.calc-btn:hover {
  background: var(--green-dark)
}

/* ZERO WORRIES */
.zero {
  background: var(--green);
  padding: 60px 24px;
  color: #fff
}

.zero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.zero h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px
}

.zero p {
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 28px
}

.worries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.worry {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500
}

.worry::before {
  content: '✓';
  background: #fbbf24;
  color: #000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .78rem;
  flex-shrink: 0
}

.zero-img img {
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
  height: 340px;
  object-fit: cover;
  width: 100%
}

/* TESTIMONIALS */
.testimonials {
  background: #f9fafb
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  transition: .25s
}

.testi-card:hover {
  box-shadow: 0 16px 40px rgba(26, 140, 62, .1);
  transform: translateY(-4px)
}

.stars {
  color: #f97316;
  font-size: 1rem;
  margin-bottom: 14px
}

.testi-card p {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0
}

.testi-author strong {
  font-size: .92rem;
  display: block
}

.testi-author span {
  font-size: .78rem;
  color: var(--gray)
}

/* IMPACT SECTION */
.impact-section {
  background: #145f2a;
  padding: 100px 24px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none
}

.impact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1
}

.impact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center
}

.impact-val {
  font-size: clamp(2.8rem, 3.5vw, 4.2rem);
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
  letter-spacing: -2px
}

.impact-lbl {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .8)
}

@media(max-width:900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px
  }
}

@media(max-width:560px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

/* FAQ */
.faq-section {
  background: #f0faf4;
  padding: 80px 24px
}

.faq-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 0
}

.faq-left-heading {
  background: var(--green);
  color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 28px 24px;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.35
}

.faq-img-wrap {
  position: relative;
  border-radius: 0 0 18px 18px;
  overflow: hidden
}

.faq-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

.faq-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  color: #fff
}

.faq-img-overlay h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px
}

.faq-img-overlay p {
  font-size: .82rem;
  opacity: .85;
  margin-bottom: 14px
}

.faq-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  transition: .2s
}

.faq-cta-btn:hover {
  background: #ea6600
}

.faq-right h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--dark)
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: var(--green)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: .93rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .2s;
  color: var(--dark)
}

.faq-item.open .faq-q {
  background: var(--green);
  color: #fff
}

.faq-q .arrow {
  font-size: 1.1rem;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.faq-a p {
  padding: 14px 22px 18px;
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 200px
}

@media(max-width:900px) {
  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-left {
    display: none
  }
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1a8c3e, #145f2a);
  padding: 80px 24px;
  text-align: center;
  color: #fff
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px
}

.cta-banner p {
  opacity: .85;
  font-size: 1.05rem;
  margin-bottom: 32px
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.btn-white {
  background: #fff;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: .2s
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.btn-outline-w {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: .2s
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .15)
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 24px 0;
  position: relative;
  overflow: hidden
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.footer-logo-row .logo-text strong {
  color: #fff;
  font-size: 1.5rem
}

.footer-logo-row .logo-text span {
  color: rgba(255, 255, 255, .7)
}

.footer-desc {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .88);
  max-width: 100%;
  margin-bottom: 36px
}

.footer-desc strong {
  color: #fff
}

.footer-info-bar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.footer-info-col h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 8px
}

.footer-info-col p,
.footer-info-col a {
  font-size: .92rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none
}

.footer-info-col a:hover {
  color: #fbbf24
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  transition: .2s;
  font-weight: 700
}

.footer-social a:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7)
}

.footer-bottom-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .7);
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .3);
  font-size: .82rem;
  transition: .2s
}

.footer-bottom-links a:last-child {
  border-right: none
}

.footer-bottom-links a:hover {
  color: #fff
}

.footer-watermark {
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .07);
  text-align: center;
  line-height: 1;
  margin-top: 4px;
  letter-spacing: -2px;
  user-select: none;
  pointer-events: none
}

@media(max-width:900px) {
  .footer-info-bar {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:560px) {
  .footer-info-bar {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}


/* RESPONSIVE */
@media(max-width:900px) {

  .hero-inner,
  .process-grid,
  .savings-wrap,
  .zero-inner,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-img-wrap,
  .zero-img {
    display: none
  }

  .process-img {
    display: none
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .worries-list {
    grid-template-columns: 1fr
  }

  /* Hero Social Proof Mobile Fix */
  .hero-prefer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 32px
  }

  .hero-avatars img {
    width: 52px;
    height: 52px;
    margin-left: -12px
  }

  .hero-prefer-text {
    text-align: center
  }
}

@media(max-width:560px) {

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 16px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .calc-result {
    flex-direction: column;
    gap: 16px
  }
}