/* ============ TOKENS ============ */
:root {
  --bg: #F5FBF7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #FFFFFF;
  --surface-2: rgba(15, 174, 92, 0.07);
  --text: #0B1F17;
  --muted: #4B6357;
  --line: rgba(11, 31, 23, 0.11);
  --green: #0FAE5C;
  --green-strong: #0B7A42;
  --green-soft: rgba(15, 174, 92, 0.13);
  --lime: #8FD13F;
  --glow: rgba(15, 174, 92, 0.45);
  --navbar: rgba(245, 251, 247, 0.72);
  --shadow: 0 20px 50px rgba(11, 31, 23, 0.10);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
}

:root[data-theme="dark"] {
  --bg: #050F0A;
  --surface: #0b457630;
  --surface-solid: #0B1913;
  --surface-2: rgba(34, 232, 138, 0.07);
  --text: #EAFBF1;
  --muted: #c7e5d6;
  --line: rgba(234, 251, 241, 0.10);
  --green: #22E88A;
  --green-strong: #172861d6;
  --green-soft: rgba(34, 232, 138, 0.14);
  --lime: #B9E85C;
  --glow: rgba(34, 232, 138, 0.55);
  --navbar: rgba(5, 15, 10, 0.62);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

/* ============ GLOBAL RESET & TYPOGRAPHY ============ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  transition: background 0.4s ease, color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

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

img, svg {
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 50px 0;
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ============ EYEBROW BADGE ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-strong);
  background: var(--green-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

:root[data-theme="dark"] .eyebrow {
  color: var(--green);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.7s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 60ch;
  margin-bottom: 52px;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

/* ============ SCROLL REVEAL ============ */
[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-animate="stagger"] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="stagger"].in-view > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="stagger"].in-view > *:nth-child(1) {
  transition-delay: 0.03s;
}
[data-animate="stagger"].in-view > *:nth-child(2) {
  transition-delay: 0.09s;
}
[data-animate="stagger"].in-view > *:nth-child(3) {
  transition-delay: 0.15s;
}
[data-animate="stagger"].in-view > *:nth-child(4) {
  transition-delay: 0.21s;
}
[data-animate="stagger"].in-view > *:nth-child(5) {
  transition-delay: 0.27s;
}
[data-animate="stagger"].in-view > *:nth-child(6) {
  transition-delay: 0.33s;
}
[data-animate="stagger"].in-view > *:nth-child(7) {
  transition-delay: 0.39s;
}
[data-animate="stagger"].in-view > *:nth-child(8) {
  transition-delay: 0.45s;
}
[data-animate="stagger"].in-view > *:nth-child(9) {
  transition-delay: 0.51s;
}
[data-animate="stagger"].in-view > *:nth-child(10) {
  transition-delay: 0.57s;
}
[data-animate="stagger"].in-view > *:nth-child(11) {
  transition-delay: 0.63s;
}

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-glow {
  background: linear-gradient(120deg, var(--green), var(--lime));
  color: #04150C;
  box-shadow: 0 0 0 0 var(--glow), 0 14px 30px -8px var(--glow);
  animation: pulseglow 2.8s ease-in-out infinite;
}

@keyframes pulseglow {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--glow), 0 14px 30px -8px var(--glow);
  }
  50% {
    box-shadow: 0 0 0 9px transparent, 0 18px 38px -6px var(--glow);
  }
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--surface-2);
}

.btn-wa {
  background: #1FCB5A;
  color: #04170C;
  box-shadow: 0 10px 24px -8px rgba(31, 203, 90, 0.55);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.82rem;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

:root[data-theme="dark"] .ripple {
  background: rgba(0, 0, 0, 0.35);
}

@keyframes rippleAnim {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

.wa-inline {
  margin-top: 28px;
}

/* ============ NAVBAR ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navbar);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark svg {
  width: 19px;
  height: 19px;
  color: #04170C;
}

.logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

:root[data-theme="dark"] .nav-links a:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ THEME TOGGLE ============ */
.theme-toggle {
  --tt-w: 64px;
  --tt-h: 34px;
  --tt-pad: 3px;
  width: var(--tt-w);
  height: var(--tt-h);
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #d8dae3;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  transform: none;
}

.theme-toggle .icon {
  width: 16px;
  height: 16px;
  z-index: 1;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.theme-toggle .sun {
  color: #f5a623;
  opacity: 1;
  margin-right: auto;
}

.theme-toggle .moon {
  color: #c7c9d6;
  opacity: 0.6;
  margin-left: auto;
}

.theme-toggle .thumb {
  position: absolute;
  top: var(--tt-pad);
  left: var(--tt-pad);
  width: calc(var(--tt-h) - (var(--tt-pad) * 2));
  height: calc(var(--tt-h) - (var(--tt-pad) * 2));
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

:root[data-theme="dark"] .theme-toggle {
  background: #4b5170;
  border-color: var(--line);
}

:root[data-theme="dark"] .theme-toggle .thumb {
  transform: translateX(calc(var(--tt-w) - var(--tt-h)));
}

:root[data-theme="dark"] .theme-toggle .sun {
  color: #9295a8;
  opacity: 0.6;
}

:root[data-theme="dark"] .theme-toggle .moon {
  color: #8fb3ff;
  opacity: 1;
}

/* ============ MOBILE MENU BUTTON ============ */
.nav-toggle-mobile {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.nav-toggle-mobile svg {
  width: 19px;
  height: 19px;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface-solid);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
    gap: 16px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle-mobile {
    display: flex;
  }
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow-x: clip;
  overflow-y: visible;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 0%, var(--green-soft), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

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

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(100deg, var(--green) 10%, var(--lime) 60%, var(--green-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 50ch;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
}

.hero-stats .stat span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Orbit graphic */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-profile {
  position: absolute;
  inset: -18% -10%;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 4s ease, transform 3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual.in-view .hero-profile img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}

.orbit-wrap {
  position: relative;
  z-index: 1;
  width: 480px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  grid-area: 1 / 1;
}

.orbit-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit-ring {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}

.orbit-ring.spin {
  animation: spin 40s linear infinite;
}

.orbit-ring.spin-rev {
  animation: spin 55s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-node {
  fill: var(--surface-solid);
  stroke: var(--green);
  stroke-width: 1.4;
}

.orbit-node.core {
  fill: var(--green);
}

.orbit-link {
  stroke: var(--green);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0.55;
  animation: dash 3.5s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -14;
  }
}

.orbit-pulse {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  opacity: 0;
  transform-origin: center;
  animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    opacity: 0.7;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.orbit-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  fill: var(--lime)}

@media (max-width: 940px) {
  .hero-grid {
    gap: 32px;
  }
  .hero-visual {
    max-width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 44px 0 52px;
    overflow: hidden;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    margin-bottom: 16px;
  }
  .hero p.lead {
    font-size: 0.95rem;
    max-width: none;
    margin-bottom: 24px;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }
  .hero-stats {
    gap: 18px 24px;
  }
  .hero-stats .stat strong {
    font-size: 1.2rem;
  }
  .hero-visual {
    overflow: hidden;
  }
  .hero-profile {
    inset: -6% 0;
  }
  .orbit-wrap {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 32px 0 40px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-stats .stat strong {
    font-size: 1.05rem;
  }
  .hero-stats .stat span {
    font-size: 0.72rem;
  }
  .hero-visual {
    max-width: min(100%, 300px);
  }
  .hero-profile {
    inset: -4% 0;
  }
  .hero-profile img {
    border-radius: var(--radius-md);
  }
}

/* ============ MARQUEE ============ */
.marquee-section {
  
  padding: 2rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

section.marquee-section {
  padding: 2rem 0;
}

.marquee {
  display: flex;
  animation: marquee 45s linear infinite;
  gap: 3rem;
  width: max-content;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* ============ BENTO GRID ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
}

@media (max-width: 940px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.bento-card {
  grid-column: span 1;
  grid-row: span 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.bento-card:hover {
  border-color: var(--green);
}

.bento-card.big {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 560px) {
  .bento-card.big {
    grid-column: span 1;
  }
}

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.bento-icon svg {
  width: 23px;
  height: 23px;
  color: var(--green-strong);
}

:root[data-theme="dark"] .bento-icon svg {
  color: var(--green);
}

.bento-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.bento-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.bento-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-strong);
  margin-top: 14px;
}

:root[data-theme="dark"] .bento-more {
  color: var(--green);
}

.bento-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.bento-card:hover .bento-more svg {
  transform: translateX(4px);
}

/* ============ SERVICE BLOCKS ============ */
.service-block {
  border-top: 1px solid var(--line);
  padding: 80px 0;
}

.service-block:nth-of-type(even) {
  background: var(--surface-2);
}

.service-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

@media (max-width: 900px) {
  .service-inner {
    grid-template-columns: 1fr;
  }
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.service-num {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--green-strong);
  font-size: 0.85rem;
}

:root[data-theme="dark"] .service-num {
  color: var(--green);
}

.service-icon-lg {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-lg svg {
  width: 28px;
  height: 28px;
  color: var(--green-strong);
}

:root[data-theme="dark"] .service-icon-lg svg {
  color: var(--green);
}

.service-block h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 14px;
}

.service-block .desc {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 52ch;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 8px;
}

.service-list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  align-items: flex-start;
}

.service-list li svg {
  width: 17px;
  height: 17px;
  color: var(--green-strong);
  flex-shrink: 0;
  margin-top: 2px;
}

:root[data-theme="dark"] .service-list li svg {
  color: var(--green);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.back-link svg {
  width: 14px;
  height: 14px;
}

.back-link:hover {
  color: var(--green-strong);
}

/* ============ TABLES ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.86rem;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  background: var(--surface-2);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.table-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-solid);
}

.table-wrap .data-table {
  border: none;
}

/* ============ PLAN CARDS ============ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--surface-solid);
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}

.plan-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-strong);
  background: var(--green-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

:root[data-theme="dark"] .plan-badge {
  color: var(--green);
}

.plan-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.plan-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-q .plus {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--green-strong);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

:root[data-theme="dark"] .faq-q .plus::before,
:root[data-theme="dark"] .faq-q .plus::after {
  background: var(--green);
}

.faq-q .plus::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-q .plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.open .faq-q .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 65ch;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(120deg, var(--green-strong), var(--green));
  border-radius: 26px;
  padding: 60px 46px;
  color: #05595c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #04170C;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  max-width: 34ch;
}

.cta-band p {
  margin-top: 10px;
  color: #0aa06c;
  max-width: 40ch;
}

.cta-band .btn-wa {
  background: #04170C;
  color: #EAFBF1;
}

.cta-band .btn-wa:hover {
  background: #0A2A18;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

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

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

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 12px;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--green-strong);
}

:root[data-theme="dark"] .footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1FCB5A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(31, 203, 90, 0.45);
  color: #04170C;
}

.wa-float svg {
  width: 27px;
  height: 27px;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1FCB5A;
  animation: floatpulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes floatpulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}
