*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --dark: #000000;
  --darker: #061717;
  --card-bg: #081c1c;
  --green: #0a9aa2;
  --green-dim: rgba(61, 255, 160, 0.12);
  --white: #fff;
  --muted: #8aada8;
  --radius: 16px;
  --font: "Manrope", sans-serif;
  --nav-h: 68px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: #fff;
  color: #111;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: none;
}
.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: none;
}

/* ══ NAVBAR ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
nav.scrolled {
  background: rgb(249 255 255 / 78%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 0;
}
.logo-icon {
  width: 140px;
  height: 42px;
  /* background: #fff; */
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--dark);
  position: relative;
}

.logo-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgb(49 49 49);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-contact {
  background: var(--green);
  color: #0a2020;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.2s,
    opacity 0.2s;
  white-space: nowrap;
}
.btn-contact:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: rgb(0 206 229);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgb(0 206 229);
}
.hamburger span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 18, 18, 0.98);
  backdrop-filter: blur(16px);
  z-index: 998;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mob-inner {
  padding: 24px 24px 60px;
  display: flex;
  flex-direction: column;
}
.mob-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 600;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.mob-link:hover,
.mob-link.active {
  color: var(--green);
}
.mob-link::after {
  content: "›";
  font-size: 22px;
  opacity: 0.3;
}
.mob-cta {
  margin-top: 28px;
  background: var(--green);
  color: #0a2020;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mob-cta::after {
  display: none;
}

/* ══ HERO ══ */
#hero {
  background: var(--dark);
  min-height: 70vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 85%;
  /* background: linear-gradient(135deg, #6effff, #3fdeff); */
  border-radius: 60% 0 0 0;
  opacity: 0.14;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  right: 20%;
  bottom: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 255, 160, 0.28),
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-left {
  padding: 56px 0;
}
.hero-left h1 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 26px;
}
.hero-left h1 .accent {
  color: var(--green);
}
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #0a2020;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 255, 160, 0.3);
}
.hero-social {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -9px;
  background: #2a6060;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.avatars span:first-child {
  margin-left: 0;
}
.hero-social-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}
.diag {
  position: absolute;
  right: 60px;
  top: 40px;
  z-index: 1;
  width: 260px;
  height: 480px;
  background: linear-gradient(150deg, var(--green), #1a7060, transparent);
  border-radius: 100px;
  opacity: 0.18;
  transform: rotate(-15deg);
}
.hero-person {
  width: 515px;
  height: 440px;
  position: relative;
  z-index: 2;
  /* background: linear-gradient(160deg, #1e5858, #0b3535, #082828); */
  border-radius: 0% -18% 0 0/60% 60% 0 0;
  overflow: hidden;
}
.person-sil {
  width: 100%;
  height: 100%;
  background: url("../img/hero.png") center top/cover no-repeat;
  filter: brightness(0.94) saturate(0.8);
}
.green-pill {
  position: absolute;
  right: -45px;
  top: 48%;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.9;
  animation: float 5s ease-in-out infinite;
}
.stock-card {
  position: absolute;
  right: -8px;
  top: 0px;
  z-index: 10;
  background: rgba(8, 26, 26, 0.96);
  border: 1px solid rgba(61, 255, 160, 0.22);
  border-radius: 13px;
  padding: 4px 8px;
  backdrop-filter: blur(12px);
  min-width: 150px;
  animation: float 4s ease-in-out infinite;
}
.stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 8px;
}
.stock-row:last-child {
  margin-bottom: 0;
}
.stock-name {
  display: flex;
  align-items: center;
  gap: 7px;
}
.s-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.s-tick {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.s-sub {
  color: #b1b1b1;
  font-size: 10px;
}
.s-chg {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.crypto-card {
  position: absolute;
  left: -16px;
  bottom: 80px;
  z-index: 10;
  background: rgba(6, 20, 20, 0.96);
  border: 1px solid rgba(61, 255, 160, 0.18);
  border-radius: 13px;
  padding: 13px 16px;
  backdrop-filter: blur(12px);
  min-width: 165px;
  animation: float 5s ease-in-out infinite 0.7s;
}
.btc-icon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #f7931a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
}
.c-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.c-lbl {
  color: #aaa;
  font-size: 10px;
}
.c-pct {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
}
.c-price {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-left h1 {
  animation: fadeUp 0.75s ease 0.05s both;
}
.btn-explore {
  animation: fadeUp 0.75s ease 0.2s both;
}
.hero-social {
  animation: fadeUp 0.75s ease 0.35s both;
}

/* ══ SHARED ══ */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-dim);
  border: 1px solid rgba(61, 255, 160, 0.28);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.sec-title {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: 52px;
  line-height: 1.2;
}
.sec-title .acc {
  color: var(--green);
}
.link-green {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.link-green:hover {
  gap: 9px;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #0a2020;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(61, 255, 160, 0.28);
}

/* ══ SERVICES ══ */
#services {
  background: linear-gradient(to bottom, #c0ffff3d, #ecffff);
  padding: 90px 48px;
}
.svc-head {
  text-align: center;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.svc-card {
  background: var(--card-bg);
  border: 1px solid rgba(61, 255, 160, 0.1);
  border-radius: var(--radius);
  padding: 42px 30px 30px;
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 255, 160, 0.32);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}
.svc-lvl {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 72px;
  margin-bottom: 26px;
}
.bar {
  border-radius: 4px 4px 0 0;
  width: 20px;
}
.svc-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 9px;
  line-height: 1.35;
}
.svc-card p {
  color: #b1b1b1;
  font-size: 13px;
  margin-bottom: 22px;
}

/* ══ COMMUNITY ══ */
#community {
  background: linear-gradient(to bottom, var(--dark), var(--darker));
  padding: 90px 48px;
}
.comm-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.comm-vis {
  position: relative;
  height: 440px;
}
.z-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.z-person {
  width: 100%;
  height: 399px;
  background: url("../img/about.webp") center/cover no-repeat;
}
.z-grid-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  z-index: 2;
  background: #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
}
.z-bar {
  background: #2a2a2a;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.z-dots {
  display: flex;
  gap: 4px;
}
.z-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.zr {
  background: #ff5f57;
}
.zy {
  background: #febc2e;
}
.zg {
  background: #28c840;
}
.z-lbl {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}
.z-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
}
.z-cell {
  height: 60px;
  border-radius: 5px;
  background: #2a3535;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  position: relative;
}
.z-name {
  position: absolute;
  bottom: 2px;
  left: 3px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 7px;
  padding: 1px 3px;
  border-radius: 2px;
}
.comm-right h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #00e5ff;
  line-height: 1.25;
  margin-bottom: 18px;
}
.comm-right p {
  color: #5a7070;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ══ PROVIDERS ══ */
#providers {
  background: #f8fefb;
  padding: 90px 48px;
}
.prov-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.prov-inner > h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #0b3535;
  text-align: center;
  margin-bottom: 52px;
}
.prov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prov-card {
  background: #fff;
  border: 1px solid #e4f0ec;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.prov-card:hover {
  box-shadow: 0 8px 30px rgba(13, 80, 60, 0.1);
  transform: translateY(-3px);
}
.prov-arrow {
  color: #0b3535;
  font-size: 16px;
  margin-bottom: 7px;
}
.prov-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0b3535;
  margin-bottom: 6px;
}
.prov-card p {
  font-size: 12px;
  color: #7a9898;
  line-height: 1.5;
}
.prov-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prov-icon svg {
  width: 58px;
  height: 58px;
}

/* ══ BENEFITS ══ */
#benefits {
  background: #e8f5ee;
  padding: 90px 48px;
}
.ben-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.ben-inner > h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: #0b3535;
  margin-bottom: 10px;
}
.ben-sub {
  color: #5a7070;
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b3535;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}
.stat-num {
  font-size: 23px;
  font-weight: 800;
  color: #0b3535;
  line-height: 1;
}
.stat-num sup {
  font-size: 13px;
}
.stat-label {
  font-size: 11px;
  color: #5a7070;
}
.ben-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ben-card {
  background: var(--darker);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ben-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 9px;
}
.ben-card p {
  color: #7a9a98;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.ben-mock {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  width: 50%;
}

/* ══ FAQ ══ */
#faq {
  background: #fff;
  padding: 90px 48px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d6f5e8;
  color: #0b3535;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.faq-inner > h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #0b2020;
  margin-bottom: 9px;
}
.faq-sub {
  color: #7a9090;
  font-size: 13px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.faq-list {
  text-align: left;
  margin-bottom: 26px;
}
.faq-item {
  border-bottom: 1px solid #e4f0ec;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #0b3535;
  transition: color 0.2s;
  gap: 12px;
}
.faq-q:hover {
  color: #1a6050;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #c0ddd4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #0b3535;
  transition:
    transform 0.3s,
    background 0.3s,
    border-color 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: #0b3535;
  color: #fff;
  border-color: #0b3535;
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-ans {
  max-height: 180px;
}
.faq-ans-inner {
  padding: 0 0 16px;
  color: #5a7070;
  font-size: 13px;
  line-height: 1.75;
}
.btn-faq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #0b3535;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 17px;
  border-radius: 10px;
  width: 100%;
  transition: background 0.2s;
}
.btn-faq:hover {
  background: #1a5050;
}

/* ══ CTA ══ */
#cta {
  background: #f0faf5;
  padding: 52px 48px;
}
.cta-banner {
  max-width: 1180px;
  margin: 0 auto;
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 300px;
}
.cta-left {
  padding: 48px;
}
.cta-left h2 {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 22px;
}
.cta-avs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.cta-avs p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.cta-right {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop-bg {
  width: 43%;
  height: 317px;
  border-radius: 12px 0 0 12px;
  background: url("../img/about2.png") center/cover no-repeat;
  /* box-shadow: -18px 0 56px rgba(0, 0, 0, 0.4); */
}

/* ══ BACK TO TOP ══ */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #0a2020;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  box-shadow: 0 4px 14px rgba(61, 255, 160, 0.35);
  border: none;
}
#btt.show {
  opacity: 1;
  pointer-events: auto;
}
#btt:hover {
  transform: translateY(-3px);
}

/* ══ TOAST ══ */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #0b3535;
  color: var(--green);
  border: 1px solid rgba(61, 255, 160, 0.3);
  padding: 11px 26px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 2000;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ══ FOOTER ══ */
footer {
  background: var(--darker);
  padding: 68px 48px 26px;
}
.ft-top {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 52px;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.ft-logo .logo-icon::after {
  display: none;
}
.ft-top > p {
  color: #b1b1b1;
  font-size: 13px;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
}
.sub-row {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.sub-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  outline: none;
  color: #fff;
  padding: 13px 16px;
  font-size: 13px;
  font-family: var(--font);
}
.sub-row input::placeholder {
  color: #b1b1b1;
}
.sub-btn {
  background: #0b2020;
  color: #fff;
  border: none;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
  white-space: nowrap;
}
.sub-btn:hover {
  background: #1a4040;
}
.ft-links {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.ft-col ul {
  list-style: none;
}
.ft-col li {
  margin-bottom: 9px;
}
.ft-col a {
  color: #b1b1b1;
  font-size: 12px;
  transition: color 0.2s;
  display: block;
}
.ft-col a:hover {
  color: var(--green);
}
.ft-bot {
  max-width: 1180px;
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-bot a {
  color: #3a6060;
  font-size: 11px;
  transition: color 0.2s;
}
.ft-bot a:hover {
  color: var(--green);
}
.sep {
  color: #1a4040;
  margin: 0 6px;
}
.copy {
  color: #6e8f8f;
  font-size: 11px;
}

/* ══ RESPONSIVE 1024 ══ */
@media (max-width: 1024px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    gap: 20px;
  }
  .hero-inner {
    padding: 0 24px;
    gap: 20px;
  }
  .hero-person {
    width: 340px;
    height: 440px;
  }
  .diag {
    display: none;
  }
  #services,
  #community,
  #providers,
  #benefits,
  #faq,
  #cta,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cards-grid {
    gap: 16px;
  }
  .comm-inner {
    gap: 44px;
  }
  .prov-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ben-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    gap: 28px;
  }
  .ft-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══ RESPONSIVE 768 ══ */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  nav {
    padding: 0 16px;
  }
  .nav-links,
  .btn-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    text-align: center;
    gap: 0;
  }
  .hero-left {
    padding: 36px 0 0;
  }
  .hero-left h1 {
    font-size: clamp(26px, 7.5vw, 38px);
  }
  .btn-explore {
    margin: 0 auto;
  }
  .hero-social {
    justify-content: center;
  }
  .hero-right {
    min-height: 340px;
    margin-top: 28px;
  }
  .hero-person {
    width: 270px;
    height: 340px;
  }
  .green-pill {
    right: -28px;
    width: 58px;
    height: 58px;
  }
  .stock-card {
    right: -4px;
    top: 60px;
    min-width: 154px;
    padding: 10px 13px;
  }
  .s-tick {
    font-size: 11px;
  }
  .s-chg {
    font-size: 11px;
  }
  .crypto-card {
    left: -4px;
    bottom: 55px;
    min-width: 144px;
    padding: 10px 13px;
  }
  .c-price {
    font-size: 13px;
  }

  /* Sections */
  #services,
  #community,
  #providers,
  #benefits,
  #faq,
  #cta,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  #services {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
  #community {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .comm-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .comm-vis {
    height: 200px;
  }
  .z-bg {
    width: 66%;
  }
  .z-person {
    height: 175px;
  }
  .z-grid-wrap {
    width: 62%;
  }
  .z-cell {
    height: 48px;
    font-size: 13px;
  }
  #providers {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .prov-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
  #benefits {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .stats-row {
    gap: 18px;
  }
  .ben-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
  }
  #faq {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  #cta {
    padding: 36px 16px;
  }
  .cta-banner {
    grid-template-columns: 1fr;
  }
  .cta-left {
    padding: 32px 24px;
  }
  .cta-right {
    display: none;
  }
  footer {
    padding-top: 56px;
    padding-bottom: 22px;
  }
  .ft-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ft-bot {
    flex-direction: column;
    text-align: center;
  }
  .sub-row {
    max-width: 100%;
  }
  #btt {
    bottom: 18px;
    right: 18px;
  }
}

/* ══ RESPONSIVE 420 ══ */
@media (max-width: 420px) {
  .hero-person {
    width: 297px;
    height: 251px;
  }
  .stock-card,
  .crypto-card {
    display: none;
  }
  .ft-links {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .stat-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }
  .hero-left h1 {
    font-size: 26px;
  }
}
.community-benefits {
  background: #dbe7e2;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Top Row */
.top-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.top-row h2 {
  font-size: 42px;
  color: #0f3b3b;
  line-height: 1.2;
  flex: 1;
}

.top-row p {
  flex: 1;
  color: #4b6b6b;
  line-height: 1.6;
  font-size: 16px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.card {
  text-align: center;
}

.icon {
  width: 70px;
  height: 70px;
  background: #e6f7f2;
  border-radius: 15px;
  margin: 0 auto 20px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card h3 {
  font-size: 18px;
  color: #0f3b3b;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #6c8a8a;
}

/* Responsive */
@media (max-width: 992px) {
  .top-row {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .top-row h2 {
    font-size: 32px;
  }
}
