/* ===========================================================
   VINARA SOLUTIONS — stylesheet
   Token system: navy + lime accent, Space Grotesk / Plus Jakarta Sans
   =========================================================== */

:root {
  /* --- color tokens --- */
  --navy: #0A1B33;
  --navy-2: #122A4C;
  --navy-soft: #1B3358;
  --ink: #16202E;
  --mist: #5B6B7C;
  --paper: #F6F8FA;
  --white: #FFFFFF;
  --line: #E4E9EE;

  --lime: #8BC53F;
  --lime-dark: #6FA62E;
  --lime-soft: #EAF6D9;

  --c-lime: #8BC53F;
  --c-green: #1F9E8B;
  --c-purple: #7A5FB8;
  --c-blue: #2D7DD2;
  --c-red: #E0524D;
  --c-violet: #9B59C9;
  --c-orange: #E08D3C;
  --c-gold: #D2A23A;

  /* --- type --- */
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* --- layout --- */
  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(10, 27, 51, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 27, 51, 0.18);

  --bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --text-muted: var(--mist);
  --border: var(--line);

  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0B1626;
  --surface: #122036;
  --text: #EAF1F8;
  --text-muted: #93A4B8;
  --border: #213552;
  --lime-soft: rgba(139, 197, 63, 0.15);
  color-scheme: dark;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.ic { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- reveal-on-scroll ---------- */
/* Hidden state only applies when JS has confirmed it can run (see early
   inline script in <body>) AND script.js is the one adding .in-view back.
   No-JS / JS-broken visitors simply see everything, already in place. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
  transition-delay: var(--delay, 0ms);
}
.js [data-reveal].in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; border-radius: 999px; padding: 12px 22px;
  font-weight: 600; font-size: 0.95rem; font-family: var(--font-body);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn .ic { width: 18px; height: 18px; }
.btn-lime { background: var(--lime); color: #0A1B0A; box-shadow: 0 8px 20px rgba(139,197,63,.35); }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #06210F; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); display: grid; place-items: center; color: var(--text);
}
.icon-btn .ic { width: 19px; height: 19px; }
.icon-btn:hover { background: var(--lime-soft); border-color: var(--lime); }

/* ---------- quick action sidebar ---------- */
.quick-actions {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 60;
}
.qa-btn {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy);
  color: var(--lime); display: grid; place-items: center; box-shadow: var(--shadow);
  border: none; position: relative; transition: transform .2s ease, background .2s ease;
}
.qa-btn:hover { background: var(--lime); color: var(--navy); transform: scale(1.08); }
.qa-btn .ic { width: 20px; height: 20px; }
.qa-btn::after {
  content: attr(data-tip); position: absolute; right: 56px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: #fff; font-size: .72rem; padding: 6px 10px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.qa-btn:hover::after { opacity: 1; }
@media (max-width: 720px) { .quick-actions { right: 10px; transform: scale(.85) translateY(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(10,27,51,.92);
  backdrop-filter: blur(10px); transition: box-shadow .3s ease, background .3s ease;
}
[data-theme="dark"] .site-header { background: rgba(11,22,38,.92); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-mark { width: 46px; height: 38px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .04em; }
.brand-text small { font-size: .58rem; letter-spacing: .18em; color: var(--lime); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.nav-link { display: inline-flex; align-items: center; color: #cfdcec; font-size: .92rem; font-weight: 500; position: relative; padding: 6px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--lime); transition: width .2s ease; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-link .ic { width: 13px; height: 13px; margin-left: 5px; opacity: .8; transition: transform .2s ease; }

/* -- Solutions dropdown: desktop hover flyout listing every industry -- */
.nav-item.has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 6px);
  min-width: 220px; background: var(--navy-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md, 12px); padding: 10px; box-shadow: var(--shadow-lg, 0 20px 40px rgba(0,0,0,.35));
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  z-index: 80; display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0); transition: opacity .2s ease, transform .2s ease;
}
.nav-item.has-dropdown:hover .nav-link .ic { transform: rotate(180deg); }
.nav-dropdown-link { display: block; padding: 9px 12px; border-radius: 8px; color: #cfdcec; font-size: .86rem; white-space: nowrap; }
.nav-dropdown-link:hover { background: rgba(139,197,63,.12); color: var(--lime); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; font-size: .9rem; }
.header-phone .ic { width: 17px; height: 17px; color: var(--lime); }
#theme-toggle { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
#theme-toggle:hover { background: var(--lime); color: var(--navy); }
.nav-toggle { display: none; }
.nav-cta { display: none; }

@media (max-width: 980px) {
  .main-nav { position: fixed; top: 76px; right: 0; bottom: 0; left: 0; background: var(--navy); flex-direction: column;
    padding: 26px 24px; gap: 4px; transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s ease, transform .25s ease; height: calc(100vh - 76px); overflow-y: auto; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: flex; margin-top: 18px; }
  .nav-item.has-dropdown { flex-direction: column; align-items: stretch; }
  .nav-item.has-dropdown .nav-link { border-bottom: none; }
  .nav-dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; transition: none;
    display: grid; grid-template-columns: 1fr 1fr; background: none; border: none; box-shadow: none;
    padding: 0 0 10px 14px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-dropdown-link { color: #9fb3c8; font-size: .88rem; padding: 7px 8px; }
}

/* Below ~460px, the header can't fit logo + theme toggle + WhatsApp button +
   hamburger without overflowing — drop the header's WhatsApp button here;
   the floating quick-actions sidebar (also WhatsApp) and the nav-cta inside
   the mobile menu still give people a way to reach out. */
@media (max-width: 460px) {
  .header-actions > .btn-whatsapp { display: none; }
}

/* shared section-label style, used by Solutions/Industries/Projects/etc. */
.eyebrow { color: var(--lime); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
.eyebrow-dark { color: var(--lime-dark); }

/* ---------- hero ---------- */
/* Every slide image is a fixed 3840x1440 (8:3) banner with its headline and
   subtext already baked into the artwork. .hero-media locks to that exact
   ratio so the photo — and the text drawn into it — is always shown at its
   true, full size: never cropped, zoomed, or cut off, at any screen width.
   Only the CTA buttons below are live HTML, positioned by percentage so
   they stay aligned with the artwork's own text block as it scales. */
.hero { position: relative; background: var(--navy); color: #fff; }
.hero-media { position: relative; width: 100%; overflow: hidden; }
.hero-media::before { content: ""; display: block; padding-top: 37.5%; } /* 1440 / 3840 = 8:3 */

.hero-bg-stack { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero-bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-bg.active { opacity: 1; }
.hero-photo { display: block; width: 100%; height: 100%; object-fit: contain; }

/* -- CTA row: one per slide, cross-fades, sits just below where each
      banner's own baked-in text block ends -- */
.hero-cta-row { position: absolute; left: 3.6%; right: 4%; top: 60%; z-index: 2; }
.hero-panel {
  position: absolute; top: 0; left: 0; right: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear .5s;
}
.hero-panel.active { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .5s ease .15s, transform .5s ease .15s; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) { .hero-cta-row { top: 62%; } .hero-ctas { gap: 8px; } .hero-ctas .btn-lg { padding: 9px 14px; font-size: .74rem; } }
@media (max-width: 460px) { .hero-cta-row { top: 64%; } .hero-ctas .btn-lg { padding: 7px 11px; font-size: .64rem; gap: 5px; } }

/* -- nav arrows -- */
/* Anchored to the bottom of the image (same row as the dots), not vertically
   centered — centering used to land the arrows right on top of the baked-in
   headline text on the left side of every slide. */
.hero-arrow {
  position: absolute; bottom: 10px; z-index: 4;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(10,27,51,.55); color: #fff; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease;
}
.hero-arrow .ic { width: 18px; height: 18px; }
.hero-arrow:hover { background: var(--lime); color: #0A1B0A; }
.hero-arrow.left { left: 18px; }
/* offset clear of the fixed .quick-actions sidebar (right:18px, 46px wide) so
   the two never overlap, with a visible gap between them */
.hero-arrow.right { right: 84px; }
@media (max-width: 720px) { .hero-arrow { display: none; } }
@media (max-width: 900px) and (min-width: 721px) { .hero-arrow.right { right: 78px; } }

.hero-dots { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); padding: 0; transition: all .2s ease; }
.hero-dots button.active { background: var(--lime); width: 22px; border-radius: 6px; }



/* ---------- stats ---------- */
.stats { background: var(--navy-2); color: #fff; padding: 36px 0; border-top: 3px solid var(--lime); }
.stats-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.stats-label { font-weight: 700; min-width: 160px; color: #cfdcec; position: relative; padding-left: 22px; }
.stats-label::before {
  content: ""; position: absolute; left: 0; top: 1px; bottom: 1px; width: 3px; border-radius: 2px;
  background: repeating-linear-gradient(to bottom, var(--lime) 0 4px, transparent 4px 9px);
}
.stats-label span { color: var(--lime); display: block; }
.stats-grid { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.stat { text-align: center; position: relative; padding: 0 6px; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; top: 2px; bottom: 2px; right: -9px; width: 1px;
  background: rgba(255, 255, 255, .14);
}
.stat-icon { display: flex; justify-content: center; margin-bottom: 10px; color: var(--lime); }
.stat-icon .ic { width: 26px; height: 26px; stroke-width: 1.5; }
.stat-title { display: block; font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: var(--lime); margin-bottom: 6px; }
.stat-desc { display: block; font-size: .78rem; color: #9fb3c8; line-height: 1.4; }
@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } .stat:nth-child(3)::after { display: none; } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stats-label { width: 100%; } .stat:nth-child(even)::after { display: none; } }

/* ---------- generic section ---------- */
.section { padding: 90px 0; }
/* Two light sections sitting back-to-back (no dark section between them)
   otherwise have no visible boundary — add a clean divider line. Dark
   sections (.hero, .stats, .why-us, .cta-banner) don't carry the .section
   class, so this rule naturally skips those transitions, which already
   read clearly from the color contrast alone. */
.section + .section { border-top: 1px solid var(--border); }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; max-width: none; text-align: left; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-sub { font-size: 1.02rem; }
.link-arrow { font-weight: 700; color: var(--navy); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
[data-theme="dark"] .link-arrow { color: var(--lime); }
.link-arrow .ic { width: 17px; height: 17px; color: var(--lime); }

/* ---------- solutions grid ---------- */
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.solution-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.solution-photo { position: relative; overflow: hidden; background: var(--navy); }
.solution-photo::before { content: ""; display: block; padding-top: 62.5%; } /* 16:10 */
.solution-photo img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.solution-card:hover .solution-photo img { transform: scale(1.06); }
.solution-body { position: relative; padding: 0 24px 28px; }
.solution-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-top: -25px; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(10,27,51,.18);
  transition: transform .25s ease;
}
.solution-card:hover .solution-icon { transform: rotate(-6deg) scale(1.05); }
.solution-card h3 { font-size: 1.08rem; }
.solution-card p { font-size: .92rem; min-height: 64px; }
.card-link { color: var(--navy); font-weight: 700; font-size: .88rem; display: inline-flex; gap: 5px; align-items: center; }
[data-theme="dark"] .card-link { color: var(--lime); }
.card-link .ic { width: 15px; height: 15px; color: var(--lime); transition: transform .2s ease; }
.card-link:hover .ic { transform: translateX(3px); }

.icon-lime   { background: rgba(139,197,63,.15); color: var(--c-lime); }
.icon-green  { background: rgba(31,158,139,.15); color: var(--c-green); }
.icon-purple { background: rgba(122,95,184,.15); color: var(--c-purple); }
.icon-blue   { background: rgba(45,125,210,.15); color: var(--c-blue); }
.icon-red    { background: rgba(224,82,77,.15); color: var(--c-red); }
.icon-violet { background: rgba(155,89,201,.15); color: var(--c-violet); }
.icon-orange { background: rgba(224,141,60,.15); color: var(--c-orange); }
.icon-gold   { background: rgba(210,162,58,.15); color: var(--c-gold); }

/* solution-card icon badges sit half on the photo, so they need solid fills
   (not the translucent tint used elsewhere) to stay legible over any image */
.solution-icon.icon-lime   { background: var(--c-lime); color: #0A1B0A; }
.solution-icon.icon-green  { background: var(--c-green); color: #fff; }
.solution-icon.icon-purple { background: var(--c-purple); color: #fff; }
.solution-icon.icon-blue   { background: var(--c-blue); color: #fff; }
.solution-icon.icon-red    { background: var(--c-red); color: #fff; }
.solution-icon.icon-violet { background: var(--c-violet); color: #fff; }
.solution-icon.icon-orange { background: var(--c-orange); color: #fff; }
.solution-icon.icon-gold   { background: var(--c-gold); color: #fff; }

@media (max-width: 980px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .solutions-grid { grid-template-columns: 1fr; } .solution-card p { min-height: auto; } }

/* ---------- industries ---------- */
.industries-section { position: relative; overflow: hidden; }
.industries-bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; pointer-events: none; overflow: hidden; }
.industries-bg::before, .industries-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .25;
}
.industries-bg::before { width: 280px; height: 280px; background: var(--lime); top: -100px; left: -90px; }
.industries-bg::after { width: 240px; height: 240px; background: var(--c-blue); bottom: -110px; right: -70px; }

.industries-head { margin-bottom: 26px; }
.industries-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.industry-card {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.industry-icon-badge { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.industry-icon-badge .ic { width: 17px; height: 17px; }
.industry-text { display: flex; flex-direction: column; gap: 1px; }
.industry-text strong { font-size: .88rem; }
.industry-text small { font-size: .74rem; color: var(--text-muted); }

@media (max-width: 860px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }

/* ---------- projects carousel ---------- */
.carousel-wrap { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 14px; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; scrollbar-width: none; flex: 1; }
.carousel-track::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 260px; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-thumb { height: 150px; display: grid; place-items: center; }
.project-thumb .ic { width: 46px; height: 46px; }
.project-info { padding: 16px 18px 20px; }
.project-info h4 { font-size: 1rem; margin-bottom: 4px; }
.project-info p { font-size: .85rem; margin-bottom: 10px; }
.tag { display: inline-block; background: var(--lime-soft); color: var(--lime-dark); font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; flex-shrink: 0; }
.carousel-btn:hover { background: var(--lime); border-color: var(--lime); color: #0A1B0A; }
.carousel-btn .ic { width: 18px; height: 18px; }
@media (max-width: 640px) { .carousel-btn { display: none; } }

/* ---------- why us ---------- */
.why-us { background: linear-gradient(160deg, #0A1B33, #112844); color: #fff; padding: 90px 0; }
.why-us h2 { text-align: center; margin-bottom: 50px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; text-align: center; }
.why-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: rgba(139,197,63,.14); color: var(--lime); }
.why-item h3 { font-size: .95rem; }
.why-item p { font-size: .82rem; color: #9fb3c8; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- careers ---------- */
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; margin-top: 46px; }
.careers-grid .why-icon { background: rgba(139,197,63,.12); }
@media (max-width: 760px) { .careers-grid { grid-template-columns: 1fr; gap: 30px; } }
.careers-cta { text-align: center; margin-top: 42px; }

/* ---------- partners ---------- */
/* ---------- partners ---------- */
.partners-section { padding: 56px 0 60px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.partners-heading { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 42px; }
.partners-heading-inner { text-align: center; }
.partners-badge {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: var(--lime); color: #0A1B0A; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.partners-heading p { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: .01em; margin: 0; }
.partners-line { flex: 1; height: 1px; background: var(--border); max-width: 160px; }

/* Marquee: mask the edges for a fade-out effect, then scroll the track */
.partners-marquee-wrap { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.partners-marquee { display: flex; }
.partners-track { display: flex; align-items: center; gap: 0; animation: partnersScroll 28s linear infinite; width: max-content; }
.partners-marquee-wrap:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.partner-card {
  display: flex; align-items: center; justify-content: center;
  width: 240px; height: 130px; padding: 20px 32px; margin: 0 6px;
  border-radius: 14px; border: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  flex-shrink: 0;
}
.partner-card:hover { border-color: var(--border); background: var(--bg); box-shadow: 0 8px 28px rgba(10,27,51,.08); }
.partner-card img {
  max-width: 180px; max-height: 90px; width: 100%; height: 100%;
  object-fit: contain; filter: opacity(90%); transition: filter .3s ease;
}
.partner-card:hover img { filter: opacity(100%); }
[data-theme="dark"] .partner-card img { filter: opacity(80%) brightness(1.1); }
[data-theme="dark"] .partner-card:hover img { filter: opacity(100%) brightness(1.2); }
@media (prefers-reduced-motion: reduce) { .partners-track { animation: none; } }

/* ---------- testimonials ---------- */
/* Each "page" holds 3 testimonial cards in a row and is the unit that
   cross-fades (same proven pattern as the hero slider) — 9 testimonials
   grouped into 3 pages via the |batch(3) filter in the template. */
.testimonial-wrap { position: relative; margin: 0 auto; padding: 0 56px; }
.testimonial-track { position: relative; min-height: 200px; }
.testimonial-page {
  position: absolute; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease, visibility 0s linear .5s;
}
.testimonial-page.active { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .5s ease .15s, transform .5s ease .15s; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 30px; text-align: left; display: flex; flex-direction: column;
}
.testimonial-card blockquote { flex: 1; }
@media (max-width: 900px) {
  .testimonial-page { grid-template-columns: minmax(0, 420px); justify-content: center; }
  .testimonial-wrap { padding: 0 50px; }
}
@media (max-width: 600px) {
  .testimonial-wrap { padding: 0; }
  .testi-arrow { display: none; }
}
/* -- nav arrows: light theme to match this section's white/off-white background -- */
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: background .2s ease, color .2s ease, transform .2s ease;
}
.testi-arrow .ic { width: 18px; height: 18px; }
.testi-arrow:hover { background: var(--lime); color: #0A1B0A; border-color: transparent; }
.testi-arrow.left { left: 0; }
.testi-arrow.right { right: 0; }
.quote-icon { color: var(--lime); display: inline-block; margin-bottom: 8px; }
.quote-icon .ic { width: 20px; height: 20px; }
blockquote { margin: 0 0 18px; font-size: .98rem; color: var(--text); font-family: var(--font-display); font-weight: 500; line-height: 1.5; }
figcaption { display: flex; align-items: center; justify-content: flex-start; gap: 10px; margin-top: auto; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: #0A1B0A; font-weight: 700; display: grid; place-items: center; }
figcaption strong { display: block; font-size: .9rem; }
figcaption small { color: var(--text-muted); font-size: .78rem; }
.dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--border); padding: 0; }
.dots button.active { background: var(--lime); width: 22px; border-radius: 6px; }

/* ---------- insights ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.insight-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.insight-thumb-link { display: block; }
.insight-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--navy); position: relative; }
.insight-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insight-card:hover .insight-thumb img { transform: scale(1.05); }
.insight-body { padding: 16px 18px 20px; }
.insight-date { display: block; font-size: .76rem; color: var(--text-muted); margin-bottom: 8px; }
.insight-card h3 { font-size: .98rem; line-height: 1.4; margin-bottom: 14px; }
.insight-card h3 a { color: var(--text); }
.insight-card h3 a:hover { color: var(--lime-dark); }
.insight-body p { font-size:.85rem; color:var(--text-muted); line-height:1.6; margin:-6px 0 14px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.insight-card .card-link { display: inline-flex; }
@media (max-width: 980px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .insights-grid { grid-template-columns: 1fr; } }
.sol-news-section .insights-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .sol-news-section .insights-grid { grid-template-columns: 1fr; } }

/* ---------- blog post page ---------- */
.blog-post-page { min-height: 100vh; padding-top: 76px; }
.blog-breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 0; font-size: .82rem; color: var(--text-muted); }
.blog-breadcrumb .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.blog-breadcrumb a { color: var(--text-muted); }
.blog-breadcrumb a:hover { color: var(--lime-dark); }
.blog-breadcrumb .ic { width: 14px; height: 14px; opacity: .5; }

.blog-hero { padding: 56px 0 40px; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.blog-hero-inner { max-width: 780px; }
.blog-meta-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.blog-category-pill { background: var(--lime); color: #0A1B0A; font-size: .72rem; font-weight: 800; padding: 4px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; }
.blog-read-time { font-size: .78rem; color: rgba(255,255,255,.6); }
.blog-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); line-height: 1.2; margin-bottom: 18px; color: #fff; }
.blog-excerpt { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 28px; max-width: 700px; }
.blog-author-row { display: flex; align-items: center; gap: 12px; }
.blog-author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--lime); color: #0A1B0A; font-weight: 800; font-size: .9rem; display: grid; place-items: center; flex-shrink: 0; }
.blog-author-row strong { display: block; font-size: .88rem; color: #fff; }
.blog-author-row time { font-size: .78rem; color: rgba(255,255,255,.55); }

.blog-hero-img-wrap { margin-top: -30px; margin-bottom: 0; }
.blog-hero-img { display: block; width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; padding: 56px 0 80px; align-items: start; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }

/* Article body typography */
.blog-content { font-size: 1.02rem; line-height: 1.8; color: var(--text); }
.blog-content h2 { font-size: 1.5rem; margin: 42px 0 16px; color: var(--navy); }
.blog-content h3 { font-size: 1.18rem; margin: 32px 0 12px; color: var(--navy); }
[data-theme="dark"] .blog-content h2, [data-theme="dark"] .blog-content h3 { color: var(--lime); }
.blog-content p { margin-bottom: 20px; }
.blog-content ul, .blog-content ol { margin: 0 0 20px 22px; }
.blog-content li { margin-bottom: 8px; }
.blog-content strong { font-weight: 700; color: var(--text); }

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }
.blog-sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.blog-sidebar-card h4 { font-size: 1rem; margin-bottom: 10px; }
.blog-sidebar-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.blog-related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.blog-related-list a { font-size: .88rem; color: var(--text); display: block; line-height: 1.4; padding: 10px 0; border-bottom: 1px solid var(--border); }
.blog-related-list a:hover { color: var(--lime-dark); }
.blog-related-list li:last-child a { border-bottom: none; }
.related-category { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--lime-dark); margin-bottom: 4px; }

/* Bottom CTA */
.blog-bottom-cta { background: linear-gradient(160deg, #0A1B33, #112844); color: #fff; padding: 70px 0; }
.blog-bottom-cta .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.blog-bottom-cta h2 { font-size: 1.8rem; margin-bottom: 8px; }
.blog-bottom-cta p { color: #9fb3c8; }

/* ---------- cta banner ---------- */
.cta-banner { background: var(--lime); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { color: #0A1B0A; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.cta-banner p { color: #1b3308; margin: 0; }
.cta-banner .btn-lime { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(10,27,51,.35); }
.cta-banner .btn-lime:hover { background: #0E2342; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #b9c8db; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { color: #93a4b8; font-size: .88rem; max-width: 280px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; }
.social-row a:hover { background: var(--lime); color: var(--navy); }
.social-row .ic { width: 17px; height: 17px; }
.footer-col h5 { color: #fff; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: #9fb3c8; font-size: .9rem; padding: 6px 0; }
.footer-col a:hover { color: var(--lime); }
.footer-office { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-office .ic { width: 18px; height: 18px; color: var(--lime); margin-top: 2px; }
.footer-office strong { display: block; color: #fff; font-size: .85rem; }
.footer-office span { font-size: .82rem; color: #93a4b8; }
.footer-col a[href^="tel"], .footer-col a[href^="mailto"] { display: flex; align-items: center; gap: 8px; }
.footer-col a[href^="tel"] .ic, .footer-col a[href^="mailto"] .ic { width: 16px; height: 16px; color: var(--lime); }
.footer-bottom-inner { display: flex; justify-content: space-between; padding: 20px 0; font-size: .82rem; color: #7e93ab; flex-wrap: wrap; gap: 10px; }
.footer-legal a { color: #7e93ab; }
.footer-legal a:hover { color: var(--lime); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--lime); border: none; display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease; z-index: 55;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--lime); color: var(--navy); }

/* ---------- quote modal ---------- */
.modal-backdrop {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(10,27,51,.55); display: flex; align-items: center;
  justify-content: center; padding: 20px; z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .25s ease; backdrop-filter: blur(3px);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--surface); color: var(--text); border-radius: var(--radius-lg); padding: 32px;
  max-width: 440px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto;
  transform: translateY(20px) scale(.98); transition: transform .25s ease;
}
.modal-backdrop.open .modal-card { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; background: var(--bg); border: 1px solid var(--border); display: grid; place-items: center; }
.modal-close:hover { background: var(--lime); color: #0A1B0A; }
.modal-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.modal-sub { font-size: .9rem; margin-bottom: 20px; }
.lead-form label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 14px; color: var(--text); }
.lead-form .optional { color: var(--text-muted); font-weight: 400; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; margin-top: 6px; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-family: inherit; font-size: .92rem; resize: vertical;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(139,197,63,.18); }
.lead-form input[type="file"] { padding: 9px 12px; cursor: pointer; }
.lead-form input[type="file"]::file-selector-button {
  margin-right: 12px; padding: 7px 14px; border: none; border-radius: 8px;
  background: var(--lime); color: #0A1B0A; font-weight: 700; font-size: .82rem; cursor: pointer;
}
.form-status { text-align: center; font-size: .88rem; font-weight: 600; min-height: 1.4em; margin: 14px 0 0; }
.form-status.ok { color: var(--lime-dark); }
.form-status.err { color: var(--c-red); }

/* ---------- misc ---------- */
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   SOLAR SOLUTIONS PAGE
   ============================================================= */

/* --- image placeholder --- */
.img-placeholder { background: linear-gradient(135deg,#e4e8ec,#f0f3f6); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; border-radius:inherit; }
.img-placeholder-label { color:#9fb3c8; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; display:flex; align-items:center; gap:6px; }
.img-placeholder-label .ic { width:16px; height:16px; }
[data-theme="dark"] .img-placeholder { background:linear-gradient(135deg,#122036,#1a2e4a); }
[data-theme="dark"] .img-placeholder-label { color:#3d5a78; }

/* --- hero --- */
.sol-hero { position:relative; background:linear-gradient(140deg,#071625 0%,#0d2540 40%,#0A1B33 100%); color:#fff; padding:0; overflow:hidden; min-height:460px; display:flex; align-items:flex-end; }
.sol-hero-bg { position:absolute; inset:0; }
.sol-hero-photo { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
@media (max-width:640px) { .sol-hero-photo { object-position:20% center; } }
.sol-hero-scrim { position:absolute; inset:0; background:linear-gradient(0deg,rgba(7,22,37,.85) 0%,rgba(7,22,37,.15) 45%,transparent 70%); }
.sol-hero-inner { position:relative; z-index:2; max-width:680px; }
.sol-hero-inner-minimal { max-width:none; width:100%; padding-bottom:44px; padding-left:50px; }
@media (max-width:640px) { .sol-hero-inner-minimal { padding-left:24px; } }
.sol-hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }
.sol-hero-ghost { background:rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.25); }
.sol-hero-ghost:hover { background:rgba(255,255,255,.16); }

/* --- stats bar --- */
.sol-stats-bar { background:var(--navy-2); border-top:3px solid var(--lime); padding:22px 0; }
.sol-stats-inner { display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; }
.sol-stat { display:flex; align-items:center; gap:12px; padding:12px 28px; }
.sol-stat-icon {  display: flex; justify-content: center; margin-bottom: 10px; color: #cfdcec; }
.sol-stat-icon .ic { width: 26px; height: 26px; stroke-width: 1.5;  }
.sol-stat strong { display:block; font-size:1.4rem; font-weight:800; color:var(--lime); font-family:var(--font-display); line-height:1; }
.sol-stat span { font-size:.74rem; color:#9fb3c8; text-transform:uppercase; letter-spacing:.06em; margin-top:3px; display:block; }
.sol-stat-divider { width:1px; height:44px; background:rgba(255,255,255,.12); }

/* --- solutions cards --- */
.sol-solutions-section { background:var(--surface); }
.sol-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px) { .sol-cards-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .sol-cards-grid { grid-template-columns:1fr; } }
.sol-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:transform .25s ease,box-shadow .25s ease; }
.sol-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.sol-card-img { height:180px; width:100%; overflow:hidden; }
.sol-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.sol-card-body { padding:20px 22px 24px; position:relative; }
.sol-card-tag { display:inline-block; background:var(--lime-soft); color:var(--lime-dark); font-size:.68rem; font-weight:700; padding:3px 10px; border-radius:999px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:12px; }
[data-theme="dark"] .sol-card-tag { background:rgba(139,197,63,.15); }
.sol-card-body h3 { font-size:1.05rem; margin-bottom:8px; }
.sol-card-body p { font-size:.88rem; color:var(--text-muted); line-height:1.6; margin-bottom:14px; }

/* --- why solar --- */
.sol-why-layout { display:grid; grid-template-columns:1fr 440px; gap:48px; align-items:start; }
@media (max-width:1000px) { .sol-why-layout { grid-template-columns:1fr; } }
.sol-benefits-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media (max-width:560px) { .sol-benefits-grid { grid-template-columns:1fr; } }
.sol-benefit { display:flex; gap:14px; align-items:flex-start; }
.sol-benefit-icon { width:44px; height:44px; border-radius:12px; background:rgba(139,197,63,.12); color:var(--lime); display:grid; place-items:center; flex-shrink:0; }
.sol-benefit-icon .ic { width:20px; height:20px; }
.sol-benefit h4 { font-size:.95rem; margin-bottom:5px; }
.sol-benefit p { font-size:.85rem; color:var(--text-muted); line-height:1.6; }
.sol-systems-card { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); border:1px solid var(--border); }
.sol-systems-img { height:200px; overflow:hidden; border-radius:inherit; }
.sol-systems-img img { width:100%; height:100%; object-fit:cover; display:block; }
.sol-systems-table { padding:22px; background:var(--surface); }
.sol-systems-table h4 { font-size:1rem; margin-bottom:14px; }
.sol-systems-table table { width:100%; border-collapse:collapse; }
.sol-systems-table tr { border-bottom:1px solid var(--border); }
.sol-systems-table tr:last-child { border-bottom:none; }
.sol-systems-table td { padding:9px 0; font-size:.88rem; }
.sys-size { font-weight:800; color:var(--lime-dark); font-family:var(--font-display); width:56px; }
.sys-desc { color:var(--text); }
.sys-units { color:var(--text-muted); font-size:.78rem; text-align:right; }

/* --- process: clean single-row timeline, no numbers --- */
.sol-process-grid {
  display:flex; align-items:flex-start; gap:6px; position:relative; padding-top:8px;
}
.sol-process-line {
  position:absolute; left:5%; right:5%; top:38px; height:0;
  border-top:2px dotted #C7CFD8; z-index:0;
}
[data-theme="dark"] .sol-process-line { border-top-color:#33445E; }
.sol-step { position:relative; z-index:1; flex:1; min-width:0; text-align:center; padding:0 10px; }
.sol-step-icon {
  width:64px; height:64px; border-radius:50%; margin:0 auto 22px;
  background:linear-gradient(150deg,var(--lime),var(--lime-dark)); color:#0A1B0A;
  display:grid; place-items:center;
  box-shadow:0 0 0 8px var(--bg), 0 12px 24px -10px rgba(10,27,51,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}
.sol-step:hover .sol-step-icon { transform:translateY(-3px) scale(1.04); box-shadow:0 0 0 8px var(--bg), 0 16px 30px -10px rgba(111,166,46,.4); }
.sol-step-icon .ic { width:26px; height:26px; }
.sol-step h4 {
  font-family:var(--font-display); font-size:.95rem; font-weight:700; color:var(--navy);
  margin:0 0 8px; letter-spacing:-.005em;
}
[data-theme="dark"] .sol-step h4 { color:#fff; }
.sol-step p { font-size:.82rem; color:var(--text-muted); line-height:1.55; margin:0; }

@media (max-width:980px) {
  .sol-process-grid { flex-wrap:wrap; row-gap:38px; }
  .sol-process-line { display:none; }
  .sol-step { flex:0 0 25%; }
}
@media (max-width:560px) {
  .sol-step { flex:0 0 50%; }
}

/* --- projects --- */

/* --- brands --- */
.sol-brands-section { background:var(--surface); padding:56px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sol-brands-grid { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:16px; margin-top:8px; }
.sol-brand-card { width:160px; height:80px; border:1px solid var(--border); border-radius:12px; display:flex; align-items:center; justify-content:center; padding:14px 18px; transition:box-shadow .2s ease,border-color .2s ease; }
.sol-brand-card:hover { border-color:var(--lime); box-shadow:0 4px 16px rgba(139,197,63,.15); }
.sol-brand-card img { max-width:120px; max-height:52px; object-fit:contain; filter:opacity(85%); transition:filter .2s ease; }
.sol-brand-card:hover img { filter:opacity(100%); }

/* --- calculator --- */
.sol-calc-layout { display:grid; grid-template-columns:380px 1fr; gap:32px; align-items:start; }
@media (max-width:900px) { .sol-calc-layout { grid-template-columns:1fr; } }
@media (max-width:420px) { .sol-calc-field-row { grid-template-columns:1fr; gap:0; } }
.sol-calc-form-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; }
.sol-calc-form-card h3 { display:flex; align-items:center; gap:8px; font-size:1.1rem; margin-bottom:22px; }
.sol-calc-form-card h3 .ic { width:20px; height:20px; color:var(--lime); }
.sol-calc-field { margin-bottom:18px; }
.sol-calc-field-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.sol-calc-field-row .sol-calc-field { margin-bottom:18px; }
.sol-calc-recommend { font-size:.72rem; font-weight:600; color:var(--lime-dark); text-transform:none; letter-spacing:0; }
[data-theme="dark"] .sol-calc-recommend { color:var(--lime); }
.sol-calc-field label { display:block; font-size:.82rem; font-weight:600; color:var(--text); margin-bottom:7px; }
.sol-calc-field input[type="number"],.sol-calc-field select {
  width:100%; padding:11px 14px; border-radius:10px; border:1px solid var(--border);
  background:var(--bg); color:var(--text); font-family:inherit; font-size:.92rem;
}
.sol-calc-field input[type="range"] { width:100%; accent-color:var(--lime); }
.sol-calc-range-label { display:flex; justify-content:space-between; align-items:center; font-size:.76rem; color:var(--text-muted); margin-top:6px; }
.sol-calc-range-label strong { color:var(--lime); font-size:1rem; font-family:var(--font-display); }
.sol-calc-results-wrap { display:flex; flex-direction:column; gap:20px; }
.sol-calc-results { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; }
.sol-calc-results h3 { display:flex; align-items:center; gap:8px; font-size:1.1rem; margin-bottom:20px; }
.sol-calc-results h3 .ic { width:20px; height:20px; color:var(--lime); }
.sol-calc-results-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.calc-group-title {
  font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em;
  color:var(--lime-dark); margin:22px 0 10px;
}
[data-theme="dark"] .calc-group-title { color:var(--lime); }
.calc-group-title:first-of-type { margin-top:0; }
.sol-calc-disclaimer { font-size:.72rem; color:var(--text-muted); line-height:1.5; margin:18px 0 0; }
.calc-result-item { background:var(--bg); border-radius:10px; padding:14px 16px; }
.calc-result-label { display:block; font-size:.74rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
.calc-result-value { display:block; font-size:1.2rem; font-weight:800; font-family:var(--font-display); color:var(--text); }
.calc-result-value.lime { color:var(--lime-dark); }
[data-theme="dark"] .calc-result-value.lime { color:var(--lime); }
.sol-subsidy-card { background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:24px; display:flex; gap:16px; align-items:center; justify-content:space-between; overflow:hidden; }
.sol-subsidy-body { display:flex; gap:18px; align-items:flex-start; }
.sol-subsidy-icon { width:48px; height:48px; border-radius:50%; background:var(--lime); color:#0A1B0A; display:grid; place-items:center; flex-shrink:0; }
.sol-subsidy-icon .ic { width:22px; height:22px; }
.sol-subsidy-card h4 { font-size:.95rem; color:#fff; margin-bottom:10px; }
.sol-subsidy-card ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; }
.sol-subsidy-card li { font-size:.82rem; color:#9fb3c8; display:flex; align-items:center; gap:6px; }
.sol-subsidy-card li .ic { width:13px; height:13px; color:var(--lime); flex-shrink:0; }
.sol-subsidy-art { flex-shrink:0; width:150px; }
.sol-subsidy-art svg { width:100%; height:auto; display:block; }
@media (max-width:1100px) { .sol-subsidy-art { display:none; } }
@media (max-width:640px) { .sol-subsidy-body { flex-direction:column; } }

/* --- CTA banner --- */
.sol-cta-banner { position:relative; overflow:hidden; background:var(--navy-2); padding:72px 0; color:#fff; }
.sol-cta-bg { position:absolute; inset:0; opacity:.22; background-size:cover; background-position:center; }
.sol-cta-inner { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.sol-cta-inner h2 { font-size:clamp(1.5rem,3vw,2.2rem); color:#fff; margin-bottom:8px; }
.sol-cta-inner p { color:#9fb3c8; }
.sol-cta-btns { display:flex; gap:14px; flex-wrap:wrap; flex-shrink:0; }