/* ===== BATERIJOS24.LT — bendri stiliai ===== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sun: #E8A020;
  --sun-light: #FFF3DC;
  --dark: #0F1A0F;
  --green: #1A3A1A;
  --green-mid: #2D5A2D;
  --green-light: #E8F5E8;
  --text: #0F1A0F;
  --muted: #5A6B5A;
  --white: #FAFDF8;
  --border: rgba(15,26,15,0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
  padding-top: 48px;
}
::selection { background: var(--sun); color: #3A2000; }
:focus-visible { outline: 2px solid var(--sun); outline-offset: 3px; border-radius: 4px; }

/* ===== NAV ===== */
nav.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(26,90,45,0.55) 0%, rgba(45,108,55,0.45) 100%);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}
.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.03em; color: #ffffff; text-decoration: none; display: inline-flex; align-items: center; }
.logo span { color: var(--sun); }
nav.site-nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
nav.site-nav ul a { text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.82); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.15s; position: relative; padding: 0.3rem 0; }
nav.site-nav ul a:not(.nav-cta):hover { color: #ffffff; }
nav.site-nav ul a.active:not(.nav-cta) { color: #ffffff; }
nav.site-nav ul a.active:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--sun); border-radius: 100px;
}
.nav-cta {
  background: linear-gradient(180deg, #3FA854 0%, #1F7A3A 100%);
  color: #ffffff !important;
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-size: 0.82rem !important; letter-spacing: 0.04em !important;
  font-weight: 700 !important;
  border: 1px solid rgba(31,122,58,0.5);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow:
    0 2px 4px rgba(31,122,58,0.25),
    0 6px 18px rgba(63,168,84,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.nav-cta:hover {
  background: linear-gradient(180deg, #5BC76D 0%, #2D8A45 100%);
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 4px 8px rgba(31,122,58,0.3),
    0 12px 28px rgba(63,168,84,0.45),
    inset 0 1px 0 rgba(255,255,255,0.32);
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow:
    0 1px 3px rgba(31,122,58,0.25),
    inset 0 2px 4px rgba(0,0,0,0.18);
}
.nav-phone {
  display: inline-flex !important; align-items: center; gap: 0.4rem;
  color: #ffffff !important; font-weight: 700 !important;
  text-transform: none !important; letter-spacing: 0 !important;
  font-size: 0.85rem !important;
  padding: 0.4rem 0.8rem !important;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-phone svg { width: 14px; height: 14px; color: var(--sun); }
.nav-phone:hover { background: rgba(255,255,255,0.10); border-color: var(--sun); }
.nav-phone:hover::after { content: none; }

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #ffffff; margin: 4px 0; transition: transform 0.2s; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { text-wrap: balance; }
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
h1 em { font-style: normal; color: var(--sun); position: relative; display: inline-block; }
h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.18em;
  background: var(--sun); opacity: 0.18; border-radius: 4px; z-index: -1;
}
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  line-height: 1.15;
  color: var(--dark);
}
h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.005em; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--green); color: var(--white); border: none;
  padding: 0.95rem 2.1rem; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.005em; cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 14px rgba(26,58,26,0.18);
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(26,58,26,0.28); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(26,58,26,0.18); }
.btn-ghost {
  background: transparent; color: var(--green); border: 1.5px solid var(--green);
  padding: 0.9rem 2rem; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.005em; cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-sun {
  background: var(--sun); color: #3A2000; border: none;
  padding: 0.9rem 1.8rem; border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 0.93rem; font-weight: 600;
  letter-spacing: -0.005em; cursor: pointer; width: 100%;
  text-align: center; text-decoration: none; display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: 0 4px 14px rgba(232,160,32,0.32);
}
.btn-sun--inline { width: auto; display: inline-block; padding: 0.9rem 2.5rem; }
.btn-sun:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(232,160,32,0.42); filter: brightness(1.04); }
.btn-sun:active { transform: translateY(0); }

/* ===== HERO ===== */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden; }
.hero-left {
  padding: 5rem 3rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
  position: relative;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 0%, rgba(232,160,32,0.06), transparent 45%),
                    radial-gradient(circle at 90% 100%, rgba(26,58,26,0.04), transparent 50%);
  pointer-events: none;
}
.hero-left > * { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sun-light); color: #7A4A00;
  font-size: 0.76rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 100px;
  margin-bottom: 1.8rem; width: fit-content;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(232,160,32,0.2);
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--sun); }
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--muted); max-width: 460px;
  margin-bottom: 2.5rem; line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.2rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700; color: var(--green);
  letter-spacing: -0.01em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

.hero-right { background: transparent; display: flex; align-items: center; justify-content: center; padding: 2rem 3rem; position: relative; overflow: hidden; }
.sun-graphic { display: none; }
.sun-graphic-2 { display: none; }
/* ===== ENERGIJOS SRAUTAS (premium live dashboard) ===== */
.energy-flow {
  background: linear-gradient(165deg, rgba(15,35,18,0.96) 0%, rgba(26,58,26,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    0 24px 60px rgba(15,26,15,0.25),
    0 8px 20px rgba(15,26,15,0.15),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transform: scale(1.25);
  transform-origin: center;
}
@media (max-width: 720px) {
  .energy-flow { transform: none; }
}
.energy-flow::before {
  content: ''; position: absolute; inset: 0; border-radius: 22px;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255,201,96,0.25), rgba(255,255,255,0.04) 30%, transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.ef-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.4rem; gap: 1rem;
}
.ef-header h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0; letter-spacing: -0.015em; line-height: 1.2; }
.ef-subtitle { color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 3px; font-weight: 400; letter-spacing: 0.01em; }
.ef-status {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(126,217,138,0.10);
  border: 1px solid rgba(126,217,138,0.25);
  padding: 0.3rem 0.65rem; border-radius: 100px;
  font-size: 0.66rem; color: #9FE5A8;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  flex-shrink: 0;
}
.ef-status .ef-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #7ED98A;
  box-shadow: 0 0 10px #7ED98A;
  animation: ef-pulse 1.8s ease-in-out infinite;
}
@keyframes ef-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.4); }
}

.ef-diagram {
  margin: 0.2rem -0.3rem 0.6rem;
  padding: 0.2rem;
  position: relative;
}
.ef-svg { width: 100%; height: auto; display: block; }

/* Sun — body static, only rays rotate around sun's own center */
.ef-sun-rays {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: ef-rays-rotate 22s linear infinite;
}
@keyframes ef-rays-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Trees swaying gently in the wind */
.ef-canopy {
  transform-box: fill-box;
  transform-origin: 50% 95%;
}
.ef-canopy-1 { animation: ef-tree-sway 5.5s ease-in-out infinite; }
.ef-canopy-2 { animation: ef-tree-sway 4.6s ease-in-out infinite 0.9s; }
@keyframes ef-tree-sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Beam shimmer */
.ef-beam line { animation: ef-beam-shimmer 1.4s linear infinite; }
@keyframes ef-beam-shimmer {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -12; }
}

/* Inverter LEDs */
.ef-led-1 { animation: ef-led-blink 1.5s ease-in-out infinite; }
.ef-led-2 { animation: ef-led-blink 1.5s ease-in-out infinite 0.5s; }
@keyframes ef-led-blink {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* Battery breathing glow */
.ef-bat-glow { animation: ef-bat-pulse 2.5s ease-in-out infinite; transform-origin: center; }
@keyframes ef-bat-pulse {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 1; }
}

/* House window flicker */
.ef-window { animation: ef-window-flicker 4s ease-in-out infinite; }
@keyframes ef-window-flicker {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ef-sun-rays, .ef-beam line, .ef-canopy-1, .ef-canopy-2,
  .ef-led-1, .ef-led-2, .ef-bat-glow, .ef-window,
  .ef-status .ef-dot { animation: none !important; }
}

/* ===== Metric cards (compact 4-column row) ===== */
.ef-metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}
.ef-metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 0.45rem 0.5rem;
  transition: border-color 0.25s ease, background 0.25s ease;
  text-align: center;
}
.ef-metric-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,201,96,0.35);
}
.ef-metric-card--good { border-color: rgba(126,217,138,0.35); background: rgba(126,217,138,0.08); }
.ef-metric-card--good:hover { border-color: rgba(126,217,138,0.55); }
.ef-metric-card-lbl {
  color: rgba(255,255,255,0.65);
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ef-metric-card-val {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.ef-metric-card-val em {
  font-style: normal;
  font-size: 0.62rem; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
}
.ef-metric-card--good .ef-metric-card-val { color: #9FE5A8; }
.ef-metric-card--good .ef-metric-card-val em { color: rgba(159,229,168,0.7); }

/* ===== SECTION ===== */
.section { padding: 5.5rem 3rem; max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--sun);
  font-weight: 700; margin-bottom: 0.9rem;
}
.section-label::before {
  content: ''; width: 22px; height: 2px;
  background: var(--sun); border-radius: 100px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 3rem; max-width: 520px; }

/* ===== SKAIČIUOKLĖ ===== */
.calc-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  background: linear-gradient(160deg, #F0F8EE 0%, #E4F2E2 100%);
  border: 1px solid rgba(26,58,26,0.08);
  border-radius: 24px; padding: 2.5rem;
}
.calc-group { margin-bottom: 1.6rem; }
.calc-group label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.55rem; }
.calc-group input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 100px;
  background: rgba(26,58,26,0.15);
  outline: none; cursor: pointer;
}
.calc-group input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(15,42,15,0.25); cursor: grab;
  transition: transform 0.15s ease;
}
.calc-group input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-group input[type=range]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.calc-group input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(15,42,15,0.25); cursor: grab;
}
.range-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.55rem; }
.range-min { font-size: 0.74rem; color: var(--muted); font-weight: 500; }
.range-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.calc-select { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text); outline: none; cursor: pointer; transition: border-color 0.15s; }
.calc-select:focus { border-color: var(--green); }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.calc-half label { font-size: 0.72rem; }

/* TOGGLE switch */
.toggle { display: flex; align-items: center; gap: 0.85rem; cursor: pointer; padding: 0.85rem 1rem; background: #fff; border: 1.5px solid var(--border); border-radius: 12px; transition: border-color 0.15s, background 0.15s; user-select: none; }
.toggle:hover { border-color: var(--green-mid); }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-track { position: relative; width: 38px; height: 22px; background: rgba(15,26,15,0.18); border-radius: 100px; flex-shrink: 0; transition: background 0.2s; }
.toggle-thumb { position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.2); transition: transform 0.2s; }
.toggle input:checked ~ .toggle-track { background: var(--sun); }
.toggle input:checked ~ .toggle-track .toggle-thumb { transform: translateX(16px); }
.toggle-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; min-width: 0; }
.toggle-title { font-size: 0.92rem; font-weight: 600; color: var(--dark); }
.toggle-sub { font-size: 0.75rem; color: var(--muted); }

/* RESULT */
.calc-result {
  display: flex; flex-direction: column;
  justify-content: flex-start; align-items: center;
  background: linear-gradient(165deg, #1A3A1A 0%, #0F2A0F 100%);
  border-radius: 18px; padding: 2rem 1.8rem; text-align: center;
  box-shadow: 0 12px 40px rgba(15,42,15,0.18);
  position: relative; overflow: hidden;
}
.calc-result::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.15), transparent 70%);
  pointer-events: none;
}
.calc-result > * { position: relative; z-index: 1; }
.result-label { color: rgba(255,255,255,0.82); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; font-weight: 600; }
.result-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--sun);
  line-height: 1; margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(232,160,32,0.25);
}
.result-unit { color: rgba(255,255,255,0.70); font-size: 0.85rem; margin-bottom: 1.5rem; font-weight: 500; }

/* CHART */
.calc-chart { width: 100%; margin-bottom: 1.5rem; }
.chart-title { color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; text-align: left; font-weight: 500; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; padding: 6px 0; }
.chart-bar { flex: 1; background: linear-gradient(to top, var(--sun), #FFB840); border-radius: 3px 3px 0 0; min-height: 2px; position: relative; transition: height 0.4s ease; }
.chart-bar::after { content: attr(data-val); position: absolute; bottom: calc(100% + 2px); left: 50%; transform: translateX(-50%); font-size: 0.6rem; color: rgba(255,255,255,0.6); opacity: 0; transition: opacity 0.15s; pointer-events: none; white-space: nowrap; font-family: 'Space Grotesk', sans-serif; }
.chart-bar:hover::after { opacity: 1; }
.chart-labels { display: flex; gap: 4px; margin-top: 6px; }
.chart-labels span { flex: 1; text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.02em; }

/* STATS row */
.result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; width: 100%; padding: 0; margin: 0.3rem 0 1.1rem; }
.rs-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: #ffffff; border: 1px solid rgba(255,255,255,0.4); border-radius: 12px; padding: 0.9rem 0.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.rs-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--green); line-height: 1.05; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.rs-unit { font-size: 0.72rem; color: var(--green-mid); margin-left: 3px; font-weight: 600; }
.rs-lbl { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-top: 0.3rem; text-align: center; word-break: break-word; line-height: 1.25; }

.result-breakdown { width: 100%; padding-top: 0.4rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.rb-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.85rem; }
.rb-label { color: rgba(255,255,255,0.82); font-size: 0.86rem; font-weight: 500; line-height: 1.35; text-align: left; }
.rb-val { color: #fff; font-size: 0.92rem; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* 25-YEAR HIGHLIGHT */
.result-25y { width: 100%; background: linear-gradient(135deg, rgba(232,160,32,0.15), rgba(232,160,32,0.07)); border: 1px solid rgba(232,160,32,0.36); border-radius: 14px; padding: 0.95rem 1.1rem; margin-bottom: 1.2rem; }
.r25-label { color: rgba(255,255,255,0.82); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; font-weight: 600; }
.r25-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--sun); line-height: 1.1; font-variant-numeric: tabular-nums; letter-spacing: -0.015em; }

/* ===== FEATURED PRODUCTS (home) ===== */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.featured-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ===== ARTICLES SECTION ===== */
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,26,15,0.10);
  border-color: rgba(26,58,26,0.18);
}
.article-cover {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.article-cover-icon {
  font-size: 3.2rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
}
.article-card:hover .article-cover-icon { transform: scale(1.08) rotate(-3deg); }
.article-cover-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 11px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.article-cover--sun { background: linear-gradient(135deg, #FFF3DC 0%, #FFE08A 100%); }
.article-cover--green { background: linear-gradient(135deg, #E8F5E8 0%, #B8DCBA 100%); }
.article-cover--dark { background: linear-gradient(135deg, #2D5A2D 0%, #1A3A1A 100%); }
.article-cover--dark .article-cover-icon { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)) brightness(1.15); }
.article-cover--dark .article-cover-badge { background: rgba(232,160,32,0.95); color: #3A2000; }

.article-body {
  padding: 1.3rem 1.4rem 1.2rem;
  display: flex; flex-direction: column; flex: 1;
  gap: 0.65rem;
}
.article-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  line-height: 1.3; color: var(--dark);
  letter-spacing: -0.01em; margin: 0;
}
.article-excerpt {
  color: var(--muted);
  font-size: 0.9rem; line-height: 1.55;
  flex: 1; margin: 0;
}
.article-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.75rem; margin-top: auto;
  border-top: 1px solid var(--border);
}
.article-source { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.article-cta { font-size: 0.88rem; font-weight: 600; color: var(--green); transition: transform 0.18s ease; }
.article-card:hover .article-cta { transform: translateX(3px); }

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

/* ===== KATALOGAS ===== */
.page-header { padding: 3.5rem 2.5rem 2rem; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2.8rem; margin-bottom: 0.4rem; }
.page-header p { color: var(--muted); font-size: 1rem; }

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 80vh; }
.sidebar { border-right: 1px solid var(--border); padding: 2rem 1.5rem; background: var(--white); }
.sidebar h3 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.filter-group { margin-bottom: 2rem; }
.filter-btn { display: block; width: 100%; text-align: left; padding: 0.6rem 0.9rem; border-radius: 8px; border: none; background: transparent; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text); cursor: pointer; margin-bottom: 0.3rem; transition: background 0.12s; }
.filter-btn:hover { background: var(--green-light); }
.filter-btn.active { background: var(--green); color: #fff; font-weight: 500; }
.filter-count { float: right; font-size: 0.75rem; color: var(--muted); background: var(--green-light); padding: 1px 7px; border-radius: 100px; }
.filter-btn.active .filter-count { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.price-range { margin-top: 0.5rem; }
.price-range input[type=range] { width: 100%; accent-color: var(--green); }
.price-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

.products-area { padding: 2rem 2.5rem; }
.products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.result-count { font-size: 0.88rem; color: var(--muted); }
.sort-select { border: 1px solid var(--border); border-radius: 8px; padding: 0.4rem 0.8rem; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--text); background: var(--white); outline: none; cursor: pointer; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.3rem; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer; display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,26,15,0.10);
  border-color: rgba(26,58,26,0.18);
}
.product-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; transition: transform 0.4s ease; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-emoji { font-size: 3.2rem; transition: transform 0.4s ease; }
.product-img.green-bg { background: var(--green-light); }
.product-img.sun-bg { background: var(--sun-light); }
.product-img.dark-bg { background: #E8EDE8; }

.badge { position: absolute; top: 12px; left: 12px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 100px; }
.badge-new { background: var(--green); color: #fff; }
.badge-hot { background: var(--sun); color: #3A2000; }
.badge-sale { background: #D84040; color: #fff; }

.product-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.product-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.45rem; font-weight: 600; }
.product-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.7rem; color: var(--dark); letter-spacing: -0.01em; }
.product-specs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }
.spec-tag { font-size: 0.7rem; padding: 3px 9px; border-radius: 6px; background: var(--green-light); color: var(--green-mid); font-weight: 500; }
.product-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto; gap: 0.5rem; }
.product-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--green); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.price-old { font-size: 0.78rem; color: var(--muted); text-decoration: line-through; margin-left: 0.3rem; font-weight: 400; }
.btn-card { background: var(--green); color: #fff; border: none; border-radius: 100px; padding: 0.55rem 1.15rem; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background 0.15s, transform 0.15s; white-space: nowrap; }
.btn-card:hover { background: var(--green-mid); transform: translateY(-1px); }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 200; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 20px; width: 100%; max-width: 680px; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 1.8rem; border-bottom: 1px solid var(--border); }
.modal-header h2 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.modal-close { background: var(--green-light); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 700; flex-shrink: 0; }
.modal-body { padding: 1.8rem; }
.modal-img { height: 200px; border-radius: 12px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.modal-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; }
.modal-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--green); }
.modal-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 0.6rem 0.4rem; font-size: 0.9rem; }
.spec-table td:first-child { color: var(--muted); width: 50%; }
.spec-table td:last-child { font-weight: 500; }
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-modal { flex: 1; min-width: 200px; background: var(--green); color: #fff; border: none; border-radius: 100px; padding: 0.9rem; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; }
.btn-ghost-modal { flex: 1; min-width: 140px; background: transparent; color: var(--green); border: 1.5px solid var(--green); border-radius: 100px; padding: 0.9rem; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; }

.contact-form { margin-top: 1.5rem; border-top: 1px solid var(--border); padding-top: 1.5rem; display: none; }
.contact-form h3 { font-size: 1rem; margin-bottom: 1rem; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.3rem; }
.cf-group.full { grid-column: 1/-1; }
.cf-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.cf-group input, .cf-group select { padding: 0.7rem 0.9rem; border: 1px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; background: var(--white); color: var(--text); transition: border-color 0.15s; }
.cf-group input:focus, .cf-group select:focus { border-color: var(--green); }
.cf-submit { background: var(--sun); color: #3A2000; border: none; border-radius: 100px; padding: 0.85rem 2rem; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; margin-top: 1rem; width: 100%; }
.success-inline { display: none; background: var(--green-light); border: 1px solid rgba(26,58,26,0.2); border-radius: 10px; padding: 1rem 1.2rem; color: var(--green); font-size: 0.9rem; margin-top: 1rem; text-align: center; }

/* ===== FORMA (full section) ===== */
.form-section {
  background: linear-gradient(165deg, #0F1A0F 0%, #1A2A1A 100%);
  padding: 5.5rem 3rem; position: relative; overflow: hidden;
}
.form-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.12), transparent 65%);
  pointer-events: none;
}
.form-section > * { position: relative; z-index: 1; }
.form-section .section-label { color: var(--sun); }
.form-section .section-label::before { background: var(--sun); }
.form-section h2 { color: #fff; }
.form-section .section-sub { color: rgba(255,255,255,0.55); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; max-width: 700px; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 0.85rem 1rem; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sun); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.form-note { color: rgba(255,255,255,0.35); font-size: 0.8rem; line-height: 1.5; }
.success-msg { display: none; background: rgba(126, 217, 138, 0.1); border: 1px solid rgba(126, 217, 138, 0.3); border-radius: 12px; padding: 1.2rem 1.5rem; color: #7ED98A; font-size: 0.95rem; margin-top: 1.5rem; max-width: 500px; }

/* ===== FOOTER ===== */
footer {
  padding: 2.5rem 3rem 2rem;
  border-top: none;
  background: linear-gradient(180deg, rgba(26,90,45,0.55) 0%, rgba(45,108,55,0.45) 100%), linear-gradient(180deg, #1A3A1A 0%, #0F2312 100%);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 -4px 24px rgba(15,42,15,0.18);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: #ffffff; text-decoration: none;
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--sun); }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.62); }
footer .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer .footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s;
}
footer .footer-links a:hover { color: var(--sun); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-right { padding: 2rem 1.5rem 3rem; min-height: 360px; }
  .calc-wrapper { grid-template-columns: 1fr; padding: 1.5rem; }
  .calc-row { grid-template-columns: 1fr; }
  .result-big { font-size: 2.4rem; }
  .r25-value { font-size: 1.4rem; }
  .rs-num { font-size: 1.15rem; }
  .rs-lbl { font-size: 0.62rem; letter-spacing: 0.03em; }
  .rs-unit { font-size: 0.66rem; }
  .result-stats { gap: 0.4rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-section { padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .sidebar { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
  .products-area { padding: 1.5rem; }
  .page-header { padding: 2rem 1.5rem 1.5rem; }
  .page-header h1 { font-size: 2rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  nav.site-nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(15,35,18,0.96); backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px); flex-direction: column; padding: 1rem; gap: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: none; align-items: stretch; box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
  nav.site-nav ul.open { display: flex; }
  nav.site-nav ul a { padding: 0.6rem 0; }
  nav.site-nav ul a.nav-cta { text-align: center; }
  .nav-toggle { display: block; }
  nav.site-nav { padding: 0.65rem 1.2rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.4rem; }
  .result-big { font-size: 2.5rem; }
  .modal-actions { flex-direction: column; }
  .cf-grid { grid-template-columns: 1fr; }
  .form-section { padding: 3rem 1.2rem; }
}

/* ===== TRUST STRIPS (brands + certs) ===== */
.trust-strip {
  background: linear-gradient(180deg, #FAFDF8 0%, #F2F8F0 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 2rem;
}
.trust-strip + .trust-strip { border-top: none; }
.trust-strip--certs { background: #fff; padding: 1.8rem 2rem; }
.trust-strip-inner { max-width: 1180px; margin: 0 auto; }
.trust-strip-label {
  text-align: center;
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted); font-weight: 600;
  margin-bottom: 1rem;
}
.brand-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 2rem 2.8rem;
}
.brand-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--green); letter-spacing: -0.01em;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
}
.brand-logo:hover { opacity: 1; transform: translateY(-1px); }
.brand-logo:nth-child(3), .brand-logo:nth-child(4) { text-transform: none; }

.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cert-badge {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cert-badge:hover { border-color: var(--sun); transform: translateY(-2px); }
.cert-badge-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--green);
  background: var(--green-light);
  padding: 7px; border-radius: 9px;
}
.cert-badge-title { font-size: 0.88rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 2px; }
.cert-badge-sub { font-size: 0.74rem; color: var(--muted); line-height: 1.3; }

/* ===== ROI CHART SECTION ===== */
.roi-section { padding-bottom: 2.5rem; }
.roi-wrap {
  background: linear-gradient(160deg, #F0F8EE 0%, #E4F2E2 100%);
  border: 1px solid rgba(26,58,26,0.08);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.2rem;
  max-width: 880px;
  margin: 0 auto;
}
.roi-chart-wrap {
  width: 100%; aspect-ratio: 800 / 240;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 0.4rem;
  margin-bottom: 1rem;
}
.roi-chart { width: 100%; height: 100%; display: block; }
.roi-summary {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem; margin-bottom: 0.8rem;
}
.roi-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem; text-align: center;
}
.roi-stat--good { background: var(--green); color: #fff; border-color: var(--green); }
.roi-stat-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--muted);
  font-weight: 600; margin-bottom: 0.35rem;
}
.roi-stat--good .roi-stat-label { color: rgba(255,255,255,0.6); }
.roi-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; line-height: 1;
  display: inline-flex; align-items: baseline; gap: 3px;
}
.roi-stat-value em { font-style: normal; font-size: 0.7rem; font-weight: 600; color: var(--muted); margin-left: 2px; }
.roi-stat--good .roi-stat-value { color: var(--sun); }
.roi-stat--good .roi-stat-value em { color: rgba(255,255,255,0.6); }
.roi-stat-value em {
  font-style: normal;
  font-size: 0.78rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0;
}
.roi-stat--good .roi-stat-value em { color: rgba(255,255,255,0.6); }
.roi-note {
  font-size: 0.78rem; color: var(--muted); line-height: 1.5;
  text-align: center; margin: 0;
}

/* ===== TIMELINE (Kaip dirbame) ===== */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  top: 24px; left: 60px; right: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sun) 0 8px, transparent 8px 16px);
  opacity: 0.4; z-index: 0;
}
.timeline-step { position: relative; z-index: 1; text-align: center; }
.timeline-step-marker {
  width: 48px; height: 48px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 14px rgba(26,58,26,0.12);
}
.timeline-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green);
  line-height: 1;
}
.timeline-step:nth-child(2) .timeline-step-marker { border-color: var(--sun); }
.timeline-step:nth-child(2) .timeline-step-num { color: var(--sun); }
.timeline-step:nth-child(3) .timeline-step-marker { border-color: var(--green); }
.timeline-step:nth-child(3) .timeline-step-num { color: var(--green); }
.timeline-step:nth-child(4) .timeline-step-marker { border-color: var(--sun); }
.timeline-step:nth-child(4) .timeline-step-num { color: var(--sun); }
.timeline-step-content h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.timeline-step-content p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.55;
  margin: 0;
}
.timeline-step-time {
  display: inline-block;
  background: var(--sun-light); color: #7A4A00;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 0.6rem;
}

/* ===== LIVE LIETUVA SAULĖS COUNTER ===== */
.live-counter-section {
  background: linear-gradient(165deg, #0F1A0F 0%, #1A2A1A 100%);
  padding: 4rem 2rem;
  position: relative; overflow: hidden;
}
.live-counter-section::before {
  content: ''; position: absolute; top: -100px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.14), transparent 65%);
  pointer-events: none;
}
.live-counter-section::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,217,138,0.10), transparent 65%);
  pointer-events: none;
}
.live-counter-inner {
  max-width: 1000px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.live-counter-label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 1rem;
  padding: 0.45rem 1rem; border-radius: 100px;
  background: rgba(126,217,138,0.12);
  border: 1px solid rgba(126,217,138,0.25);
}
.live-counter-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #7ED98A;
  box-shadow: 0 0 10px #7ED98A;
  animation: ef-pulse 1.8s ease-in-out infinite;
}
.live-counter-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; color: var(--sun);
  line-height: 1; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 30px rgba(232,160,32,0.3);
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  justify-content: center;
}
.live-counter-value em {
  font-style: normal;
  font-size: 0.4em; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0;
}
.live-counter-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem; margin-top: 0.6rem;
  letter-spacing: 0.02em;
}
.live-counter-row {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.live-counter-stat { text-align: center; min-width: 160px; }
.live-counter-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; font-variant-numeric: tabular-nums;
  margin-bottom: 0.3rem;
}
.live-counter-stat-lbl {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  font-weight: 500; line-height: 1.3;
}
.live-counter-stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.12);
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: rgba(232,160,32,0.5); box-shadow: 0 4px 14px rgba(15,26,15,0.05); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 1.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--dark); letter-spacing: -0.005em;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 400; color: var(--sun);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sun-light);
  border-radius: 50%; flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; background: var(--sun); color: #fff; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--green); }
.faq-answer { padding: 0 1.4rem 1.2rem; }
.faq-answer p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.faq-answer p + p { margin-top: 0.6rem; }
.faq-answer a { color: var(--green); font-weight: 500; }
.faq-answer em { font-style: italic; color: var(--dark); }
.faq-answer strong { color: var(--dark); font-weight: 700; }

/* ===== MOBILE RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 960px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .roi-summary { grid-template-columns: 1fr; }
  .live-counter-row { gap: 1rem; }
  .live-counter-stat-sep { display: none; }
  .brand-logos { gap: 1.2rem 1.8rem; }
  .brand-logo { font-size: 1rem; }
}
@media (max-width: 720px) {
  .cert-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .nav-phone { display: none !important; }
  .roi-wrap { padding: 1.2rem; }
  .trust-strip { padding: 1.2rem 1.2rem; }
  .live-counter-section { padding: 3rem 1.2rem; }
}

/* ===== Skaičiuoklės pilno aiškumo suvestinė ===== */
.result-summary {
  margin-top: 1.5rem;
  padding: 1.5rem 1.5rem 1.6rem;
  background: linear-gradient(165deg, #ffffff 0%, #F0F8EE 100%);
  border: 1px solid rgba(26,58,26,0.14);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(15,42,15,0.05);
}
.rs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  margin: 0 0 0.7rem; color: var(--green);
  letter-spacing: -0.015em;
}
.rs-sentence {
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
  color: var(--dark);
  line-height: 1.55;
  font-weight: 500;
}
.rs-sentence strong { color: var(--green); font-weight: 700; }
.rs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.rs-item {
  background: rgba(255,255,255,0.72);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.rs-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.rs-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: -0.015em;
  display: block;
  line-height: 1.15;
  font-weight: 700;
}
.rs-text span {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 3px;
  font-weight: 500;
}
.btn-summary-cta {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #3FA854 0%, #1F7A3A 100%);
  color: #ffffff;
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  box-shadow: 0 6px 20px rgba(63,168,84,0.35), inset 0 1px 0 rgba(255,255,255,0.20);
  border: 1px solid rgba(31,122,58,0.5);
}
.btn-summary-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 28px rgba(63,168,84,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}
.rs-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.8rem 0 0;
  line-height: 1.5;
  text-align: center;
}

/* ===== HERO baterijos punktai ===== */
.hero-battery-points {
  list-style: none; padding: 0;
  margin: -0.6rem 0 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  max-width: 480px;
}
.hero-battery-points li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.93rem; color: var(--text);
  line-height: 1.5;
}
.hero-battery-points svg {
  width: 18px; height: 18px;
  fill: var(--sun);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 760px) {
  .hero-battery-points { max-width: 100%; margin-bottom: 1.5rem; }
  .hero-battery-points li { font-size: 0.88rem; }
}
