/* ============================================================
   SOVENTRA — style.css
   ============================================================ */

/* Variables & Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g-dark:   #0a1c10;
  --g-deep:   #162e1e;
  --g-mid:    #2a7248;
  --g-bright: #38b261;
  --g-light:  #66d486;
  --g-mint:   #a3e4bc;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--g-dark); color: #fff; overflow-x: hidden; line-height: 1.6; }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; height: 68px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
  background: rgba(10,28,16,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07); z-index: 200;
  transition: border-color 0.3s;
}
#main-nav.scrolled { border-bottom-color: rgba(255,255,255,0.12); }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; color: #fff; text-decoration: none; letter-spacing: -0.3px; }
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.58); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--g-mint); }

/* ── Dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.58);
  background: none; border: none; cursor: pointer; font-family: var(--font);
  padding: 0; transition: color 0.2s;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-expanded="true"] { color: var(--g-mint); }

.caret { transition: transform 0.22s; flex-shrink: 0; opacity: 0.6; }
.nav-dropdown-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); opacity: 1; }

/* Submenu — visibility controlled by JS, not CSS hover */
.nav-submenu {
  position: absolute;
  top: calc(100% + 16px); /* gap from toggle */
  left: 50%; transform: translateX(-50%);
  background: rgba(12,26,16,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 8px;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  z-index: 300;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Invisible hover bridge — fills the gap between toggle and submenu */
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -20px; left: -16px; right: -16px;
  height: 20px;
}

.nav-submenu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px;
  color: rgba(255,255,255,0.68); text-decoration: none; font-size: 13.5px;
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:hover { background: rgba(56,178,97,0.12); color: var(--g-mint); }
.submenu-icon { font-size: 17px; flex-shrink: 0; }
.submenu-title { font-weight: 600; font-size: 13px; line-height: 1.2; }
.submenu-sub { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* Breadcrumb nav (sub-pages) */
.nav-breadcrumb { display: flex; align-items: center; gap: 10px; }
.nav-back { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.nav-back:hover { color: var(--g-mint); }
.nav-sep { color: rgba(255,255,255,0.2); font-size: 18px; }
.nav-page-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.45); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switcher { display: flex; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 3px; gap: 2px; }
.lang-btn { padding: 5px 13px; border-radius: 24px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,0.4); transition: all 0.2s; font-family: var(--font); letter-spacing: 0.5px; }
.lang-btn.active { background: var(--g-mid); color: white; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,#38b261,#2a7248); color: white; font-size: 13px; font-weight: 600; padding: 9px 20px; border-radius: 30px; text-decoration: none; box-shadow: 0 4px 20px rgba(56,178,97,0.3); transition: transform 0.2s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,178,97,0.45); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  background: linear-gradient(145deg, #071210 0%, #0f2819 50%, #0a1f15 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero--sub { min-height: 80vh; }

.orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: drift 14s ease-in-out infinite alternate; }
.orb-1 { width: 550px; height: 550px; background: #2a7248; top: -150px; right: -100px; opacity: 0.25; }
.orb-2 { width: 380px; height: 380px; background: #2a7248; bottom: -80px; left: -80px; opacity: 0.22; animation-delay: -5s; }
.orb-3 { width: 260px; height: 260px; background: #66d486; top: 35%; left: 25%; opacity: 0.1; animation-delay: -9s; }
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(38px, 24px); } }

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(56,178,97,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(56,178,97,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 5; text-align: center; max-width: 840px; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(56,178,97,0.12); border: 1px solid rgba(56,178,97,0.3); padding: 9px 20px; border-radius: 30px; font-size: 13px; font-weight: 500; color: var(--g-mint); margin-bottom: 36px; backdrop-filter: blur(8px); }

.hero-title { font-size: clamp(38px, 6.5vw, 78px); font-weight: 900; line-height: 1.02; letter-spacing: -3px; margin-bottom: 8px; }
.hero-title .accent { background: linear-gradient(135deg, #66d486, #38b261, #a3e4bc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .line3 { color: rgba(255,255,255,0.32); font-size: 0.7em; letter-spacing: -1px; }

.hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 50px; }
.hero-sub strong { color: var(--g-mint); font-weight: 500; }

.hero-stats { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.stat-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); padding: 16px 24px; border-radius: 18px; text-align: center; min-width: 120px; transition: transform 0.3s, background 0.3s; }
.stat-pill:hover { transform: translateY(-4px); background: rgba(56,178,97,0.08); border-color: rgba(56,178,97,0.3); }
.stat-pill .number { font-size: 34px; font-weight: 900; color: var(--g-light); letter-spacing: -1px; line-height: 1; }
.stat-pill .label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 5px; }

.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#38b261,#2a7248); color: white; font-size: 15px; font-weight: 600; padding: 17px 42px; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 40px rgba(56,178,97,0.42); transition: transform 0.2s, box-shadow 0.2s; }
.hero-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(56,178,97,0.55); }

.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 10px; color: rgba(255,255,255,0.22); letter-spacing: 2px; text-transform: uppercase; animation: scrollBounce 2.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Sub-page hero elements */
.platform-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.platform-from { color: rgba(255,255,255,0.55); }
.badge-arrow { color: rgba(255,255,255,0.3); font-size: 18px; }
.platform-to { color: var(--g-mint); font-weight: 700; }
.badge-via { font-size: 11px; background: rgba(56,178,97,0.15); border: 1px solid rgba(56,178,97,0.25); color: var(--g-light); padding: 3px 10px; border-radius: 20px; }
.broadcom-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #fbbf24; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.hero-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); padding: 14px 22px; border-radius: 16px; text-align: center; min-width: 110px; }
.pill .num { font-size: 30px; font-weight: 800; color: var(--g-light); letter-spacing: -1px; line-height: 1; }
.pill .lbl { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 5px; }

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 100px 24px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--g-light); margin-bottom: 16px; }
.section-title { font-size: clamp(26px, 3.5vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 18px; }
.section-sub { font-size: 16px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.65; max-width: 540px; }

/* ============================================================
   GUARANTEE STRIP
   ============================================================ */
.guarantee-strip { background: linear-gradient(135deg,#1a3d24,#0f2819); border-top: 1px solid rgba(56,178,97,0.2); border-bottom: 1px solid rgba(56,178,97,0.2); padding: 20px 48px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.gs-item { display: flex; align-items: center; gap: 12px; }
.gs-check { width: 26px; height: 26px; background: linear-gradient(135deg,#38b261,#2a7248); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 14px rgba(56,178,97,0.4); }
.gs-check svg { width: 13px; height: 13px; }
.gs-text { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.88); }
.gs-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.1); }

/* ============================================================
   USP PILLARS
   ============================================================ */
.usp-section { background: linear-gradient(180deg,#071210,#0f2819); padding: 110px 24px; }
.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.usp-card { border-radius: 28px; padding: 44px 36px; position: relative; overflow: hidden; transition: transform 0.3s; }
.usp-card:hover { transform: translateY(-8px); }
.usp-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 28px 28px 0 0; }
.usp-card.sovereign { background: linear-gradient(145deg,rgba(56,178,97,0.1),rgba(22,46,30,0.8)); border: 1px solid rgba(56,178,97,0.3); }
.usp-card.sovereign::after { background: linear-gradient(90deg,#38b261,#66d486); }
.usp-card.automated { background: linear-gradient(145deg,rgba(59,130,246,0.08),rgba(10,28,16,0.9)); border: 1px solid rgba(59,130,246,0.2); }
.usp-card.automated::after { background: linear-gradient(90deg,#3b82f6,#93c5fd); }
.usp-card.cheaper { background: linear-gradient(145deg,rgba(245,158,11,0.08),rgba(10,28,16,0.9)); border: 1px solid rgba(245,158,11,0.2); }
.usp-card.cheaper::after { background: linear-gradient(90deg,#f59e0b,#fbbf24); }
.usp-bignum { font-size: 72px; font-weight: 900; line-height: 1; letter-spacing: -4px; margin-bottom: 8px; opacity: 0.12; }
.sovereign .usp-bignum { color: #66d486; }
.automated .usp-bignum { color: #93c5fd; }
.cheaper   .usp-bignum { color: #fbbf24; }
.usp-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.usp-title { font-size: clamp(18px,2vw,23px); font-weight: 800; letter-spacing: -0.4px; line-height: 1.1; margin-bottom: 14px; }
.sovereign .usp-title { color: #a3e4bc; }
.automated .usp-title { color: #bfdbfe; }
.cheaper   .usp-title { color: #fde68a; }
.usp-body { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.usp-bullets { display: flex; flex-direction: column; gap: 9px; }
.usp-bullet { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72); }
.usp-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sovereign .usp-dot { background: #66d486; }
.automated .usp-dot { background: #93c5fd; }
.cheaper   .usp-dot { background: #fbbf24; }

.guarantee-block { margin-top: 48px; background: linear-gradient(135deg,rgba(56,178,97,0.09),rgba(42,114,72,0.04)); border: 1px solid rgba(56,178,97,0.32); border-radius: 22px; padding: 36px 44px; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; }
.gb-shield { width: 72px; height: 72px; background: linear-gradient(145deg,#2a7248,#162e1e); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; box-shadow: 0 0 36px rgba(56,178,97,0.25); flex-shrink: 0; }
.gb-title { font-size: 19px; font-weight: 800; letter-spacing: -0.4px; color: var(--g-mint); margin-bottom: 8px; }
.gb-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.gb-text strong { color: #fff; }
.gb-cta { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#38b261,#2a7248); color: #fff; font-size: 13.5px; font-weight: 700; padding: 14px 26px; border-radius: 50px; text-decoration: none; white-space: nowrap; box-shadow: 0 6px 28px rgba(56,178,97,0.4); transition: transform 0.2s; flex-shrink: 0; border: none; cursor: pointer; font-family: var(--font); }
.gb-cta:hover { transform: translateY(-3px); }

/* ============================================================
   COMPLIANCE
   ============================================================ */
.comp-section { background: #0a1c10; padding: 110px 24px; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; margin-bottom: 22px; }
.comp-card { border-radius: 22px; padding: 34px; }
.comp-card.cloud-act { background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.18); }
.comp-card.dora { background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.18); }
.comp-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.cloud-act .comp-badge { background: rgba(245,158,11,0.14); color: #fbbf24; border: 1px solid rgba(245,158,11,0.28); }
.dora .comp-badge { background: rgba(59,130,246,0.14); color: #93c5fd; border: 1px solid rgba(59,130,246,0.28); }
.comp-card-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.comp-card-desc { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 18px; }
.comp-risk { display: flex; gap: 10px; align-items: flex-start; background: rgba(0,0,0,0.2); border-radius: 10px; padding: 12px 14px; font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.cloud-act .comp-risk { border-left: 3px solid rgba(245,158,11,0.5); }
.dora .comp-risk { border-left: 3px solid rgba(59,130,246,0.5); }
.comp-solution { background: linear-gradient(135deg,rgba(56,178,97,0.1),rgba(42,114,72,0.06)); border: 1px solid rgba(56,178,97,0.28); border-radius: 18px; padding: 26px 32px; display: flex; align-items: center; gap: 18px; }
.comp-solution-icon { width: 48px; height: 48px; background: linear-gradient(135deg,#2a7248,#1a4a2e); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.comp-solution-text { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.comp-solution-text strong { color: var(--g-mint); }

/* ============================================================
   COMPARE
   ============================================================ */
.compare-section { background: linear-gradient(180deg,#0a1c10,#0f2819); padding: 110px 24px; }
.compare-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.compare-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 32px 28px; position: relative; overflow: hidden; transition: transform 0.3s; }
.compare-card:hover { transform: translateY(-6px); }
.compare-card.featured { background: linear-gradient(145deg,rgba(56,178,97,0.12),rgba(42,114,72,0.06)); border-color: rgba(56,178,97,0.4); }
.compare-card.featured::before { content: attr(data-ribbon); position: absolute; top: 18px; right: -30px; background: linear-gradient(135deg,#38b261,#2a7248); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; padding: 5px 44px; transform: rotate(35deg); }
.provider-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.provider-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 21px; }
.provider-name { font-size: 16px; font-weight: 700; }
.provider-tag { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.price-amount { font-size: 40px; font-weight: 900; letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.price-amount .currency { font-size: 20px; font-weight: 600; vertical-align: super; }
.price-amount .period { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.38); }
.price-note { font-size: 11.5px; color: rgba(255,255,255,0.32); margin-bottom: 20px; }
.compare-items { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.compare-items li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; }
.compare-items li .icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.compare-items li.positive { color: rgba(255,255,255,0.85); }
.compare-items li.negative { color: rgba(255,255,255,0.32); }
.compare-items li.positive .icon { color: #66d486; }
.compare-items li.negative .icon { color: #e8693b; }
.savings-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(56,178,97,0.16); border: 1px solid rgba(56,178,97,0.33); color: var(--g-light); font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 18px; margin-top: 20px; }

/* ============================================================
   PROBLEMS (sub-pages)
   ============================================================ */
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.prob-card { background: rgba(232,105,59,0.05); border: 1px solid rgba(232,105,59,0.14); border-radius: 18px; padding: 28px 24px; transition: transform 0.25s; }
.prob-card:hover { transform: translateY(-5px); }
.prob-icon { font-size: 28px; margin-bottom: 14px; }
.prob-title { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
.prob-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.prob-pill { display: inline-flex; margin-top: 12px; background: rgba(232,105,59,0.1); border: 1px solid rgba(232,105,59,0.2); color: #fca5a5; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 10px; }

/* ============================================================
   MAPPING TABLE (sub-pages)
   ============================================================ */
.mapping-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; overflow: hidden; margin-top: 48px; }
.map-header { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; padding: 14px 26px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.map-header span:last-child { text-align: right; color: var(--g-light); }
.map-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; padding: 12px 26px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; align-items: center; }
.map-row:last-child { border-bottom: none; }
.map-row:hover { background: rgba(56,178,97,0.04); }
.map-from { font-size: 12.5px; color: rgba(255,255,255,0.5); font-family: monospace; }
.map-arr { color: var(--g-mid); font-size: 13px; text-align: center; }
.map-to { font-size: 12.5px; color: var(--g-mint); font-weight: 500; text-align: right; font-family: monospace; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-section { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 110px 24px; }
.steps-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.steps-track::before { content: ''; position: absolute; top: 32px; left: 48px; right: 48px; height: 2px; background: linear-gradient(90deg,#38b261,#66d486,#38b261); opacity: 0.22; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; background: linear-gradient(145deg,#2a7248,#162e1e); border: 2px solid rgba(56,178,97,0.38); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--g-light); margin-bottom: 20px; box-shadow: 0 0 28px rgba(56,178,97,0.18); }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.step-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.step-time { margin-top: 12px; font-size: 11px; font-weight: 600; color: var(--g-light); background: rgba(56,178,97,0.1); padding: 4px 12px; border-radius: 20px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: 110px 24px 90px; text-align: center; position: relative; background: #0a1c10; }
.cta-glow { position: absolute; width: 650px; height: 650px; background: radial-gradient(circle,rgba(56,178,97,0.12) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-inner { position: relative; z-index: 5; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(32px,5vw,60px); font-weight: 900; letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px; }
.cta-accent { background: linear-gradient(135deg,#66d486,#38b261,#a3e4bc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.44); margin-bottom: 48px; font-weight: 300; line-height: 1.65; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#38b261,#2a7248); color: #fff; font-size: 15px; font-weight: 600; padding: 16px 36px; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 38px rgba(56,178,97,0.42); transition: transform 0.2s, box-shadow 0.2s; font-family: var(--font); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(56,178,97,0.52); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #fff; font-size: 15px; font-weight: 500; padding: 16px 36px; border-radius: 50px; text-decoration: none; transition: background 0.2s, transform 0.2s; font-family: var(--font); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.cta-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.38); }
.trust-item svg { color: var(--g-light); flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(255,255,255,0.28); background: #071210; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 22px; }
footer a { color: rgba(255,255,255,0.34); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--g-mint); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   FEATURES — ALLES BLIJFT WERKEN
   ============================================================ */
.features-section { background: linear-gradient(180deg,#0f2819,#0a1c10); padding: 110px 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 16px; margin-top: 56px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; padding: 24px 20px; display: flex; flex-direction: column; gap: 12px; transition: transform 0.25s, background 0.25s, border-color 0.25s; position: relative; overflow: hidden; }
.feature-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(56,178,97,0.08), transparent); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.feature-card:hover { transform: translateY(-5px); background: rgba(56,178,97,0.07); border-color: rgba(56,178,97,0.3); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { width: 44px; height: 44px; background: rgba(56,178,97,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-check { position: absolute; top: 16px; right: 16px; width: 22px; height: 22px; background: linear-gradient(135deg,#38b261,#2a7248); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-check svg { width: 12px; height: 12px; }
.feature-title { font-size: 14px; font-weight: 700; line-height: 1.3; }
.feature-desc { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.55; }

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.sustain-bg { background: linear-gradient(180deg,#0a1c10,#0f2819); padding: 110px 24px; }
.sustain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 12px; }
.sustain-stat { display: flex; align-items: center; gap: 18px; background: linear-gradient(135deg, rgba(56,178,97,0.1), rgba(42,114,72,0.04)); border: 1px solid rgba(56,178,97,0.28); border-radius: 18px; padding: 18px 22px; margin: 28px 0 32px; }
.ss-num { font-size: 38px; font-weight: 900; color: var(--g-light); letter-spacing: -1.5px; flex-shrink: 0; line-height: 1; }
.ss-title { font-size: 14.5px; font-weight: 700; color: var(--g-mint); margin-bottom: 4px; }
.ss-desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.sustain-visual { position: relative; height: 360px; display: flex; align-items: center; justify-content: center; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(56,178,97,0.2); animation: expandRing 4s ease-in-out infinite; }
.ring-1 { width: 140px; height: 140px; }
.ring-2 { width: 220px; height: 220px; animation-delay: 0.8s; border-color: rgba(56,178,97,0.14); }
.ring-3 { width: 300px; height: 300px; animation-delay: 1.6s; border-color: rgba(56,178,97,0.08); }
.ring-4 { width: 380px; height: 380px; animation-delay: 2.4s; border-color: rgba(56,178,97,0.04); }
@keyframes expandRing { 0%,100% { transform: scale(0.95); opacity: 0.4; } 50% { transform: scale(1.02); opacity: 1; } }

.orbit-dot { position: absolute; width: 12px; height: 12px; background: var(--g-light); border-radius: 50%; box-shadow: 0 0 12px var(--g-light); animation: orbit 8s linear infinite; }
.orbit-dot:nth-child(6) { animation: orbit2 12s linear infinite -3s; background: var(--g-mint); }
.orbit-dot:nth-child(7) { animation: orbit3 16s linear infinite -7s; background: var(--g-bright); }
@keyframes orbit  { from { transform: rotate(0deg) translateX(60px) rotate(0deg); } to { transform: rotate(360deg) translateX(60px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(0deg) translateX(110px) rotate(0deg); } to { transform: rotate(360deg) translateX(110px) rotate(-360deg); } }
@keyframes orbit3 { from { transform: rotate(0deg) translateX(150px) rotate(0deg); } to { transform: rotate(360deg) translateX(150px) rotate(-360deg); } }

.sustain-center { position: relative; z-index: 5; width: 110px; height: 110px; background: linear-gradient(145deg,#2a7248,#162e1e); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px rgba(56,178,97,0.3); font-size: 46px; }

.sustain-points { display: flex; flex-direction: column; gap: 24px; }
.sustain-point { display: flex; gap: 18px; align-items: flex-start; }
.sp-icon { width: 52px; height: 52px; flex-shrink: 0; background: rgba(56,178,97,0.1); border: 1px solid rgba(56,178,97,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.sp-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sp-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ============================================================
   MODAL / CONTACT FORM
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(5,15,9,0.82); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

.modal-card {
  background: linear-gradient(145deg,#0f2819,#162e1e);
  border: 1px solid rgba(56,178,97,0.28); border-radius: 28px; padding: 48px;
  max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  transform: translateY(16px); transition: transform 0.25s;
}
.modal-overlay.open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; font-family: var(--font);
}
.modal-close:hover { background: rgba(255,255,255,0.13); color: #fff; }

.modal-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 36px; }
.modal-shield { width: 54px; height: 54px; background: linear-gradient(145deg,#2a7248,#162e1e); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 0 28px rgba(56,178,97,0.25); flex-shrink: 0; }
.modal-title { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; color: var(--g-mint); margin-bottom: 6px; }
.modal-sub { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.55; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.3px; }
.form-opt { font-weight: 400; color: rgba(255,255,255,0.3); }
.form-input {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px 16px;
  color: #fff; font-size: 14px; font-family: var(--font);
  transition: border-color 0.2s, background 0.2s; outline: none; width: 100%;
}
.form-input:focus { border-color: rgba(56,178,97,0.5); background: rgba(56,178,97,0.04); }
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-select option { background: #162e1e; }
.form-textarea { resize: vertical; min-height: 80px; }

.savings-preview { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.savings-preview.visible { max-height: 140px; }
.savings-preview-inner { background: rgba(56,178,97,0.08); border: 1px solid rgba(56,178,97,0.22); border-radius: 12px; padding: 14px 18px; margin-top: 10px; }
.sp-row { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.65); margin-bottom: 5px; }
.sp-row strong { color: var(--g-light); font-weight: 700; }
.sp-note { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 6px; }

.file-upload { position: relative; border: 1.5px dashed rgba(56,178,97,0.3); border-radius: 14px; background: rgba(56,178,97,0.03); transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.file-upload:hover, .file-upload.drag { border-color: rgba(56,178,97,0.6); background: rgba(56,178,97,0.07); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 20px; color: rgba(255,255,255,0.35); font-size: 13px; text-align: center; pointer-events: none; }
.file-placeholder svg { opacity: 0.5; }
.file-types { font-size: 11px; color: rgba(255,255,255,0.2); }
.file-chosen { display: none; align-items: center; gap: 10px; padding: 14px 18px; font-size: 13.5px; color: var(--g-mint); }
.file-chosen.visible { display: flex; }
.file-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 20px; line-height: 1; padding: 0 4px; font-family: var(--font); transition: color 0.2s; }
.file-remove:hover { color: #fca5a5; }

.form-error { font-size: 13px; color: #fca5a5; margin-bottom: 12px; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg,#38b261,#2a7248); color: #fff;
  font-size: 15px; font-weight: 700; padding: 16px 32px;
  border-radius: 50px; border: none; cursor: pointer; font-family: var(--font);
  box-shadow: 0 8px 32px rgba(56,178,97,0.38); transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 18px;
}
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(56,178,97,0.5); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-trust { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; }
.ft-dot { color: rgba(255,255,255,0.15); }

.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.visible { display: block; }
.success-icon { width: 72px; height: 72px; background: linear-gradient(135deg,#38b261,#2a7248); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 24px; box-shadow: 0 0 40px rgba(56,178,97,0.4); }
.success-title { font-size: 22px; font-weight: 800; color: var(--g-mint); margin-bottom: 12px; }
.success-text { font-size: 14.5px; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 420px; margin: 0 auto; }

@media (max-width: 920px) {
  #main-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .usp-grid, .compare-grid, .comp-grid, .problems-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; gap: 40px; }
  .sustain-visual { height: 280px; }
  .ring-4 { display: none; }
  .guarantee-block { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .gb-shield, .gb-cta { margin: 0 auto; }
  .steps-track { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps-track::before { display: none; }
  footer { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .guarantee-strip { padding: 16px 24px; gap: 20px; }
  .gs-sep { display: none; }
}
@media (max-width: 600px) {
  .hero-title { letter-spacing: -2px; }
  .steps-track { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-stats, .hero-pills { gap: 10px; }
  .modal-card { padding: 28px 20px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
}
