:root {
  --bg: #f5f7f2;
  --bg2: #eef2e8;
  --white: #ffffff;
  --surface: #ffffff;
  --surface2: #f0f4eb;
  --surface3: #e8eee0;
  --border: #dde8cc;
  --border2: #c8dda8;
  --green: #6ba32a;
  --green-bright: #8bc34a;
  --green-dark: #4e7a1a;
  --green-light: #e8f5d0;
  --green-mid: #d4edaa;
  --teal: #1e6475;
  --teal-bright: #2a8fa8;
  --teal-light: #3bb8d8;
  --teal-pale: #e0f4f9;
  --navy: #0d2b3a;
  --text: #1a2e0d;
  --text2: #2d4a18;
  --text-muted: #5a7040;
  --text-faint: #8fa870;
  --gold: #d97706;
  --red: #dc2626;
  --shadow-sm: 0 2px 8px rgba(107, 163, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(107, 163, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(107, 163, 42, 0.15);
  --shadow-xl: 0 32px 80px rgba(107, 163, 42, 0.2);
  /* --font-display: 'Syne', sans-serif; */
  /* --font-display: 'Plus Jakarta Sans', sans-serif; */
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* Chrome, Edge, Safari */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eef2e8;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      #6ba32a,
      #1e6475);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      #4e7a1a,
      #15505e);
}


/* Text Selection */
::selection {
  background: rgba(107, 163, 42, .25);
  color: var(--text);
}

::-moz-selection {
  background: rgba(107, 163, 42, .25);
  color: var(--text);
}

/* ── AMBIENT DECORATIONS ── */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 500px;
  background: rgba(139, 195, 74, 0.12);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(30, 100, 117, 0.07);
  bottom: 20%;
  left: -150px;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(139, 195, 74, 0.08);
  top: 60%;
  left: 50%;
}

/* ─────────────────────────────
   NAV
───────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(245, 247, 242, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(107, 163, 42, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}

.nav-links>li>a:hover {
  color: var(--green);
  background: var(--green-light);
}

.nav-links>li.nav-active>a {
  color: var(--green);
  font-weight: 600;
}

/* Dropdown arrow */
.dd-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-faint);
  font-size: 18px;
}

.has-dropdown:hover .dd-arrow {
  transform: rotate(180deg);
}

/* ── DESKTOP DROPDOWN ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(107, 163, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 500;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.18s;
}

.dropdown-menu li a:hover {
  color: var(--green);
  background: var(--green-light);
}

.dd-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.dropdown-menu li a:hover .dd-icon {
  background: var(--green-mid);
}

.dd-sep {
  height: 1px;
  background: var(--border);
  margin: 4px 6px;
}

/* ── NAV CTA ── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  padding: 8px 18px;
  border: 1.5px solid var(--border2);
  border-radius: 50px;
  background: transparent;
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--green-light);
  border-color: var(--green-bright);
}

.btn-primary {
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(107, 163, 42, 0.4);
}

/* icons */
.dd-icon,
.snav-icon,
.sdl-icon {
  width: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.sdl-icon i {
  font-size: 25px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 10px;
  transition: background 0.2s;
}

.hamburger:hover {
  background: var(--green-light);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR OVERLAY ── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 20, 5, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: min(320px, 88vw);
  background: #fff;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.15);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.sidebar-header img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.sidebar-close {
  width: 34px;
  height: 34px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.sidebar-close:hover {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--border2);
}

.sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.snav-item {
  margin-bottom: 2px;
}

.snav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 12px;
}

.snav-link:hover {
  color: var(--green);
  background: var(--green-light);
}

.snav-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.snav-link:hover .snav-icon {
  background: var(--green-mid);
  border-color: var(--border2);
}

/* Sidebar accordion */
.sacc-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s;
  font-family: var(--font-body);
  text-align: left;
}

.sacc-btn:hover,
.sacc-btn.open {
  color: var(--green);
  background: var(--green-light);
}

.sacc-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sacc-btn:hover .sacc-icon,
.sacc-btn.open .sacc-icon {
  background: var(--green-mid);
  border-color: var(--border2);
}

.sacc-arrow {
  margin-left: auto;
  font-size: 23px;
  color: var(--text-faint);
  transition: transform 0.3s;
}

.sacc-btn.open .sacc-arrow {
  transform: rotate(180deg);
}

.sacc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sacc-body.open {
  max-height: 280px;
}

.sacc-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 56px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  border-radius: 10px;
  transition: all 0.18s;
}

.sacc-sub:hover {
  color: var(--green);
  background: var(--green-light);
}

.sacc-sub::before {
  content: "→";
  font-size: 17px;
  color: var(--green-bright);
  transition: transform 0.2s;
}

.sacc-sub:hover::before {
  transform: translateX(3px);
}

.sdivider {
  height: 1px;
  background: var(--border);
  margin: 10px 6px;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--surface2);
}

.sdl-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sdl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
}

.sdl-play {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
}

.sdl-play:hover {
  box-shadow: 0 8px 24px rgba(107, 163, 42, 0.35);
  transform: translateY(-1px);
}

.sdl-apple {
  background: var(--surface3);
  border: 1.5px solid var(--border);
  color: var(--text);
}

.sdl-apple:hover {
  background: var(--green-light);
  border-color: var(--border2);
}

.sdl-icon {
  font-size: 20px;
}

.sdl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sdl-small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.65;
}

.sdl-big {
  font-size: 14px;
  font-weight: 700;
}

/* Sidebar stagger */
.snav-item {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s, transform 0.3s;
}

.sidebar.open .snav-item:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.07s;
}

.sidebar.open .snav-item:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.sidebar.open .snav-item:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.17s;
}

.sidebar.open .snav-item:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.sidebar.open .snav-item:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.27s;
}

.sidebar.open .snav-item:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}

.sidebar.open .snav-item:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.37s;
}

.sidebar.open .snav-item:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.42s;
}

.sidebar.open .snav-item:nth-child(9) {
  opacity: 1;
  transform: none;
  transition-delay: 0.47s;
}





























/* ─────────────────────────────
   FOOTER
───────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 270px;
}

.footer-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
}

.social-link:hover {
  color: var(--green);
  background: var(--green-light);
  border-color: var(--border2);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-faint);
}

/* ─────────────────────────────
   REVEAL
───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media(max-width:1100px) {
  .card-big {
    flex-direction: column;
    gap: 22px;
  }

  .card-big .zfb {
    align-self: flex-start;
  }
}

@media(max-width:900px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .savings-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-layout .shield-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  #hero {
    padding-bottom: 60px;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }


  .container {
    width: 95% !important;
  }

  .hamburger {
    display: flex;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card-big {
    grid-column: span 1;
  }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media(max-width:480px) {}


.container {
  width: 95% !important;
}

.stats-grid {
  grid-template-columns: 1fr 1fr;
}

.hero-stats {
  gap: 20px;
}

.app-stores {
  flex-direction: column;
}

.hero-actions {
  flex-direction: column;
}

.dl-btns {
  flex-direction: column;
  align-items: center;
}

.security-badges {
  grid-template-columns: 1fr;
}

.why-grid {
  gap: 14px;
}









