/* ===================================================================
   NCA Solar — Global Styles
   Shared across ALL pages. Blog-specific CSS lives in pages/blog/blog.css.
   Keep this file as small as possible — only truly shared rules here.
   =================================================================== */

/* Thai language: no word spaces, needs explicit line-height/word-break */
:lang(th) { line-height: 1.8; word-break: break-word; overflow-wrap: break-word; }
:lang(th) p, :lang(th) li { word-break: break-word; }

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background:#000; color:#fff; font-family:var(--font); overflow-x:hidden; }

nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(0,0,0,0.72);
  backdrop-filter:saturate(180%) blur(20px);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  height:52px; display:flex; align-items:center;
  padding:0 24px; justify-content:space-between;
}
.nav-logo img { height:36px; width:auto; cursor:pointer; }
.nav-links { display:flex; gap:24px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.85); text-decoration:none; font-size:13px; font-weight:400; letter-spacing:0.02em; transition:color 0.2s; cursor:pointer; }
.nav-links a:hover { color:#fff; }
.nav-right { display:flex; align-items:center; gap:10px; }
.lang-btn { background:none; border:1px solid rgba(255,255,255,0.3); color:rgba(255,255,255,0.85); padding:4px 10px; border-radius:20px; font-size:12px; cursor:pointer; font-family:var(--font); transition:all 0.2s; }
.lang-btn:hover, .lang-btn.active { background:var(--gold); border-color:var(--gold); color:#000; font-weight:600; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:22px; height:1.5px; background:#fff; border-radius:2px; }

.page { display:none; }
.page.active { display:block; }

.hero { position:relative; height:60vh; min-height:400px; display:flex; align-items:flex-end; justify-content:flex-start; overflow:hidden; text-align:left; }
.hero-bg { position:absolute; inset:0; background-size:cover; background-position:center 50%; filter:brightness(0.45); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.72) 100%); }
.hero-content { position:relative; z-index:2; padding:0 24px 52px; max-width:1128px; margin:0 auto; width:100%; text-align:left; }
.hero-eyebrow { font-size:12px; font-weight:600; letter-spacing:0.15em; color:var(--gold); text-transform:uppercase; margin-bottom:20px; }
.hero-title { font-size:clamp(36px,6vw,72px); font-weight:700; line-height:1.05; letter-spacing:-0.02em; margin-bottom:24px; }
.hero-sub { font-size:clamp(16px,2.5vw,21px); color:rgba(255,255,255,0.78); font-weight:300; line-height:1.5; margin-bottom:40px; }
.btn-gold { display:inline-block; background:var(--gold); color:#000; font-weight:600; font-size:15px; padding:14px 32px; border-radius:30px; text-decoration:none; border:none; cursor:pointer; font-family:var(--font); transition:all 0.25s; }
.btn-gold:hover { background:#fff; transform:scale(1.03); }
.btn-ghost { display:inline-block; border:1.5px solid rgba(255,255,255,0.6); color:#fff; font-weight:500; font-size:15px; padding:13px 28px; border-radius:30px; text-decoration:none; transition:all 0.25s; margin-left:12px; cursor:pointer; background:none; font-family:var(--font); }
.btn-ghost:hover { border-color:#fff; background:rgba(255,255,255,0.1); }
.hero-btns { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.hero-btns .btn-ghost { margin-left:0; }
@media (max-width:520px) { .hero-btns { flex-direction:column; align-items:flex-start; } }

section { padding:64px 24px; }
.container { max-width:1080px; margin:0 auto; }
.section-label { font-size:12px; font-weight:600; letter-spacing:0.15em; color:var(--gold); text-transform:uppercase; margin-bottom:12px; }
.section-title { font-size:clamp(28px,4vw,48px); font-weight:700; letter-spacing:-0.02em; line-height:1.1; margin-bottom:20px; }
.section-sub { font-size:17px; color:rgba(255,255,255,0.65); line-height:1.65; max-width:640px; }

.stat-bar { background:var(--dark2); border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08); padding:40px 24px; }
.stat-grid { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-num { font-size:42px; font-weight:700; color:var(--gold); letter-spacing:-0.02em; }
.stat-label { font-size:13px; color:var(--gray); margin-top:4px; }

.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:20px; margin-top:48px; }
.card { background:var(--dark2); border-radius:18px; border:1px solid rgba(255,255,255,0.07); overflow:hidden; transition:transform 0.3s, border-color 0.3s; }
.card:hover { transform:translateY(-4px); border-color:rgba(245,166,35,0.3); }
.card-img { width:100%; height:260px; object-fit:cover; }
.card-body { padding:28px; }
.card-title { font-size:20px; font-weight:600; margin-bottom:10px; }
.card-text { font-size:15px; color:rgba(255,255,255,0.65); line-height:1.6; }
.card-link { color:var(--gold); font-size:14px; font-weight:500; text-decoration:none; margin-top:16px; display:inline-block; cursor:pointer; }

.feature-row { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; margin-top:48px; }
.container > .feature-row:first-child { margin-top:0; }
.feature-row.reverse { direction:rtl; }
.feature-row.reverse > * { direction:ltr; }
.feature-img { width:100%; border-radius:18px; aspect-ratio:4/3; object-fit:cover; }
.feature-title { font-size:32px; font-weight:700; letter-spacing:-0.02em; margin-bottom:16px; }
.feature-text { font-size:16px; color:rgba(255,255,255,0.65); line-height:1.7; }
.feature-list { list-style:none; margin-top:20px; }
.feature-list li { padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.07); font-size:15px; color:rgba(255,255,255,0.8); display:flex; gap:10px; }
.feature-list li::before { content:"✦"; color:var(--gold); font-size:11px; margin-top:2px; flex-shrink:0; }

.dark-section { background:var(--dark2); border-top:1px solid rgba(255,255,255,0.06); border-bottom:1px solid rgba(255,255,255,0.06); }

.product-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px; margin-top:48px; }
.product-card { background:var(--dark3); border-radius:14px; border:1px solid rgba(255,255,255,0.08); padding:28px; text-align:center; transition:all 0.3s; }
.product-card:hover { border-color:var(--gold); }
.product-card img { max-height:120px; object-fit:contain; margin-bottom:16px; width:100%; }
.product-card h3 { font-size:17px; font-weight:600; margin-bottom:8px; }
.product-card p { font-size:14px; color:var(--gray); line-height:1.5; }

.form-wrap { background:var(--dark2); border-radius:24px; padding:40px; border:1px solid rgba(255,255,255,0.07); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-size:12px; font-weight:500; color:var(--gray); margin-bottom:6px; letter-spacing:0.05em; text-transform:uppercase; }
.form-group input, .form-group textarea { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.12); border-radius:10px; padding:12px 16px; color:#fff; font-family:var(--font); font-size:15px; transition:border-color 0.2s; outline:none; }
.form-group input:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-success { display:none; text-align:center; padding:40px; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.info-box { background:var(--dark2); border-radius:18px; padding:36px; border:1px solid rgba(255,255,255,0.07); }
.info-box h3 { font-size:20px; font-weight:600; margin-bottom:20px; }
.contact-item { display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.contact-icon { width:36px; height:36px; background:rgba(245,166,35,0.15); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.contact-item-label { font-size:11px; color:var(--gray); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:3px; }
.contact-item-text { font-size:15px; color:rgba(255,255,255,0.8); line-height:1.5; }

.social-row { display:flex; gap:10px; margin-top:24px; flex-wrap:wrap; }
.social-btn { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:20px; padding:8px 14px; text-decoration:none; color:#fff; font-size:13px; transition:all 0.2s; }
.social-btn:hover { border-color:var(--gold); color:var(--gold); }
.social-btn img { width:16px; height:16px; border-radius:3px; }

.line-box { background:rgba(0,195,0,0.08); border:1px solid rgba(0,195,0,0.2); border-radius:18px; padding:28px; text-align:center; margin-top:20px; }
.line-box img { width:130px; border-radius:12px; margin-bottom:12px; }
.line-box p { color:rgba(255,255,255,0.7); font-size:14px; }

.page-hero { height:50vh; min-height:360px; position:relative; display:flex; align-items:flex-end; padding-bottom:50px; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:brightness(0.4); }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.25) 40%,rgba(0,0,0,0.78) 100%); }
.page-hero-content { position:relative; z-index:2; padding:0 24px; max-width:1128px; margin:0 auto; width:100%; }
.page-hero-label { font-size:12px; font-weight:600; letter-spacing:0.15em; color:var(--gold); text-transform:uppercase; margin-bottom:12px; }
.page-hero-title { font-size:clamp(32px,5vw,60px); font-weight:700; letter-spacing:-0.02em; }

/* NOTE: .blog-card / .blog-filter-* / .blog-featured → pages/blog/blog.css */

.gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:48px; }
.gallery img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:16px; transition:transform 0.4s ease, box-shadow 0.4s ease; cursor:pointer; filter:brightness(0.92); }
.gallery img:hover { transform:scale(1.04); box-shadow:0 20px 60px rgba(0,0,0,0.5); filter:brightness(1); }

.badge-row { display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.badge { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:100px; padding:7px 16px; font-size:13px; color:rgba(255,255,255,0.8); }

.roi-box { background:linear-gradient(135deg,#1a1500,#0d0d00); border:1px solid rgba(245,166,35,0.25); border-radius:20px; padding:40px; margin-top:48px; }
.roi-box h3 { font-size:26px; font-weight:700; margin-bottom:8px; }
.roi-box > p { color:var(--gray); font-size:16px; margin-bottom:28px; }
.roi-nums { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.roi-num { text-align:center; }
.roi-num span { display:block; font-size:36px; font-weight:700; color:var(--gold); }
.roi-num small { font-size:13px; color:var(--gray); }

footer { background:var(--dark2); border-top:1px solid rgba(255,255,255,0.07); padding:60px 24px 40px; }
.footer-grid { max-width:1080px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand img { height:40px; width:auto; margin-bottom:16px; }
.footer-brand p { font-size:14px; color:var(--gray); line-height:1.6; }
.footer-col h4 { font-size:13px; font-weight:600; color:rgba(255,255,255,0.9); margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul li a { font-size:14px; color:var(--gray); text-decoration:none; transition:color 0.2s; cursor:pointer; }
.footer-col ul li a:hover { color:#fff; }
.footer-bottom { max-width:1080px; margin:40px auto 0; padding-top:24px; border-top:1px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; align-items:center; font-size:13px; color:var(--gray); flex-wrap:wrap; gap:12px; }

.mobile-menu { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.97); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-size:22px; color:#fff; text-decoration:none; font-weight:500; }

@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
  .card-grid { grid-template-columns:1fr; }
  .feature-row, .contact-grid { grid-template-columns:1fr; }
  .feature-row.reverse { direction:ltr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .form-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns:repeat(2,1fr); }
  .roi-nums { grid-template-columns:1fr; }
  .page-hero-content { padding:0 20px; }
  .hero-content { padding:0 20px 40px; }
  section { padding:45px 20px; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns:1fr; }
}

.video-player{position:relative;width:100%;margin-top:32px;border-radius:16px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,0.4);cursor:pointer;background:#000}
.video-player video{width:100%;display:block}
.video-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:80px;height:80px;background:rgba(255,255,255,0.92);border-radius:50%;display:flex;align-items:center;justify-content:center;transition:transform 0.25s ease,background 0.25s ease;pointer-events:none;box-shadow:0 4px 24px rgba(0,0,0,0.3)}
.video-player:hover .video-play-btn{transform:translate(-50%,-50%) scale(1.08);background:#fff}
.video-play-btn svg{width:30px;height:30px;fill:#1d1d1f;margin-left:4px}
.video-player.playing .video-play-btn{opacity:0;transition:opacity 0.2s}

.calc-input-wrap{margin-bottom:26px}
.calc-input-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;flex-wrap:wrap;gap:10px}
.calc-input-label{font-size:0.8rem;text-transform:uppercase;letter-spacing:0.08em;color:rgba(255,255,255,0.45)}
.calc-bill-num{display:flex;align-items:center;gap:8px}
.calc-bill-num input{background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.2);color:#fff;padding:7px 12px;border-radius:10px;font-size:1.25rem;font-weight:700;width:128px;text-align:center;outline:none;-moz-appearance:textfield}
.calc-bill-num input::-webkit-outer-spin-button,.calc-bill-num input::-webkit-inner-spin-button{-webkit-appearance:none}
.calc-bill-num span{font-size:0.82rem;color:rgba(255,255,255,0.4)}
.calc-slider{width:100%;-webkit-appearance:none;appearance:none;height:4px;border-radius:2px;outline:none;cursor:pointer;background:linear-gradient(to right,#f5a623 0%,rgba(255,255,255,0.15) 0%)}
.calc-slider::-webkit-slider-thumb{-webkit-appearance:none;width:20px;height:20px;border-radius:50%;background:#f5a623;cursor:pointer;box-shadow:0 0 8px rgba(245,166,35,0.5)}
.calc-slider::-moz-range-thumb{width:20px;height:20px;border-radius:50%;background:#f5a623;cursor:pointer;border:none}
.calc-range-labels{display:flex;justify-content:space-between;font-size:0.7rem;color:rgba(255,255,255,0.28);margin-top:5px}
.calc-cols{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:6px}
.calc-col{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:14px;padding:20px}
.calc-col-hy{background:rgba(245,166,35,0.06);border-color:rgba(245,166,35,0.3)}
.calc-col-badge{font-size:0.9rem;font-weight:700;margin-bottom:3px}
.calc-col-sub{font-size:0.76rem;color:rgba(255,255,255,0.38);font-style:italic;margin-bottom:14px}
.calc-row{padding:9px 0;border-bottom:1px solid rgba(255,255,255,0.06)}
.calc-row:last-child{border-bottom:none}
.calc-val{display:block;font-size:1.45rem;font-weight:700;line-height:1.2;margin-bottom:1px}
.calc-hl .calc-val{color:#f5a623}
.calc-key{font-size:0.7rem;text-transform:uppercase;letter-spacing:0.06em;color:rgba(255,255,255,0.38)}
@media(max-width:500px){.calc-cols{grid-template-columns:1fr}.calc-val{font-size:1.25rem}.calc-col{padding:16px}}

/* === TECHNOLOGY PAGE === */
.solis-header-bar{display:flex;align-items:center;gap:48px;margin:40px 0 0;flex-wrap:wrap;}
.solis-hdr-logo{height:44px;width:auto;object-fit:contain;}
.solis-hdr-stats{display:flex;gap:36px;flex-wrap:wrap;}
.solis-hdr-stat{text-align:center;}
.solis-hdr-num{display:block;font-size:1.8rem;font-weight:700;color:var(--gold);line-height:1;}
.solis-hdr-lbl{display:block;font-size:0.72rem;color:rgba(255,255,255,0.5);text-transform:uppercase;letter-spacing:0.08em;margin-top:4px;}
.tech-product-img{max-height:380px;max-width:100%;object-fit:contain;filter:drop-shadow(0 20px 50px rgba(0,0,0,0.6));}
.tech-product-img-glow{filter:drop-shadow(0 20px 50px rgba(245,166,35,0.3)) brightness(1.06);}
.tech-industry-section{background:linear-gradient(135deg,var(--dark2) 0%,var(--dark3) 100%);position:relative;overflow:hidden;}
.tech-industry-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(245,166,35,0.07) 0%,transparent 70%);}
.panel-trio{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px;}
.panel-card{background:var(--dark3);border-radius:16px;padding:36px 28px;text-align:center;border:1px solid rgba(255,255,255,0.08);transition:border-color 0.3s;}
.panel-card:hover{border-color:var(--gold);}
.panel-brand-name{font-size:2.2rem;font-weight:800;letter-spacing:-0.02em;color:#fff;line-height:1;}
.panel-brand-sub{font-size:0.72rem;color:rgba(255,255,255,0.35);text-transform:uppercase;letter-spacing:0.16em;margin:6px 0 20px;}
.panel-card-text{font-size:0.9rem;color:rgba(255,255,255,0.6);line-height:1.65;}
.panel-tier-badge{margin-top:20px;font-size:0.82rem;font-weight:600;color:var(--gold);}
.batt-col{display:flex;justify-content:center;align-items:center;}
.batt-wrap{display:inline-flex;flex-direction:column;align-items:center;}
.batt-terminal-top{width:52px;height:18px;background:#22c55e;border-radius:6px 6px 0 0;}
.batt-body-vis{width:170px;padding:16px;background:#0a1a10;border-radius:0 0 16px 16px;border:2px solid #22c55e;border-top:none;display:flex;flex-direction:column;gap:10px;}
.batt-cell{border-radius:8px;padding:10px 8px;font-size:0.7rem;font-weight:700;color:#fff;text-align:center;}
.batt-c1{background:rgba(34,197,94,0.9);}
.batt-c2{background:rgba(34,197,94,0.65);}
.batt-c3{background:rgba(34,197,94,0.4);}
.batt-c4{background:rgba(34,197,94,0.12);border:1px solid rgba(34,197,94,0.3);}
.batt-brand-vis{font-size:1rem;font-weight:800;color:#22c55e;letter-spacing:0.06em;text-align:center;margin-top:8px;}
.batt-spec-vis{font-size:0.68rem;color:rgba(255,255,255,0.35);text-align:center;}
.tech-monitor-bg{background:var(--dark2);}
.app-platform-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:740px;margin:0 auto;}
.app-platform-card{text-align:center;padding:36px 20px;background:rgba(255,255,255,0.04);border-radius:20px;border:1px solid rgba(255,255,255,0.08);transition:border-color 0.3s,background 0.3s;}
.app-platform-card:hover{background:rgba(255,255,255,0.07);border-color:rgba(255,255,255,0.18);}
.app-icon-wrap{display:flex;justify-content:center;margin-bottom:20px;}
.app-platform-name{font-weight:700;font-size:1.05rem;color:#fff;margin-bottom:6px;}
.app-platform-detail{font-size:0.8rem;color:rgba(255,255,255,0.45);line-height:1.6;}
.solis-cloud-bar{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:48px;opacity:0.45;}
.solis-cloud-logo{height:32px;width:auto;filter:brightness(0) invert(1);}
.solis-cloud-txt{font-size:0.82rem;color:rgba(255,255,255,0.7);}
.tech-footnote-bar{background:rgba(255,255,255,0.025);border-top:1px solid rgba(255,255,255,0.06);padding:28px 24px;}
.tech-footnote-txt{font-size:0.85rem;color:rgba(255,255,255,0.35);margin:0;text-align:center;}
.tech-footnote-txt strong{color:rgba(255,255,255,0.6);}
@media(max-width:768px){
  .solis-header-bar{gap:20px;}
  .solis-hdr-stats{gap:16px;}
  .solis-hdr-num{font-size:1.4rem;}
  .panel-trio{grid-template-columns:1fr;}
  .app-platform-grid{grid-template-columns:1fr;max-width:320px;}
  .batt-body-vis{width:140px;}
  .tech-product-img{max-height:260px;}
}
.tech-product-img{max-height:342px;}
.panel-trio{position:relative;overflow:hidden;}
.panel-trio::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(4,9,30,0.88) 0%,rgba(8,18,50,0.82) 50%,rgba(4,9,30,0.88) 100%),repeating-linear-gradient(0deg,transparent,transparent 58px,rgba(25,45,110,0.5) 58px,rgba(25,45,110,0.5) 60px),repeating-linear-gradient(90deg,transparent,transparent 78px,rgba(25,45,110,0.5) 78px,rgba(25,45,110,0.5) 80px);background-size:auto,80px 60px,80px 60px;z-index:0;}
.panel-trio>*{position:relative;z-index:1;}
.brand-partners-section{padding:64px 0;background:#050505;border-top:1px solid rgba(255,255,255,0.06);}
.brand-partners-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:48px;}
.brand-partner-card{background:var(--dark2);border-radius:16px;padding:36px 28px;text-align:center;border:1px solid rgba(255,255,255,0.08);}
.brand-partner-logo-wrap{height:60px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.brand-partner-name{font-size:1.15rem;font-weight:700;color:#fff;margin-bottom:8px;}
.brand-partner-text{font-size:0.85rem;color:rgba(255,255,255,0.45);line-height:1.65;}
.uptodate-bar{margin-top:52px;padding:18px 24px;background:rgba(245,166,35,0.07);border:1px solid rgba(245,166,35,0.18);border-radius:12px;text-align:center;}
.uptodate-bar span{color:var(--gold);font-weight:700;font-size:0.88rem;text-transform:uppercase;letter-spacing:0.12em;}
@media(max-width:768px){.brand-partners-grid{grid-template-columns:1fr;}}

/* Google Reviews Carousel */
.reviews-outer { overflow:hidden; margin-top:48px; position:relative; }
.reviews-track { display:flex; gap:20px; transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); will-change:transform; }
.review-card { background:var(--dark2); border-radius:18px; border:1px solid rgba(255,255,255,0.08); padding:28px; min-width:320px; max-width:320px; flex-shrink:0; }
.review-stars { color:var(--gold); font-size:18px; letter-spacing:2px; margin-bottom:14px; }
.review-text { font-size:15px; color:rgba(255,255,255,0.72); line-height:1.65; margin-bottom:22px; display:-webkit-box; -webkit-line-clamp:5; -webkit-box-orient:vertical; overflow:hidden; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar { width:42px; height:42px; border-radius:50%; object-fit:cover; border:2px solid rgba(245,166,35,0.3); flex-shrink:0; }
.review-name { font-size:14px; font-weight:600; margin-bottom:2px; }
.review-time { font-size:12px; color:var(--gray); }
.reviews-summary { display:flex; align-items:center; gap:20px; margin-top:32px; justify-content:center; flex-wrap:wrap; }
.reviews-score { font-size:52px; font-weight:700; color:var(--gold); line-height:1; }
.reviews-stars-row { color:var(--gold); font-size:22px; letter-spacing:3px; }
.reviews-count { font-size:14px; color:var(--gray); margin-top:4px; }
.reviews-dots { display:flex; gap:6px; justify-content:center; margin-top:24px; }
.review-dot { width:6px; height:6px; border-radius:3px; background:rgba(255,255,255,0.2); cursor:pointer; transition:all 0.35s; border:none; padding:0; }
.review-dot.active { background:var(--gold); width:22px; }
@media(max-width:768px){ .review-card { min-width:280px; max-width:280px; } }


/* ── Gallery Lightbox ── */
.lightbox { position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.92); display:none; align-items:center; justify-content:center; padding:4vh 4vw; cursor:zoom-out; }
.lightbox.open { display:flex; }
.lightbox img { max-width:92vw; max-height:92vh; width:auto; height:auto; border-radius:14px; box-shadow:0 30px 100px rgba(0,0,0,0.8); }
.lightbox-close { position:fixed; top:18px; right:26px; font-size:34px; color:#fff; opacity:0.7; cursor:pointer; line-height:1; z-index:10000; }
.lightbox-close:hover { opacity:1; }

/* ── Solar Quick Check ── */
.qc-grid { display:grid; grid-template-columns:5fr 7fr; gap:28px; margin-top:44px; align-items:start; text-align:left; }
.qc-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:20px; padding:26px; }
.qc-step { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin:22px 0 10px; }
.qc-step.first { margin-top:0; }
.qc-opts { display:grid; gap:8px; }
.qc-opt { border:1.5px solid rgba(255,255,255,0.12); background:rgba(255,255,255,0.02); border-radius:14px; padding:12px 6px; text-align:center; cursor:pointer; transition:all 0.2s; font-size:12px; font-weight:700; color:#fff; }
.qc-opt small { display:block; font-weight:500; color:rgba(255,255,255,0.45); font-size:10px; margin-top:2px; }
.qc-opt.active { border-color:var(--gold); background:rgba(245,166,35,0.1); }
.qc-opt:hover { border-color:rgba(255,255,255,0.35); }
.qc-box { border-radius:16px; border:1px solid rgba(255,255,255,0.1); padding:16px 18px; margin-top:14px; transition:all 0.3s; }
.qc-badge { padding:3px 10px; border-radius:20px; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:0.05em; white-space:nowrap; }
.qc-ok { background:rgba(34,197,94,0.07); border-color:rgba(34,197,94,0.35); }
.qc-ok .qc-badge { background:rgba(34,197,94,0.18); color:#4ade80; }
.qc-mid { background:rgba(245,166,35,0.07); border-color:rgba(245,166,35,0.35); }
.qc-mid .qc-badge { background:rgba(245,166,35,0.18); color:var(--gold); }
.qc-no { background:rgba(239,68,68,0.07); border-color:rgba(239,68,68,0.35); }
.qc-no .qc-badge { background:rgba(239,68,68,0.18); color:#f87171; }
.qc-blocker { background:rgba(239,68,68,0.08); border:1px solid rgba(239,68,68,0.3); border-radius:20px; padding:26px; text-align:center; margin-bottom:16px; }
.qc-note { background:rgba(245,166,35,0.06); border:1px solid rgba(245,166,35,0.2); border-radius:14px; padding:12px 16px; font-size:12px; color:rgba(255,255,255,0.75); line-height:1.6; margin-top:10px; }
.qc-roi { border-top:1px dashed rgba(255,255,255,0.15); margin-top:10px; padding-top:8px; display:flex; justify-content:space-between; font-size:11px; color:rgba(255,255,255,0.5); font-weight:600; }
.qc-slider { width:100%; accent-color:var(--gold); }
@media(max-width:900px){ .qc-grid { grid-template-columns:1fr; } }

/* ── Live Data Bar (Solis) ── */
.live-bar { padding:26px 24px; }
.live-inner { max-width:1120px; margin:0 auto; }
.live-head { display:flex; align-items:center; justify-content:center; gap:9px; font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:18px; }
.live-dot { width:9px; height:9px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,0.6); animation:livePulse 1.8s infinite; }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,0.55);} 70%{box-shadow:0 0 0 9px rgba(34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} }
.live-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; text-align:center; }
.live-item { border-left:1px solid rgba(255,255,255,0.08); }
.live-item:first-child { border-left:none; }
.live-val { display:flex; align-items:baseline; justify-content:center; gap:5px; }
.live-num { font-size:33px; font-weight:700; color:var(--gold); letter-spacing:-0.02em; font-variant-numeric:tabular-nums; line-height:1; }
.live-unit { font-size:13px; font-weight:600; color:rgba(255,255,255,0.4); }
.live-label { font-size:12px; color:var(--gray); margin-top:6px; }
@media(max-width:820px){ .live-grid { grid-template-columns:repeat(3,1fr); gap:22px 10px; } .live-item:nth-child(3n+1){ border-left:none; } .live-num{ font-size:24px; } }

.live-sun { display:inline-flex; align-items:center; gap:6px; margin-left:14px; padding-left:14px; border-left:1px solid rgba(255,255,255,0.15); color:rgba(255,255,255,0.7); font-weight:600; text-transform:none; letter-spacing:0; }
.live-sun #live-sun-icon { font-size:15px; }
.live-time { color:rgba(255,255,255,0.4); font-weight:500; }
@media(max-width:560px){ .live-sun { margin-left:0; padding-left:0; border-left:none; margin-top:6px; width:100%; justify-content:center; } .live-head{ flex-wrap:wrap; } }

/* Seitenverhaeltnis schuetzen: Breiten-Attribut darf CSS-Hoehe nicht ueberschreiben */
img[width][height]{max-width:100%;}
