:root {
  --forest: #3aad7a;
  --pine: #2a9668;
  --leaf: #1e7a49;
  --mint: #5ccb8f;
  --sage: #b7e4c7;
  --foam: #eaf7ee;
  --cream: #fafaf8;
  --ink: #1c2417;
  --muted: #6c7a65;
  --border: #dde8d8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: .9rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}
nav.scrolled { box-shadow: 0 6px 32px rgba(30,122,73,.08); }

.nav-logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; flex-shrink: 0;
}
.nl-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  display: grid; place-items: center;
  box-shadow: 0 3px 10px rgba(58,173,122,.35);
}
.nl-mark svg { width: 17px; height: 17px; }
.nl-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.35rem; font-weight: 600; color: var(--ink); line-height: 1;
}
.nl-sub {
  font-weight: 400; font-style: italic; color: var(--leaf); font-size: 1.1rem;
}

.nav-links {
  display: flex; align-items: center; gap: .2rem; list-style: none;
}
.nav-links a {
  color: #000; font-size: .85rem; text-decoration: none;
  padding: .45rem .85rem; border-radius: 8px;
  transition: color .2s, background .2s;
  font-weight: 700;
}
.nav-links a:hover { color: var(--ink); background: var(--foam); }

.n-cta {
  background: var(--forest); color: white;
  font-size: .82rem; font-weight: 600; letter-spacing: .02em;
  padding: .55rem 1.3rem; border-radius: 9px;
  text-decoration: none; transition: background .2s, transform .15s;
  white-space: nowrap; flex-shrink: 0;
}
.n-cta:hover { background: var(--pine); transform: translateY(-1px); }

/* NAV BURGER */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 4px; border-radius: 8px;
  transition: background .2s;
}
.nav-burger:hover { background: var(--foam); }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.nav-mobile {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  flex-direction: column; padding: 1.2rem 6%;
  gap: .3rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--ink); text-decoration: none; font-weight: 700;
  font-family: 'Raleway', sans-serif; font-size: 1rem;
  padding: .75rem 1rem; border-radius: 10px;
  transition: background .2s;
}
.nav-mobile a:hover { background: var(--foam); color: var(--leaf); }
.nav-mobile .nm-cta {
  margin-top: .5rem; background: var(--forest); color: white;
  text-align: center; border-radius: 10px; padding: .85rem;
}
.nav-mobile .nm-cta:hover { background: var(--pine); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--cream) 0%, var(--foam) 60%, #d8f5e8 100%);
}
.hero-stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--leaf), var(--forest), var(--mint));
}

.hero-inner {
  max-width: 860px; margin: 0 auto;
  padding: 7rem 6% 5rem;
  display: flex; flex-direction: column; gap: 3.5rem;
  width: 100%;
}

.hero-top { text-align: center; }

.hero-pre {
  display: inline-flex; align-items: center; gap: .6rem;
  background: white; border: 1px solid var(--sage);
  color: var(--pine); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(58,173,122,.12);
  animation: fadeUp .8s ease both;
}
.hero-pre-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--forest); border-radius: 50%;
}

.hero-h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.6rem;
  animation: fadeUp .8s .08s ease both;
}
.hero-h1 em { font-style: italic; color: var(--leaf); }
.hero-h1 .sup { vertical-align: super; font-size: 38%; color: var(--leaf); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.8; color:#e70f0f;
  max-width: 560px; margin: 0 auto 2.5rem;
  animation: fadeUp .8s .16s ease both;
}

.hero-numbers {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  animation: fadeUp .8s .24s ease both;
}
.hn-item { text-align: center; padding: 0 2.2rem; }
.hn-sep { width: 1px; height: 2.5rem; background: var(--border); }
.hn-val {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem; font-weight: 600; color: var(--leaf); line-height: 1;
}
.hn-label { font-size: .75rem; color: var(--muted); margin-top: .25rem; }

/* CTA Panels */
.hero-panels {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  animation: fadeUp .8s .32s ease both;
}
.hp-panel {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 2rem 2.2rem; border-radius: 18px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.hp-panel:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(30,122,73,.18); }

.hp-panel--dark {
  background: var(--forest); color: white;
}
.hp-panel--light {
  background: white; color: var(--ink);
  border: 1.5px solid var(--border);
}

.hpp-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  opacity: .75;
}
.hp-panel--dark .hpp-badge { color: rgba(255,255,255,.8); }
.hp-panel--light .hpp-badge { color: var(--pine); }
.hpp-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--forest);
  animation: pulse 2s ease infinite;
}
.hpp-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.15;
  margin-top: .3rem;
}
.hp-panel--dark .hpp-title { color: white; }
.hp-panel--light .hpp-title { color: var(--ink); }
.hpp-desc {
  font-size: .8rem; opacity: .65;
}
.hpp-arrow {
  font-size: 1.4rem; margin-top: auto; padding-top: 1rem;
  transition: transform .2s;
}
.hp-panel:hover .hpp-arrow { transform: translateX(5px); }
.hp-panel--dark .hpp-arrow { color: white; }
.hp-panel--light .hpp-arrow { color: var(--leaf); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

@media(max-width:600px) {
  .hero-panels { grid-template-columns: 1fr; }
  .hn-sep { display: none; }
  .hn-item { padding: .5rem 1.5rem; }
}

/* FEATURES ROW */
.features-row {
  background: var(--forest);
  padding: 1.5rem 6%;
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.features-row::-webkit-scrollbar { display: none;
}
.feature-item {
  display: flex; align-items: center; gap: .7rem;
  padding: 0 2.5rem; border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap; flex-shrink: 0;
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }
.fi-icon { font-size: 1.1rem; }
.fi-text { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 500; }
.fi-text strong { color: white; }

/* ABOUT */
.about-section { padding: 9rem 6%; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.about-visual { position: relative; }
.about-img-mock {
  background: linear-gradient(145deg, var(--pine) 0%, var(--forest) 100%);
  border-radius: 28px; aspect-ratio: 4/5; position: relative; overflow: hidden;
}
.aim-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(93,203,143,.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
.aim-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
}
.aim-icon { font-size: 4rem; }
.aim-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem; color: rgba(255,255,255,.8); text-align: center; font-style: italic;
  max-width: 220px; line-height: 1.4;
}

.about-stat-card {
  position: absolute; bottom: -20px; right: -20px;
  background: white; border-radius: 18px; padding: 1.3rem 1.5rem;
  box-shadow: 0 16px 50px rgba(11,61,39,.13);
  border: 1px solid var(--border);
}
.asc-num { font-family: 'Raleway', sans-serif; font-size: 2.2rem; font-weight: 600; color: var(--leaf); }
.asc-label { font-size: .75rem; color: var(--muted); }
.asc-bar { height: 3px; background: var(--foam); border-radius: 2px; margin-top: .8rem; overflow: hidden; width: 120px; }
.asc-fill { height: 100%; background: linear-gradient(90deg, var(--leaf), var(--mint)); width: 92%; border-radius: 2px; }

.about-badge {
  position: absolute; top: 20px; left: -20px;
  background: var(--mint); border-radius: 12px; padding: .7rem 1rem;
  font-size: .75rem; font-weight: 700; color: #fdfdfd;
  box-shadow: 0 8px 24px rgba(93,203,143,.3);
}

.about-text .eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 1.2rem;
}
.about-text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.15;
  color: var(--leaf); margin-bottom: 1.3rem;
}
.about-text h2 em { font-style: italic; }
.about-text p {
  font-size: .95rem; line-height: 1.85; color: #000; margin-bottom: 1rem;
}
.about-values { display: flex; flex-direction: column; gap: .8rem; margin: 1.8rem 0; }
.av-item { display: flex; gap: .8rem; align-items: flex-start; }
.av-dot {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--foam); border: 1.5px solid var(--sage);
  display: grid; place-items: center; flex-shrink: 0; margin-top: .1rem;
  font-size: .65rem; color: var(--leaf); font-weight: 700;
}
.av-content strong { font-size: .9rem; color: var(--leaf); display: block; margin-bottom: .1rem; }
.av-content span { font-size: .82rem; color: var(--muted); }
.about-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--foam); color: var(--leaf);
  border: 1.5px solid var(--sage);
  font-weight: 600; font-size: .9rem;
  padding: .8rem 1.7rem; border-radius: 10px;
  text-decoration: none; transition: all .2s;
}
.about-cta:hover { background: var(--forest); color: white; border-color: var(--leaf); }

/* OFFER CARDS */
.offer-section { background: var(--foam); padding: 8rem 6%; }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.offer-card {
  background: white; border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,61,39,.1); }
.oc-header {
  padding: 2.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.oc-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--foam); display: grid; place-items: center; font-size: 1.7rem;
}
.oc-badge {
  background: var(--foam); color: var(--leaf);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px; border: 1px solid var(--sage);
}
.oc-body { padding: 2.5rem; }
.oc-title { font-family: 'Raleway', sans-serif; font-size: 1.7rem; color: var(--leaf); margin-bottom: .7rem; }
.oc-desc { font-size: .9rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.8rem; }
.oc-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.oc-features li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .87rem; color: var(--ink);
}
.oc-check { color: var(--leaf); font-weight: 700; margin-top: .05rem; flex-shrink: 0; }
.oc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--leaf); font-weight: 600; font-size: .88rem;
  text-decoration: none; border-bottom: 1.5px solid var(--sage);
  padding-bottom: .2rem; transition: gap .2s, border-color .2s;
}
.oc-link:hover { gap: .8rem; border-color: var(--leaf); }

/* STATS */
.stats-section {
  padding: 6rem 6%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-block { text-align: center; padding: 1rem; }
.sb-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.sb-num {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem; font-weight: 600; color: var(--leaf); line-height: 1;
}
.sb-label { font-size: .82rem; color: var(--muted); margin-top: .4rem; line-height: 1.4; }

/* HOW IT WORKS */
.how-section { padding: 8rem 6%; }
.how-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.hi-left h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--leaf); line-height: 1.1;
}
.hi-left h2 em { font-style: italic; color: var(--leaf); }
.hi-right p { font-size: .95rem; line-height: 1.8; color: var(--muted); }

.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.step-item {
  position: relative;
  padding: 2rem 1.5rem;
  background: white;
  border: 1px solid var(--border);
  border-right: none;
  transition: background .3s;
}
.step-item:first-child { border-radius: 18px 0 0 18px; }
.step-item:last-child { border-right: 1px solid var(--border); border-radius: 0 18px 18px 0; }
.step-item:hover { background: var(--forest); }
.step-item:hover .si-num { color: white; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.step-item:nth-child(1) .si-num { background: #fff0f0; color: #e53e3e; border-color: #fbb6b6; }
.step-item:nth-child(2) .si-num { background: #fff7e6; color: #d97706; border-color: #fcd89a; }
.step-item:nth-child(3) .si-num { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.step-item:nth-child(4) .si-num { background: #eaf7ee; color: #1e7a49; border-color: #b7e4c7; }
.step-item:nth-child(5) .si-num { background: #eef2ff; color: #4f46e5; border-color: #c7d2fe; }
.step-item:hover .si-title { color: white; }
.step-item:hover .si-desc { color: rgba(255,255,255,.55); }
.step-item:hover .si-icon-wrap { background: rgba(255,255,255,.1); }
.si-num {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem; font-weight: 800;
  line-height: 1; margin-bottom: .75rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--foam); color: var(--leaf);
  border: 2px solid var(--sage);
  transition: color .3s, background .3s;
}
.si-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--foam); display: grid; place-items: center;
  margin-bottom: 1rem; transition: background .3s;
  font-size: 1.2rem;
}
.si-title { font-weight: 600; font-size: .9rem; color: var(--leaf); margin-bottom: .4rem; transition: color .3s; }
.si-desc { font-size: .8rem; line-height: 1.6; color: var(--muted); transition: color .3s; }

/* PROFILES FULL */
.profiles-full-section { padding: 8rem 6%; background: var(--cream); }
.pf-head { margin-bottom: 4rem; }
.pf-head .tag { background: var(--foam); color: var(--leaf); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 100px; display: inline-block; margin-bottom: 1rem; border: 1px solid var(--sage); }
.pf-head h2 { font-family: 'Raleway', sans-serif; font-size: clamp(2.2rem,3.5vw,3.2rem); color: var(--ink); }
.pf-head h2 em { font-style: italic; color: var(--leaf); }

.pf-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pf-col {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  transition: box-shadow .3s, transform .3s;
}
.pf-col:hover { box-shadow: 0 12px 40px rgba(30,122,73,.1); transform: translateY(-4px); }
.pf-col-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.pf-col-title { font-family: 'Raleway', sans-serif; font-size: 1.8rem; color: var(--ink); font-weight: 800; margin-bottom: .8rem; }
.pf-col-desc { font-size: .9rem; line-height: 1.7; color: var(--muted); margin-bottom: 2rem; }
.pf-col-items { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2.5rem; }
.pfc-item { display: flex; gap: .8rem; align-items: flex-start; }
.pfc-num {
  font-family: 'Raleway', sans-serif;
  font-size: .85rem; color: white; font-weight: 700; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--leaf); display: grid; place-items: center; margin-top: 2px;
}
.pfc-text { font-size: .87rem; color: var(--ink); line-height: 1.5; }
.pf-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--leaf); color: white;
  font-size: .88rem; font-weight: 600;
  padding: .75rem 1.6rem; border-radius: 10px;
  text-decoration: none; transition: all .2s; border: none;
}
.pf-btn:hover { background: var(--pine); transform: translateY(-1px); }

/* TESTIMONIALS */
.testi-section { padding: 8rem 6%; }
.testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.th-left .eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); display: block; margin-bottom: .7rem; }
.th-left h2 { font-family: 'Raleway', sans-serif; font-size: clamp(2rem,3.5vw,3rem); color: var(--leaf); }
.th-right { font-size: .85rem; color: var(--muted); max-width: 280px; line-height: 1.6; }

.testi-masonry { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.testi-card {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover { box-shadow: 0 16px 50px rgba(11,61,39,.09); transform: translateY(-4px); }
.testi-card.big { grid-row: span 2; background: var(--forest); border-color: var(--leaf); }
.tc-stars { color: var(--mint); font-size: .9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.tc-text { font-family: 'Raleway', sans-serif; font-size: 1.1rem; line-height: 1.5; color: var(--leaf); margin-bottom: 1.2rem; font-style: italic; }
.big .tc-text { color: white; font-size: 1.4rem; }
.tc-author { display: flex; align-items: center; gap: .7rem; }
.tc-av {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--pine), var(--leaf));
  display: grid; place-items: center;
  font-family: 'Raleway', sans-serif; color: white; font-weight: 600;
}
.tc-name { font-weight: 600; font-size: .85rem; color: var(--leaf); }
.big .tc-name { color: white; }
.tc-role { font-size: .75rem; color: var(--muted); }
.big .tc-role { color: rgba(255,255,255,.45); }

/* TRUST */
.trust-section { background: var(--foam); padding: 8rem 6%; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.trust-card {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}
.trust-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.trust-title { font-weight: 600; font-size: .95rem; color: var(--leaf); margin-bottom: .5rem; }
.trust-desc { font-size: .83rem; line-height: 1.6; color: var(--muted); }

/* CONTACT */
.contact-section { padding: 8rem 6%; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info .eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf); display: block; margin-bottom: 1rem; }
.contact-info h2 { font-family: 'Raleway', sans-serif; font-size: clamp(2rem,3.5vw,3rem); color: var(--leaf); margin-bottom: 1.2rem; line-height: 1.15; }
.contact-info p { font-size: .95rem; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.cc-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem; background: var(--foam);
  border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; transition: all .2s;
}
.cc-item:hover { background: var(--forest); border-color: var(--leaf); }
.cc-item:hover .cc-text { color: rgba(255,255,255,.7); }
.cc-item:hover .cc-label { color: white; }
.cc-icon { font-size: 1.4rem; flex-shrink: 0; }
.cc-label { font-weight: 600; font-size: .9rem; color: var(--leaf); transition: color .2s; }
.cc-text { font-size: .8rem; color: var(--muted); transition: color .2s; }

.contact-form-wrap {
  background: white; border-radius: 28px; padding: 3rem;
  border: 10px solid #417b27;
  box-shadow: 0 8px 32px rgba(11, 105, 55, 0.08);
}
.form-title { font-family: 'Raleway', sans-serif; font-size: 1.8rem; color: var(--ink); font-weight: 800; margin-bottom: .5rem; }
.form-sub { font-size: .85rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: .75rem; font-weight: 700; color: var(--ink); letter-spacing: .05em; margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--foam);
  border: 1px solid var(--border);
  color: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; font-size: .88rem;
  padding: .8rem 1rem; border-radius: 10px; outline: none;
  transition: border .2s, box-shadow .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(30,122,73,.1); }
.form-select option { background: white; color: var(--ink); }
.form-textarea { resize: none; height: 100px; }
.form-btn {
  width: 100%;
  background: var(--leaf); color: white;
  font-weight: 700; font-size: .95rem;
  padding: 1rem; border-radius: 10px;
  border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: .5rem;
  transition: background .2s, transform .2s;
}
.form-btn:hover { background: var(--pine); transform: translateY(-2px); }

/* WHATSAPP FLOAT */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 6px 24px rgba(37,211,102,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 6px 24px rgba(37,211,102,.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 6px 24px rgba(37,211,102,.45); }
}
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: waPulse 2s ease-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-float svg { width: 32px; height: 32px; }

/* FOOTER */
footer { background: var(--ink); padding: 5rem 6% 2rem; }
.ft { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem; }
.ft-brand-name { font-family: 'Raleway', sans-serif; font-size: 1.6rem; color: white; display: block; margin-bottom: .8rem; }
.ft-brand-text { font-size: .83rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 250px; }
.ft-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.2rem; }
.ft-col a { display: block; font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: .65rem; transition: color .2s; }
.ft-col a:hover { color: white; }
.ft-bottom { display: flex; justify-content: space-between; font-size: .77rem; color: rgba(255,255,255,.2); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-pill, .hero-pill2 { display: none; }
  .about-section, .offer-grid, .contact-section { grid-template-columns: 1fr; }
  .about-section { gap: 3rem; }
  .stats-section { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: 1px solid var(--border); border-bottom: none; border-radius: 0; }
  .step-item:first-child { border-radius: 18px 18px 0 0; }
  .step-item:last-child { border-bottom: 1px solid var(--border); border-radius: 0 0 18px 18px; }
  .pf-cols { grid-template-columns: 1fr; }
  .testi-masonry { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .ft { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .how-intro { grid-template-columns: 1fr; }
  .contact-section { gap: 3rem; }
  .about-section, .offer-section, .how-section, .profiles-full-section,
  .testi-section, .trust-section, .contact-section { padding-top: 5rem; padding-bottom: 5rem; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-panels { grid-template-columns: 1fr; }
  .hn-sep { display: none; }
  .hn-item { padding: .5rem 1.2rem; }
  .hero-inner { padding: 5.5rem 5% 4rem; gap: 2.5rem; }
  .hero-h1 { font-size: clamp(2.6rem, 10vw, 3.5rem); }

  /* Nav */
  nav { padding: 1rem 5%; }
  .n-cta { padding: .45rem 1rem; font-size: .82rem; }

  /* Sections paddings */
  .about-section, .offer-section, .how-section, .profiles-full-section,
  .testi-section, .trust-section, .contact-section { padding: 4rem 5%; }
  .stats-section { padding: 3rem 5%; gap: 0; grid-template-columns: 1fr 1fr; }
  .features-row { padding: 1.2rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 0; overflow-x: visible; }
  .feature-item { flex-shrink: 1; white-space: normal; padding: .6rem .5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: auto; }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }

  /* About */
  .about-img-mock { min-height: 220px; }
  .about-stat-card { padding: .8rem 1rem; bottom: -12px; right: -8px; }
  .asc-num { font-size: 1.5rem; }
  .asc-label { font-size: .68rem; }
  .asc-bar { width: 80px; }

  /* Offer cards */
  .offer-card { padding: 1.5rem; }

  /* Trust grid */
  .trust-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; border-radius: 18px; }

  /* Footer */
  .ft { grid-template-columns: 1fr; gap: 2rem; }
  .ft-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  footer { padding: 4rem 5% 2rem; }

  /* Steps */
  .steps-grid { padding: 0; }

  /* Profiles */
  .pf-head { padding: 0 0 2rem; }
  .pf-col { padding: 2rem 1.5rem; }

  /* Testimonials */
  .testi-card { padding: 1.5rem; }
}