:root {
  --bg: #FAF7F2;
  --bg2: #FFFFFF;
  --surface: #FFFFFF;
  --surface-tint: #EEF5F3;
  --text: #0A2624;
  --text-sec: #4F6361;
  --text-mut: #8FA09E;
  --accent: #007062;
  --accent-dark: #00564B;
  --accent-light: #3FB8A5;
  --accent-soft: rgba(0, 112, 98, 0.08);
  --accent2: #C9A961;
  --green: #10B981;
  --border: rgba(10, 38, 36, 0.08);
  --border2: rgba(10, 38, 36, 0.15);
  --grad: linear-gradient(135deg, #007062 0%, #3FB8A5 100%);
  --grad-deep: linear-gradient(135deg, #00564B 0%, #007062 100%);
  --shadow-sm: 0 2px 8px rgba(10, 38, 36, 0.04);
  --shadow: 0 8px 32px rgba(10, 38, 36, 0.06);
  --shadow-lg: 0 16px 48px rgba(10, 38, 36, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* BRAND LOGO */
.brand-logo {
  display: inline-block;
  background-image: url("assets/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 130px;
  height: 34px;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
}

.foot-brand .brand-logo {
  width: 120px;
  height: 32px;
}

/* STICKY NAV OVERRIDES */
nav.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
}

nav.custom-navbar.stuck {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-txt {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-txt span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 0;
}

.nav-links a {
  color: var(--text-sec);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--text);
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero {
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 112, 98, 0.18);
  padding: 7px 16px;
  border-radius: 100px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

h1.hero-h {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
}

h1.hero-h .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding-left: 0;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}

.hb-emoji {
  font-size: 22px;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--text);
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 98, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border2);
  padding: 12.5px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--text);
  background: rgba(0, 0, 0, 0.03);
  color: var(--text);
}

/* HERO VISUAL */
.hero-viz {
  position: relative;
  height: 540px;
}

.hv-bg {
  position: absolute;
  width: 480px;
  height: 480px;
  background: var(--grad);
  border-radius: 50%;
  right: 0;
  top: 30px;
  opacity: 0.12;
  filter: blur(60px);
}

.hv-main {
  position: absolute;
  width: 380px;
  height: auto;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 28px;
  right: 40px;
  top: 60px;
  border: 1px solid var(--border);
}

.hv-main-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.hv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Sora', sans-serif;
}

.hv-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.hv-role {
  font-size: 13px;
  color: var(--text-sec);
}

.hv-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hv-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hv-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 13px;
}

.hv-row-l {
  color: var(--text-sec);
}

.hv-row-r {
  color: var(--text);
  font-weight: 600;
}

.hv-pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.hv-pulse span {
  font-size: 16px;
}

.hv-float-1 {
  position: absolute;
  left: 0;
  top: 20px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.hv-float-2 {
  position: absolute;
  left: 30px;
  bottom: 80px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite 0.8s;
}

.hv-float-3 {
  position: absolute;
  right: -10px;
  bottom: 30px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5.5s ease-in-out infinite 1.5s;
}

.hv-float-emoji {
  font-size: 22px;
}

.hv-float-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* LOGOS */
.logos {
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}

.logos-lbl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mut);
  margin-bottom: 36px;
}

.logos-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  max-width: 1320px;
  margin: 0 auto;
}

.logos-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}

.logo-img-c {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  flex-shrink: 0;
  transition: all 0.3s;
}

.logo-img-c:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-fb {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-mut);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.55;
}

/* SECTION CONTAINER */
section.s {
  padding: 120px 48px;
  position: relative;
}

.s-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.s-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.s-h {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin-bottom: 20px;
  text-align: center;
}

.s-h .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s-sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.s-head-c {
  text-align: center;
}

.s-head-c .s-eyebrow {
  display: block;
}

/* BENEFITS */
.benefit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: left;
  transition: all 0.3s;
  height: 100%;
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 112, 98, 0.18);
}

.benefit-emoji {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
}

.benefit-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.benefit-h {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.benefit-d {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* EMBEDDED MODEL */
.embedded-wrap {
  background: var(--surface-tint);
  border-radius: 32px;
  padding: 80px 64px;
}

.embedded-wrap .s-eyebrow {
  display: block;
  text-align: center;
}

.em-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  height: 100%;
}

.em-emoji {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.em-h {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.em-d {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

/* QUALITY MARKERS */
.qual-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  grid-template-rows: 1fr 1fr;
}

.qual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  min-height: 280px;
}

.qual:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.qual.featured {
  background: var(--text);
  color: #fff;
  grid-row: span 2;
}

.qual.featured .qual-h {
  color: #fff;
}

.qual.featured .qual-d {
  color: rgba(255, 255, 255, 0.75);
}

.qual-emoji-big {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 32px;
}

.qual-emoji {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}

.qual-h {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.qual.featured .qual-h {
  font-size: 30px;
}

.qual-d {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
}

.qual.featured .qual-d {
  font-size: 15px;
}

/* HOW IT WORKS */
.how-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  height: 100%;
}

.how-num {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.how-h {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.how-d {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* PRICING */
.pricing-wrap {
  display: flex;
  justify-content: center;
}

.price-card {
  background: var(--surface);
  border-radius: 32px;
  padding: 56px 56px;
  max-width: 520px;
  width: 100%;
  border: 2px solid var(--text);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-num {
  font-family: 'Sora', sans-serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  text-align: center;
}

.price-num .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-num .currency {
  font-size: 26px;
  color: var(--text-sec);
  vertical-align: top;
  margin-top: 16px;
  margin-right: 10px;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-num .dollar {
  font-size: 42px;
  vertical-align: top;
  margin-top: 14px;
  display: inline-block;
}

.price-tier-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 auto 32px;
  width: fit-content;
  border: 1px solid rgba(0, 112, 98, 0.15);
}

.price-tier-callout::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.price-per {
  text-align: center;
  color: var(--text-sec);
  font-size: 15px;
  margin-bottom: 36px;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding-left: 0;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.price-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.price-foot {
  font-size: 13px;
  color: var(--text-mut);
  text-align: center;
  line-height: 1.55;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.price-cta {
  display: flex;
  margin-top: 28px;
}

/* SAVINGS CALCULATOR */
.calc-wrap {
  background: linear-gradient(135deg, #0A2624 0%, #143E3B 100%);
  border-radius: 32px;
  padding: 72px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.calc-wrap::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 184, 165, 0.22) 0%, transparent 60%);
  right: -200px;
  top: -200px;
  border-radius: 50%;
  filter: blur(60px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.calc-h {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.calc-h .grad {
  background: linear-gradient(135deg, #5FE5D2 0%, #B8E6DD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-s {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.calc-control {
  margin-bottom: 28px;
}

.calc-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

#specNum {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

#specNum::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid var(--accent-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#specNum::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid var(--accent-light);
}

.calc-num {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  min-width: 50px;
  text-align: right;
}

.calc-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
}

.calc-input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.calc-results {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-result-row:last-of-type {
  border-bottom: none;
}

.calc-result-l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.calc-result-r {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.calc-savings {
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 168, 147, 0.22) 0%, rgba(63, 184, 165, 0.16) 100%);
  border: 1px solid rgba(63, 184, 165, 0.3);
  border-radius: 16px;
  text-align: center;
}

.calc-savings-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.calc-savings-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.calc-savings-num .grad {
  background: linear-gradient(135deg, #5FE5D2 0%, #B8E6DD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-savings-pct {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}

/* FAQ */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.25s;
}

.faq.open {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.faq-q {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.25s;
}

.faq.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-sec);
  font-size: 15px;
  line-height: 1.7;
}

.faq-a-inner {
  padding: 0 28px 24px;
}

/* FINAL CTA */
.cta-final {
  background: var(--text);
  border-radius: 32px;
  padding: 80px 72px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--grad);
  border-radius: 50%;
  left: -150px;
  top: -150px;
  opacity: 0.2;
  filter: blur(60px);
}

.cta-final::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--grad);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
  opacity: 0.2;
  filter: blur(60px);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-final h2 .grad {
  background: linear-gradient(135deg, #5FE5D2 0%, #B8E6DD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.btn-light {
  background: #fff;
  color: var(--text);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 112, 98, 0.4);
  background: #3FB8A5;
  color: #fff;
}

/* FOOTER */
footer {
  padding: 64px 48px 32px;
}

.foot-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 32px;
}

.foot-brand .logo-txt {
  display: inline-block;
  margin-bottom: 4px;
}

.foot-brand p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 380px;
}

.foot-offices {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.foot-office {
  font-size: 13px;
  line-height: 1.55;
}

.foot-office-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.foot-office p {
  color: var(--text-sec);
  margin: 0;
  max-width: 200px;
  font-size: 13px;
}

.foot-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.foot-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.foot-col a {
  color: var(--text-sec);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--accent);
}

.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-copy {
  color: var(--text-mut);
  font-size: 13px;
}

.foot-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-legal a {
  color: var(--text-mut);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.foot-legal a:hover {
  color: var(--text-sec);
}

.foot-legal .sep {
  color: var(--text-mut);
  font-size: 13px;
  opacity: 0.5;
}

/* ANIMATIONS */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* MID-WIDTH HERO TUNING */
@media (max-width: 1180px) and (min-width: 981px) {
  .hv-main {
    width: 320px;
    right: 16px;
    top: 80px;
    padding: 22px;
  }
  .hv-main-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
  .hv-row {
    padding: 8px 0;
    font-size: 12px;
  }
  .hv-float-1 {
    top: 30px;
    padding: 12px 16px;
  }
  .hv-float-2 {
    display: none;
  }
  .hv-float-3 {
    right: 0;
    bottom: 40px;
    padding: 12px 16px;
  }
  .hv-float-emoji {
    font-size: 18px;
  }
  .hv-float-txt {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  nav.custom-navbar {
    padding: 14px 20px;
  }
  .nav-links {
    display: none !important;
  }
  .hero {
    padding: 110px 20px 60px;
  }
  .hero-viz {
    height: 420px;
    margin: 20px auto 0;
    max-width: 420px;
  }
  section.s {
    padding: 80px 20px;
  }
  .qual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .qual.featured {
    grid-row: auto;
  }
  .embedded-wrap {
    padding: 48px 28px;
    border-radius: 24px;
  }
  .calc-wrap {
    padding: 48px 28px;
    border-radius: 24px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .calc-h {
    font-size: 32px;
  }
  .price-card {
    padding: 40px 32px;
  }
  .price-num {
    font-size: 64px;
  }
  .cta-final {
    padding: 56px 32px;
    border-radius: 24px;
  }
  .logos {
    padding: 48px 20px;
  }
  footer {
    padding: 48px 20px 24px;
  }
}
