/* ══════════════════════════════════════════════════════════════
   APILOX HOME PAGE — apilox-home.css
   Single consolidated stylesheet
   Brand: Apilox Health | Primary: #1FBC51 | Secondary: #FFFFFF
   Fonts: Montserrat (heading) + Poppins (body)
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Poppins:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Primary brand greens */
  --green:          #1FBC51;
  --green-dark:     #17a044;
  --green-deep:     #0d8a38;
  --green-light:    #E9F8EF;
  --green-soft:     rgba(31, 188, 81, 0.08);
  --green-mid:      rgba(31, 188, 81, 0.15);
  --green-border:   rgba(31, 188, 81, 0.22);
  --green-glow:     rgba(31, 188, 81, 0.30);

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f7fdf9;
  --gray-50:        #f0faf4;
  --gray-100:       #e8f5ed;
  --gray-200:       #d1e8d9;
  --gray-300:       #aecfba;
  --gray-500:       #5f7c69;
  --gray-700:       #354a3c;
  --ink:            #0d1f14;

  /* Black (used only for buttons/text, never for cards) */
  --black:          #0a1a10;

  /* Fonts */
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Poppins', sans-serif;
  --font-serif:     'DM Serif Display', Georgia, serif;

  /* Spacing */
  --header-h:       72px;
  --section-pad:    100px 40px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-xxl:  100px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.10);
  --shadow-green: 0 8px 32px rgba(31,188,81,0.28);
  --shadow-green-lg: 0 20px 60px rgba(31,188,81,0.18);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-h);
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--ink); line-height: 1.15; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 2px solid var(--green-border);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s, border-color 0.2s;
}
body:has(.magnetic:hover) .cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--green);
}

/* ── PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.pre-loader-logo { width: 160px; animation: logoBreath 1.5s ease-in-out infinite; }
@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}
.preloader-ring {
  width: 48px; height: 48px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-bar {
  width: 160px; height: 3px;
  background: var(--green-light);
  border-radius: 10px; overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 10px;
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar { from { width: 0; } to { width: 100%; } }

/* ── UTILITIES ───────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft);
  border: 1px solid var(--green-border);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-xxl);
  width: max-content;
}
.chip::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
.chip-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,188,81,0.12);
  border: 1px solid rgba(31,188,81,0.28);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-xxl);
  width: max-content;
}
.chip-dark::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.gradient-text {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 60%, #4ade80 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.serif-heading {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.01em;
}

.section-heading { display: flex; flex-direction: column; gap: 14px; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; }
.section-heading p { font-size: 1rem; max-width: 520px; color: var(--gray-500); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 13px 26px; border-radius: var(--r-xxl);
  border: none; transition: all 0.28s ease; white-space: nowrap;
}
.btn-green:hover {
  background: var(--green-dark); color: var(--white);
  box-shadow: var(--shadow-green); transform: translateY(-2px);
}
.btn-green i { font-size: 1.1rem; }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.88rem; padding: 13px 26px;
  border-radius: var(--r-xxl); border: none;
  transition: all 0.25s ease;
}
.btn-dark:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gray-700);
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.88rem; padding: 12px 26px;
  border-radius: var(--r-xxl);
  border: 1.5px solid var(--gray-200);
  transition: all 0.25s ease;
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.88rem; padding: 12px 26px;
  border-radius: var(--r-xxl);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s ease;
}
.btn-outline-white:hover { border-color: var(--green); color: var(--green); }

.btn-download {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 100px;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 1.5px solid var(--green-border);
  transition: all 0.2s;
}
.btn-download:hover { background: var(--green-light); border-color: var(--green); }

.btn-started {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 100px;
  background: var(--green); color: var(--black);
  border: 1.5px solid var(--green);
  transition: all 0.2s;
}
.btn-started:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

/* Float card animation */
.float-card {
  animation: floatCard 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -1.2s; }
.float-card:nth-child(3) { animation-delay: -2.4s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
#mainHeader {
  position: fixed; inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; z-index: 9000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
#mainHeader.scrolled {
  box-shadow: 0 2px 24px rgba(31,188,81,0.12);
  background: rgba(255,255,255,0.99);
}

.nav-logo img { height: 36px; display: block; }

.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
}
.nav-links > li { position: relative; }
.nav-link, .dropdown-trigger {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover, .dropdown-trigger:hover, .nav-link.active {
  color: var(--green-dark); background: var(--green-soft);
}
.dropdown-trigger i { font-size: 11px; transition: transform 0.3s; }
.dropdown-trigger.open i { transform: rotate(180deg); }

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

/* Language */
.lang-trigger {
  cursor: pointer; position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  transition: background 0.2s;
}
.lang-trigger:hover { background: var(--green-soft); }
.flag-circle {
  width: 20px; height: 20px; border-radius: 50%;
  background: url('https://flagcdn.com/w40/tz.png') center/cover;
  flex-shrink: 0;
}
.lang-menu {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border: 1px solid var(--green-border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 8px; min-width: 180px; z-index: 9100;
}
.lang-menu.open { display: block; }
.lang-menu li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  font-size: 14px; color: var(--gray-700);
}
.lang-menu li:hover { background: var(--green-soft); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--green-soft); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); 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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════════════════════ */
.mega-menu {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--green);
  border-bottom: 1px solid var(--green-border);
  box-shadow: var(--shadow-lg);
  padding: 36px 40px 40px; z-index: 8999;
  animation: megaSlide 0.28s cubic-bezier(0.16,1,0.3,1);
}
.mega-menu.open { display: block; }
@keyframes megaSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.mega-col-title {
  font-family: var(--font-heading); font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 16px;
}
.category-cards { display: flex; flex-direction: column; gap: 10px; }
.category-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  background: var(--white); transition: all 0.2s;
}
.category-card:hover {
  background: var(--green-soft);
  border-color: var(--green-border);
  transform: translateX(4px);
}
.cat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cat-icon i { font-size: 16px; color: var(--green-dark); }
.cat-text h5 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.cat-text p  { font-size: 12px; color: var(--gray-500); line-height: 1.4; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 6px; margin-bottom: 20px;
}
.sol-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background 0.2s;
}
.sol-item:hover { background: var(--green-soft); }
.sol-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sol-icon i { font-size: 14px; color: var(--gray-500); }
.sol-item:hover .sol-icon { background: var(--green); }
.sol-item:hover .sol-icon i { color: var(--black); }
.sol-item span { font-size: 13px; font-weight: 500; color: var(--gray-700); }

.contact-nudge {
  background: var(--green-light); border-radius: var(--r-md);
  padding: 16px 18px; display: flex;
  align-items: center; justify-content: space-between; gap: 12px;
}
.contact-nudge-text p  { font-size: 13px; font-weight: 600; color: var(--ink); }
.contact-nudge-text span { font-size: 12px; color: var(--gray-500); }
.btn-contact-nudge {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  background: var(--green); color: var(--black);
  border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.btn-contact-nudge:hover { background: var(--green-dark); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════════════ */
.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 8500; }
.mobile-drawer.open { display: block; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(10,26,16,0.35); backdrop-filter: blur(4px);
}
.drawer-panel {
  position: absolute; top: 0; right: 0;
  width: 320px; max-width: 92vw; height: 100%;
  background: var(--white); overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--green-border);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--green-border);
}
.drawer-brand {
  font-family: var(--font-heading); font-weight: 900; font-size: 20px; color: var(--ink);
}
.drawer-brand span { color: var(--green); }
.drawer-close {
  width: 34px; height: 34px; border: none;
  background: var(--green-soft); border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--green-dark);
}
.drawer-body { padding: 16px 20px 32px; flex: 1; }
.drawer-nav { list-style: none; margin-bottom: 16px; }
.drawer-nav li { border-bottom: 1px solid var(--gray-100); }
.drawer-nav a, .drawer-company-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 15px; font-weight: 500;
  color: var(--ink); cursor: pointer;
}
.drawer-nav a:hover, .drawer-company-trigger:hover { color: var(--green-dark); }
.drawer-nav i { font-size: 12px; transition: transform 0.3s; }
.drawer-company-trigger.open i { transform: rotate(180deg); }
.drawer-submenu {
  display: none; padding: 8px 0 12px 12px;
  background: var(--green-soft); border-radius: var(--r-md); margin-bottom: 8px;
}
.drawer-submenu.open { display: block; }
.drawer-submenu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; font-size: 14px; color: var(--gray-700);
  border-radius: 8px;
}
.drawer-submenu a:hover { background: var(--white); color: var(--green-dark); }
.drawer-submenu a i { font-size: 13px; color: var(--green-dark); width: 16px; }
.drawer-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.drawer-ctas .btn-download, .drawer-ctas .btn-started {
  display: block; text-align: center; padding: 13px; font-size: 14px;
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  position: relative; overflow: hidden;
}

/* Grid background */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,188,81,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,188,81,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31,188,81,0.10) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbDrift 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,248,239,0.7) 0%, transparent 70%);
  bottom: 10%; left: -80px;
  animation: orbDrift 16s ease-in-out infinite reverse;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(31,188,81,0.08) 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: orbDrift 9s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(20px, -30px); }
  66%       { transform: translate(-15px, 20px); }
}

.hero__inner {
  position: relative; z-index: 1;
  padding: 80px 40px 0;
  max-width: 1280px; margin: 0 auto; width: 100%;
}

.hero__top {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px; max-width: 860px;
  margin: 0 auto 64px;
}
.hero__top h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.04;
  color: var(--ink);
}
.hero__top p {
  font-size: 1.1rem; color: var(--gray-500);
  max-width: 560px; line-height: 1.8; font-weight: 400;
}
.hero__cta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}
.hero__watch {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 0.84rem;
  font-weight: 600; color: var(--gray-700); cursor: pointer;
  transition: color 0.2s;
}
.hero__watch:hover { color: var(--green-dark); }
.play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  transition: all 0.25s; flex-shrink: 0;
}
.hero__watch:hover .play-btn { background: var(--green-dark); transform: scale(1.08); }

/* Hero visuals */
.hero__visuals {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr;
  gap: 16px; align-items: end; position: relative;
}
.hero__col, .center__column { display: flex; flex-direction: column; gap: 12px; }
.center__column { margin-bottom: -1px; }

.rx-card {
  background: var(--white);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-md); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow-green);
}
.rx-card p { font-size: 0.84rem; font-weight: 500; color: var(--gray-700); }
.rx-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1rem; flex-shrink: 0;
}
.hero__img-main {
  width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0;
  object-fit: cover; display: block;
}
.hero__img-mid {
  width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0;
  object-fit: cover; max-height: 480px; display: block;
}
.ultimate-card {
  background: var(--green-light);
  border: 1.5px solid var(--green-border);
  border-radius: var(--r-xxl); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow-sm);
}
.ultimate-card__logo img { width: 28px; height: 28px; border-radius: 50%; }
.ultimate-card p { font-size: 0.84rem; font-weight: 600; color: var(--ink); flex: 1; }
.ultimate-card__arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1rem; flex-shrink: 0;
}
.customers-badge { display: flex; align-items: center; gap: 12px; }
.customers-badge__imgs { display: flex; }
.customers-badge__imgs img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--white); object-fit: cover;
  margin-left: -10px; box-shadow: 0 0 0 1px var(--green-border);
}
.customers-badge__imgs img:first-child { margin-left: 0; }
.customers-badge span {
  font-size: 0.82rem; font-weight: 700; color: var(--ink);
  font-family: var(--font-heading);
}
.report-card { padding: 14px; }
.report-card img { width: 100%; border-radius: var(--r-sm); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-500); font-size: 11px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--font-heading); z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--green), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════════════════════
   TRUST BANNER
══════════════════════════════════════════════════════════ */
.trust-banner {
  background: var(--green-light);
  border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--green-border);
  padding: 32px 40px;
}
.trust-banner__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 20px; align-items: center;
}
.trust-banner__text {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-dark); font-family: var(--font-heading);
}
.trust-banner__logos {
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-banner__logos img {
  height: 32px; width: auto;
  opacity: 0.5; filter: grayscale(1) sepia(20%);
  transition: opacity 0.2s, filter 0.2s;
}
.trust-banner__logos img:hover { opacity: 1; filter: none; }

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats { padding: var(--section-pad); background: var(--white); }
.stats__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.stats__left { display: flex; flex-direction: column; gap: 24px; }
.stats__left h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}
.stats__left p { color: var(--gray-500); line-height: 1.8; max-width: 440px; }

.stats__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--green-border);
  border: 1px solid var(--green-border);
  border-radius: var(--r-lg); overflow: hidden;
}
.stat-item {
  background: var(--white); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}
.stat__item__div{
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}
.stat-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-soft), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.stat-item:hover { background: var(--off-white); }
.stat-item:hover::after { opacity: 1; }
.stat-item__number {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 900;
  letter-spacing: -0.06em; color: var(--green-dark);
  line-height: 1;
}
.stat-item__suffix {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 900;
  color: var(--green); margin-top: -24px; margin-bottom: 4px;
}
.stat-item__label {
  font-size: 0.86rem; font-weight: 700;
  color: var(--ink); font-family: var(--font-heading);
}
.stat-item__desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-pad);
  background: var(--off-white);
  border-top: 1px solid var(--green-border);
}
.features__inner { max-width: 1280px; margin: 0 auto; }
.features__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.features__left { display: flex; flex-direction: column; gap: 48px; }
.feature-group { display: flex; flex-direction: column; gap: 28px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-item__icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--white); border: 1.5px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-sm);
  transition: all 0.28s;
}
.feature-item:hover .feature-item__icon {
  background: var(--green); border-color: var(--green);
  transform: rotate(-4deg) scale(1.05);
  box-shadow: var(--shadow-green);
}
.feature-item__icon i { font-size: 1.3rem; color: var(--green-dark); transition: color 0.28s; }
.feature-item:hover .feature-item__icon i { color: var(--black); }
.feature-item__body { display: flex; flex-direction: column; gap: 6px; }
.feature-item__body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.feature-item__body p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.65; }

.features__right { position: relative; display: flex; align-items: center; justify-content: center; }
.features__img-wrap { position: relative; width: 100%; }
.features__img-main {
  width: 100%; border-radius: var(--r-xl); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.features__notif {
  position: absolute;
  background: var(--white); border: 1.5px solid var(--green-border);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-green);
  display: flex; align-items: center; gap: 12px; max-width: 220px;
}
.features__notif i { color: var(--green-dark); font-size: 1.3rem; flex-shrink: 0; }
.features__notif--text p { font-size: 0.75rem; color: var(--gray-500); line-height: 1.4; }
.features__notif--text strong {
  font-size: 0.82rem; color: var(--ink); display: block;
  margin-bottom: 2px; font-family: var(--font-heading); font-weight: 700;
}
.notif-1 { bottom: 10%; left: -8%; }
.notif-2 { bottom: 28%; right: -8%; }
.notif-3 { top: 12%; right: -6%; }

/* ══════════════════════════════════════════════════════════
   REACH
══════════════════════════════════════════════════════════ */
.reach {
  padding: var(--section-pad);
  background: var(--white);
  border-top: 1px solid var(--green-border);
}
.reach__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.reach__img {
  width: 100%; border-radius: var(--r-lg); object-fit: cover;
  box-shadow: var(--shadow-lg); order: -1;
}
.reach__content { display: flex; flex-direction: column; gap: 24px; }
.reach__content h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}
.reach__content p { color: var(--gray-500); line-height: 1.8; }
.reach__btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.watch-link {
  font-size: 0.88rem; font-weight: 600; color: var(--gray-500);
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.watch-link i { font-size: 1.1rem; color: var(--green-dark); }
.watch-link:hover { color: var(--green-dark); }

/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad);
  background: var(--off-white);
  border-top: 1px solid var(--green-border);
}
.pricing__inner { max-width: 1280px; margin: 0 auto; }

.pricing__toggle {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 48px;
  justify-content: center;
}
.toggle-lbl {
  font-family: var(--font-heading); font-size: 0.88rem;
  font-weight: 600; color: var(--gray-500); transition: color 0.2s; cursor: pointer;
}
.toggle-lbl.on { color: var(--ink); }
.save-badge {
  background: var(--green-soft); border: 1px solid var(--green-border);
  color: var(--green-dark); font-size: 0.7rem; font-weight: 800;
  padding: 3px 10px; border-radius: var(--r-xxl); letter-spacing: 0.06em;
  font-family: var(--font-heading);
}
.toggle-sw { position: relative; width: 52px; height: 28px; cursor: pointer; flex-shrink: 0; }
.toggle-sw input { opacity: 0; position: absolute; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0; border-radius: 14px;
  background: var(--gray-100); border: 1.5px solid var(--green-border);
  transition: all 0.3s;
}
.toggle-thumb {
  position: absolute; top: 4px; left: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gray-300); transition: all 0.3s;
}
.toggle-sw input:checked ~ .toggle-track { background: var(--green-soft); border-color: var(--green); }
.toggle-sw input:checked ~ .toggle-thumb { left: 26px; background: var(--green); }

.pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--green-border);
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl); overflow: hidden;
}
.pricing-card {
  background: var(--white); padding: 36px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: background 0.2s;
}
.pricing-card:hover { background: var(--green-soft); }
.pricing-card.popular {
  background: var(--green-dark);
}
.pricing-card.popular:hover { background: var(--green-deep); }
.pricing-card.enterprise { background: var(--green-light); }
.pricing-card.enterprise:hover { background: var(--green-mid); }

.popular-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: var(--black);
  font-family: var(--font-heading); font-size: 0.7rem;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-xxl);
  margin-bottom: 20px; width: fit-content;
}
.plan-name {
  font-family: var(--font-heading); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 12px;
}
.pricing-card.popular .plan-name { color: rgba(255,255,255,0.6); }
.plan-price {
  font-family: var(--font-heading); font-size: 2.6rem; font-weight: 900;
  letter-spacing: -0.05em; color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.pricing-card.popular .plan-price { color: var(--white); }
.plan-price .curr { font-size: 0.95rem; font-weight: 600; opacity: 0.6; vertical-align: top; margin-top: 7px; display: inline-block; letter-spacing: 0; }
.plan-price .per  { font-size: 0.78rem; font-weight: 500; opacity: 0.5; letter-spacing: 0; }
.plan-savings {
  font-size: 0.75rem; color: var(--green-dark); font-weight: 600;
  min-height: 18px; margin-bottom: 16px; font-family: var(--font-heading);
}
.pricing-card.popular .plan-savings { color: #a8ffca; }
.plan-desc {
  font-size: 0.82rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 24px; min-height: 56px;
}
.pricing-card.popular .plan-desc { color: rgba(255,255,255,0.55); }
.plan-sep {
  height: 1px; background: var(--green-border); margin-bottom: 24px;
}
.pricing-card.popular .plan-sep { background: rgba(255,255,255,0.15); }
.plan-features {
  display: flex; flex-direction: column; gap: 10px;
  flex: 1; margin-bottom: 32px;
}
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--gray-700); line-height: 1.45;
}
.pricing-card.popular .plan-feature { color: rgba(255,255,255,0.8); }
.feat-ico {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feat-ico i { font-size: 0.65rem; color: var(--green-dark); }
.pricing-card.popular .feat-ico { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.pricing-card.popular .feat-ico i { color: #a8ffca; }
.plan-btn {
  width: 100%; padding: 13px; border-radius: var(--r-xxl);
  font-family: var(--font-heading); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.03em; text-align: center;
  border: none; cursor: pointer; transition: all 0.25s;
}
.plan-btn.outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--green-border);
}
.plan-btn.outline:hover { border-color: var(--green-dark); color: var(--green-dark); }
.plan-btn.solid {
  background: var(--green); color: var(--black);
}
.plan-btn.solid:hover {
  background: var(--white); color: var(--green-dark);
  box-shadow: var(--shadow-green);
}
.pricing__foot {
  margin-top: 40px; display: flex; align-items: center;
  justify-content: center; gap: 32px; flex-wrap: wrap;
}
.pricing__foot span {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-500);
  font-family: var(--font-heading);
}
.pricing__foot i { color: var(--green-dark); font-size: 0.95rem; }
.pricing__compare { display: flex; justify-content: center; margin-top: 28px; }

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
.reviews {
  padding: var(--section-pad);
  background: var(--ink);
  border-top: 1px solid rgba(31,188,81,0.1);
  position: relative; overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,188,81,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,188,81,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.reviews__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.reviews .section-heading h2 { color: var(--white); }
.reviews .section-heading p  { color: rgba(255,255,255,0.45); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(31,188,81,0.12);
  border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  transition: background 0.28s, border-color 0.28s, transform 0.28s;
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(31,188,81,0.3);
  transform: translateY(-4px);
}
.review-card.img-card {
  padding: 0; overflow: hidden; background: transparent; border: none;
}
.review-card.img-card img {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg);
}
.review-card.stat-card {
  background: rgba(31,188,81,0.08); border-color: rgba(31,188,81,0.2);
}
.review-stat-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 900;
  color: var(--green); letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px;
}
.review-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.review-quote {
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; font-style: italic; flex: 1;
}
.reviewer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.reviewer img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(31,188,81,0.3);
}
.reviewer__info h4 { font-size: 0.88rem; color: var(--white); font-weight: 700; }
.reviewer__info span {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 4px;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad);
  background: var(--white);
  border-top: 1px solid var(--green-border);
}
.faq__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.faq__left {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.faq__left h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
}
.faq__left p { color: var(--gray-500); line-height: 1.75; }

.faq-list {
  border: 1px solid var(--green-border);
  border-radius: var(--r-xl); overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--green-border);
  background: var(--white); transition: background 0.2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item.open { background: var(--green-soft); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 28px; cursor: pointer; user-select: none;
}
.faq-q-text {
  font-family: var(--font-heading); font-size: 0.9rem;
  font-weight: 600; color: var(--ink); line-height: 1.5; transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: var(--green-dark); }
.faq-ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--green-soft); border: 1.5px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dark); transition: all 0.3s;
}
.faq-item.open .faq-ico {
  background: var(--green); border-color: var(--green);
  color: var(--black); transform: rotate(45deg);
}
.faq-ico i { font-size: 0.85rem; }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-ans { max-height: 400px; }
.faq-ans-inner {
  padding: 0 28px 22px; border-top: 1px solid var(--green-border);
  padding-top: 16px; font-size: 0.88rem; color: var(--gray-500); line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 50px 18px;
  background: var(--green-light);
  border-top: 1px solid var(--green-border);
}
.cta-section__inner { max-width: 1280px; margin: 0 auto; }
.cta-box {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, #0f7a30 100%);
  border-radius: var(--r-xl); padding: 72px 64px;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-green-lg);
}
/* Animated dots background */
.cta-dots {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  padding: 24px; pointer-events: none;
}
.cta-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  margin: auto;
  animation: dotPulse 3s ease-in-out infinite;
}
.cta-dots span:nth-child(odd) { animation-delay: -1.5s; }
.cta-dots span:nth-child(3n) { animation-delay: -0.8s; }
@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 0.1; }
  50%      { transform: scale(1.8); opacity: 0.35; }
}
.cta-box::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-stars {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; z-index: 1;
}
.cta-stars__icons { display: flex; gap: 4px; }
.cta-stars__icons i { color: #ffd700; font-size: 1rem; }
.cta-stars span {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  font-family: var(--font-heading); font-weight: 600;
}
.cta-box h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 800;
  color: var(--white); max-width: 680px;
  letter-spacing: -0.03em; line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; position: relative; z-index: 1;
}
.cta-trustpilot {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  position: relative; z-index: 1; transition: color 0.2s;
}
.cta-trustpilot:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 2px solid var(--green-border);
  padding-top: 72px;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; gap: 56px;
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand img { height: auto; width: 100px; }
.footer__brand p { font-size: 0.88rem; color: var(--gray-500); max-width: 380px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--green-soft); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1rem; transition: all 0.2s;
}
.footer__social a:hover {
  background: var(--green); color: var(--black);
  border-color: var(--green); transform: translateY(-2px);
}
.footer__newsletter { display: flex; flex-direction: column; gap: 14px; }
.footer__newsletter h4 { font-size: 1rem; font-weight: 700; color: var(--ink); }
.footer__newsletter p { font-size: 0.82rem; color: var(--gray-500); }
.newsletter-form {
  display: flex; align-items: center;
  background: var(--green-soft); border: 1.5px solid var(--green-border);
  border-radius: var(--r-xxl); padding: 5px 5px 5px 18px; gap: 8px;
  transition: border-color 0.2s;
}
.newsletter-form:focus-within { border-color: var(--green); background: var(--white); }
.newsletter-form input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body); font-size: 0.85rem;
  color: var(--ink); background: transparent;
}
.newsletter-form input::placeholder { color: var(--gray-300); }
.newsletter-form button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1.1rem; transition: all 0.2s; flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--green-dark); color: var(--white); }

.footer__mid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 40px 0; border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--green-border);
}
.footer__col h5 {
  font-family: var(--font-heading); font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 16px;
}
.footer__col a {
  display: block; font-size: 0.85rem; color: var(--gray-500);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer__col a:hover { color: var(--green-dark); }
.footer__col p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px; line-height: 1.6; }
.footer__legal { display: flex; flex-direction: column; gap: 20px; padding-bottom: 40px; }
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer__legal-links a {
  font-size: 0.78rem; color: var(--gray-500); transition: color 0.2s;
}
.footer__legal-links a:hover { color: var(--green-dark); }
.footer__legal-text {
  font-size: 0.75rem; color: var(--gray-300); line-height: 1.7; max-width: 900px;
}
.footer__legal-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 0.78rem; color: var(--gray-500); font-family: var(--font-heading); }
.footer__stores { display: flex; gap: 10px; align-items: center; }
.footer__stores img { height: 30px; width: auto; }

/* ══════════════════════════════════════════════════════════
   PULSE ANIMATION FOR CHIP
══════════════════════════════════════════════════════════ */
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}
.btn-green { position: relative; overflow: hidden; }
.btn-green::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-green:hover::after { transform: translateX(100%); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__visuals     { grid-template-columns: 1fr 1fr; }
  .hero__col.right__column { display: none; }
  .stats__inner      { grid-template-columns: 1fr; gap: 48px; }
  .features__grid    { grid-template-columns: 1fr; gap: 48px; }
  .reach__inner      { grid-template-columns: 1fr; gap: 48px; }
  .reach__img        { order: 0; max-height: 360px; }
  .pricing__grid     { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid     { grid-template-columns: repeat(2, 1fr); }
  .faq__inner        { grid-template-columns: 1fr; gap: 40px; }
  .faq__left         { position: static; }
  .footer__top       { grid-template-columns: 1fr; gap: 40px; }
  .footer__mid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #mainHeader { padding: 0 20px; }
  .nav-links, .lang-trigger, .btn-download, .btn-started { display: none; }
  .hamburger { display: flex; }
  .mega-menu { padding: 24px 20px; }
}

@media (max-width: 768px) {

  :root { --section-pad: 64px 18px; }
  body  { padding-top: var(--header-h); }
  .hero__inner { padding: 48px 24px 0; }
  .hero__top h1 { font-size: 2.4rem; }
  .hero__visuals { grid-template-columns: 1fr; }
  .hero__col { display: none; }
  .center__column { display: flex; }
  .pricing__grid  { grid-template-columns: 1fr; }
  .reviews__grid  { grid-template-columns: 1fr; }
  .cta-box        { padding: 48px 28px; }
  .footer__inner  { padding: 0 24px; }
  .footer__mid    { grid-template-columns: 1fr 1fr; }
  .footer__legal-bottom { flex-direction: column; align-items: flex-start; }
  .notif-1, .notif-2, .notif-3 { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .footer__mid { grid-template-columns: 1fr 1fr; }
  .mega-inner  { grid-template-columns: 1fr; gap: 28px; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  #preloader, .cursor-dot, .cursor-ring { display: none; }
  .orb, .hero-grid-bg { display: none; }
}
