/* ============================================================
   SolarFutures — Apple-inspired theme
   Light canvas, oversized type, soft shadows, pill buttons
   ============================================================ */

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* brand accent — blue (legacy var names kept; inline styles reference them) */
  --yellow: #0A84FF;
  --yellow-dark: #0066CC;
  --yellow-light: #E9F2FC;
  /* apple-ish neutrals (legacy var names kept — inline styles depend on them) */
  --navy: #1D1D1F;
  --navy-light: #2C2C2E;
  --text: #1D1D1F;
  --text-muted: #6E6E73;
  --bg: #FFFFFF;
  --bg-page: #FBFBFD;
  --bg-light: #F5F5F7;
  --bg-card: #FFFFFF;
  --border: #E8E8ED;
  --green: #1F9D55;
  --red: #E0331F;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.05);
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 18px;
  --radius-sm: 12px;
  --pill: 980px;
}

html { direction: rtl; font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Heebo', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  animation: pageFade .45s ease both;
}
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

/* cross-page fade (View Transitions API — progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: .22s; }
::view-transition-new(root) { animation-duration: .30s; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 6px; }

/* ===== TYPOGRAPHY — big, confident, tight ===== */
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 800; line-height: 1.08; letter-spacing: -.015em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.08rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow-dark); }

/* ===== LAYOUT ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: #000000; color: #F5F5F7; }
.section-light { background: var(--bg-light); }
.section-yellow { background: var(--yellow-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

/* ===== NAVBAR — thin, translucent, blurred ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,253,.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1.5rem; max-width: 1080px; margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; gap: .45rem;
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  white-space: nowrap; letter-spacing: -.01em;
}
.navbar-logo span { color: var(--yellow-dark); }
.navbar-nav { display: flex; gap: .1rem; align-items: center; }
.navbar-nav a {
  color: rgba(29,29,31,.78);
  padding: .42rem .8rem;
  border-radius: var(--pill);
  font-size: .9rem;
  font-weight: 500;
  transition: color .18s, background .18s;
}
.navbar-nav a:hover { color: var(--text); background: rgba(0,0,0,.05); }
.navbar-nav a.active { color: var(--text); font-weight: 700; }
.navbar-cta {
  background: var(--text) !important; color: #fff !important;
  font-weight: 600 !important; border-radius: var(--pill) !important;
  padding: .42rem 1.15rem !important; font-size: .88rem !important;
}
.navbar-cta:hover { background: #3A3A3C !important; }

/* mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s;
}

/* ===== HERO — centered, airy, Apple-poster style ===== */
.hero {
  background: linear-gradient(180deg, #FBFBFD 0%, #F2F7FB 100%);
  color: var(--text);
  padding: 6.5rem 0 5rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero-inner { display: block; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  color: var(--yellow-dark);
  font-size: .95rem; font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 1.1rem;
  animation: riseIn .7s ease both;
}
.hero h1 { margin-bottom: 1.3rem; animation: riseIn .7s .08s ease both; }
.hero h1 mark {
  background: none;
  background-image: linear-gradient(110deg, #0066CC, #0A84FF, #5AC8FA);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted); margin: 0 auto 2.2rem; max-width: 620px;
  animation: riseIn .7s .16s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: riseIn .7s .24s ease both;
}
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: .4rem 1.8rem; justify-content: center;
  margin: 2rem auto 0; max-width: 760px;
  animation: riseIn .7s .32s ease both;
}
.hero-bullets li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--text-muted); font-weight: 500;
}
.hero-bullets li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 900; font-size: .9rem;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* hero stats — bare numbers, Apple style */
.hero-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin: 4.5rem auto 0; max-width: 880px;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1;
  background-image: linear-gradient(110deg, #0066CC, #0A84FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-stat .label { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; }

/* ===== BUTTONS — pills ===== */
.btn {
  display: inline-block; padding: .85rem 1.9rem;
  border-radius: var(--pill); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: #3A3A3C; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.section-dark .btn-primary,
.hero .btn-primary { }
.btn-outline {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1.5px rgba(29,29,31,.3);
}
.btn-outline:hover { background: rgba(0,0,0,.04); box-shadow: inset 0 0 0 1.5px rgba(29,29,31,.6); }
.section-dark .btn-outline { color: #F5F5F7; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45); }
.section-dark .btn-outline:hover { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.8); }
.btn-dark { background: #0071E3; color: #fff; }
.btn-dark:hover { background: #1482EB; box-shadow: 0 8px 24px rgba(10,132,255,.35); }
.section-dark .btn-primary { background: #F5F5F7; color: #1D1D1F; }
.section-dark .btn-primary:hover { background: #FFFFFF; }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.1rem; }

/* ===== CARDS — borderless, soft ===== */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 2rem;
  border: none;
  transition: box-shadow .3s, transform .3s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -.01em; }

/* ===== SECTION HEADER — eyebrow + big title ===== */
.section-header { text-align: center; margin-bottom: 3.6rem; }
.section-header .tag {
  display: inline-block; background: none; color: var(--yellow-dark);
  padding: 0; border-radius: 0; font-size: .95rem; font-weight: 700;
  margin-bottom: .7rem; letter-spacing: .01em;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* generic standalone tag (used inline on some pages) */
.tag {
  display: inline-block; background: var(--yellow-light); color: var(--yellow-dark);
  padding: .25rem .85rem; border-radius: var(--pill); font-size: .83rem; font-weight: 700;
}
.section-header .tag { background: none; padding: 0; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
table { width: 100%; border-collapse: collapse; background: #fff; font-size: .95rem; }
thead { background: #FAFAFC; color: var(--text); }
thead th { padding: 1rem 1.3rem; font-weight: 600; text-align: right; white-space: nowrap; color: var(--text-muted); font-size: .85rem; letter-spacing: .02em; border-bottom: 1px solid var(--border); }
tbody td { padding: 1rem 1.3rem; border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #FAFAFC; }
.td-highlight { font-weight: 700; color: var(--yellow-dark); }

/* ROI comparison table */
.roi-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; }
.roi-table thead th { background: #FAFAFC; color: var(--text-muted); }
.roi-table tbody td { background: #fff; border-bottom: 1px solid var(--border); padding: 1.05rem 1.3rem; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .best { background: var(--yellow-light); font-weight: 700; }
.roi-table .best td { background: var(--yellow-light); }
.roi-table .best .roi-val { color: var(--yellow-dark); font-size: 1.15em; }

/* ===== PROCESS STEPS ===== */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem;
  margin-bottom: 2.8rem; align-items: flex-start;
}
.step-num {
  counter-increment: step;
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--text); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin-bottom: .4rem; }

/* ===== ALERTS — soft tinted panels ===== */
.alert {
  border-radius: var(--radius); padding: 1.8rem 2rem;
  border-right: none; margin: 2rem 0;
}
.alert-warning { background: var(--yellow-light); }
.alert-warning strong { color: var(--yellow-dark); }
.alert-info { background: #EAF3FB; }
.alert-info strong { color: #1668A8; }
.alert-success { background: #EAF7EF; }
.alert-success strong { color: #19773F; }

/* ===== FAQ — hairline accordion ===== */
.faq-item {
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0; margin-bottom: 0; overflow: hidden;
  background: transparent;
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem .4rem; cursor: pointer;
  font-weight: 600; font-size: 1.12rem; letter-spacing: -.005em;
  background: transparent; transition: color .15s;
}
.faq-q:hover { color: var(--yellow-dark); }
.faq-q .icon {
  width: 28px; height: 28px; background: var(--bg-light);
  color: var(--text); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; transition: transform .3s, background .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--yellow-light); color: var(--yellow-dark); }
.faq-a {
  padding: 0 .4rem; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  color: var(--text-muted); font-size: 1rem;
}
.faq-item.open .faq-a { max-height: 640px; padding: 0 .4rem 1.6rem; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .45rem; font-size: .92rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(10,132,255,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-direction: column; gap: .5rem; }
.checkbox-label { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-weight: 500; }
.checkbox-label input { width: auto; accent-color: var(--yellow-dark); }

/* ===== PAGE HERO (inner pages) — light + big ===== */
.page-hero {
  background: linear-gradient(180deg, #FBFBFD 0%, #F2F7FB 100%);
  color: var(--text); padding: 5rem 0 4rem; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.page-hero h1 { margin-bottom: 1rem; animation: riseIn .7s ease both; }
.page-hero p {
  color: var(--text-muted); font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 640px; margin: 0 auto; animation: riseIn .7s .1s ease both;
}

/* ===== HIGHLIGHT BOXES ===== */
.highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin: 2.5rem 0; }
.highlight-box {
  background: #fff; border-radius: var(--radius);
  border: none; padding: 1.8rem 1.4rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.highlight-box .icon { font-size: 2rem; margin-bottom: .6rem; }
.highlight-box .num { font-size: 2.1rem; font-weight: 800; color: var(--yellow-dark); letter-spacing: -.02em; }
.highlight-box p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ===== FOOTER — light, quiet ===== */
footer {
  background: var(--bg-light); color: var(--text-muted);
  padding: 3.5rem 0 2rem; font-size: .9rem;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .logo { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: .8rem; }
.footer-brand p { font-size: .88rem; line-height: 1.6; }
.footer-col h4 { color: var(--text); font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .88rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem; text-align: center; font-size: .8rem;
  color: #86868B;
}

/* ===== UTILITIES ===== */
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.gap-1 { gap: .5rem; }
.flex { display: flex; align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.inline-icon { font-size: 1.3em; vertical-align: middle; margin-left: .3em; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: .22rem .75rem; border-radius: var(--pill);
  font-size: .78rem; font-weight: 700;
}
.badge-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.badge-green { background: #EAF7EF; color: #19773F; }
.badge-red { background: #FDEEEC; color: #C0331F; }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 1.4rem; left: 1.4rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.55); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(29,29,31,.85); color: #fff;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: none; cursor: pointer; font-size: 1.2rem; font-weight: 800;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #000; }

/* ===== MOBILE STICKY CTA BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 300;
  background: rgba(251,251,253,.92);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mcta {
  flex: 1; text-align: center; padding: .68rem .3rem;
  border-radius: var(--pill); font-weight: 600; font-size: .88rem;
  white-space: nowrap;
}
.mcta-call { background: var(--bg-light); color: var(--text); }
.mcta-wa { background: #25D366; color: white; }
.mcta-quote { background: var(--text); color: #fff; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== HOW IT WORKS ===== */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; position: relative; }
.hiw-step {
  background: #fff; border: none; border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
}
.hiw-num {
  width: 42px; height: 42px; margin: 0 auto 1rem;
  background: var(--text); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.hiw-step .emoji { font-size: 1.9rem; margin-bottom: .6rem; }
.hiw-step h4 { margin-bottom: .5rem; }
.hiw-step p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-page); border-top: none; border-bottom: 1px solid var(--border); }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem;
  padding: 1.1rem 1.5rem; max-width: 1080px; margin: 0 auto;
  color: var(--text-muted); font-size: .88rem; font-weight: 500;
}
.trust-bar-inner span::before { content: '✓ '; color: var(--yellow-dark); font-weight: 800; }

/* ===== BRAND STRIP ===== */
.brand-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .8rem 1rem; margin-top: 2rem;
}
.brand-chip {
  background: #fff; border: 1px solid var(--border); border-radius: var(--pill);
  padding: .45rem 1.3rem; font-weight: 700; font-size: .9rem; color: var(--text-muted);
  letter-spacing: .02em;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: #fff; border: none; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .8rem;
}
.testimonial .stars { color: #F5B50A; font-size: 1rem; letter-spacing: .18em; }
.testimonial blockquote { font-size: 1rem; color: var(--text); flex: 1; line-height: 1.7; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--border); padding-top: 1.1rem; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--yellow-light); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
}
.testimonial .who strong { display: block; font-size: .95rem; }
.testimonial .who span { font-size: .82rem; color: var(--text-muted); }

/* ===== ROI CALCULATOR ===== */
.calc-box {
  background: #fff; border: none; border-radius: 28px;
  box-shadow: var(--shadow); padding: 3rem; max-width: 900px; margin: 0 auto;
}
.calc-controls label { font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 1rem; }
.calc-controls input[type="range"] {
  width: 100%; accent-color: var(--yellow-dark); height: 8px; cursor: pointer;
}
.calc-note { text-align: center; color: var(--text-muted); margin: .9rem 0 2rem; font-size: .95rem; }
.calc-note strong { color: var(--yellow-dark); font-size: 1.2em; }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
.calc-tile {
  background: var(--bg-light); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; text-align: center;
}
.calc-tile .label { font-size: .8rem; color: var(--text-muted); margin-bottom: .3rem; }
.calc-tile .val { font-size: 1.3rem; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.calc-tile.charge .val { color: var(--red); }
.calc-tile.accent { background: var(--yellow-light); }
.calc-tile.accent .val { color: var(--yellow-dark); font-size: 1.55rem; }
.calc-disclaimer { font-size: .8rem; color: #86868B; text-align: center; margin-bottom: 1.6rem; }

/* ===== HERO PHOTO ===== */
.scene-card {
  position: relative;
  max-width: 820px;
  margin: 3.5rem auto 0;
  border-radius: 24px;
  border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform .2s ease-out;
  will-change: transform;
  animation: riseIn .8s .4s ease both;
}
.scene-card img {
  display: block; width: 100%; height: 460px;
  object-fit: cover; object-position: center 40%;
}

.scene-sun-glow {
  animation: sunPulse 4.5s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: .45; }
  50% { transform: scale(1.18); opacity: .7; }
}
.scene-cloud-a { animation: cloudDrift 18s ease-in-out infinite alternate; }
.scene-cloud-b { animation: cloudDrift 26s ease-in-out infinite alternate-reverse; }
@keyframes cloudDrift {
  from { transform: translateX(-14px); }
  to { transform: translateX(20px); }
}
.scene-glare { animation: glareSweep 7s linear infinite; }
@keyframes glareSweep {
  0%   { transform: translate(-40px, -20px); opacity: 0; }
  12%  { opacity: .55; }
  42%  { opacity: .55; }
  55%  { transform: translate(190px, 95px); opacity: 0; }
  100% { transform: translate(190px, 95px); opacity: 0; }
}

/* ===== SERVICE CARD ART ===== */
.card-art {
  margin: -2rem -2rem 1.4rem;
  display: block;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.card-art img {
  display: block; width: 100%; height: 210px;
  object-fit: cover; object-position: center;
  transition: transform .5s ease;
}
.card:hover .card-art img { transform: scale(1.04); }

/* ===== PAGE HERO ART ===== */
.page-hero-art {
  max-width: 760px; margin: 2.5rem auto 0;
  border-radius: 24px; overflow: hidden;
  border: none;
  box-shadow: var(--shadow-lg);
  animation: riseIn .8s .2s ease both;
}
.page-hero-art img {
  display: block; width: 100%; height: 380px;
  object-fit: cover; object-position: center 55%;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  body, .hero-badge, .hero h1, .hero-sub, .hero-actions, .hero-bullets,
  .scene-card, .page-hero h1, .page-hero p, .page-hero-art { animation: none; }
  .scene-sun-glow, .scene-cloud-a, .scene-cloud-b, .scene-glare { animation: none; }
  .scene-card, .reveal { transition: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 5rem 0; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .hiw-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 4.5rem 0 4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; }
  .navbar-nav { display: none; flex-direction: column; position: absolute;
    top: 100%; right: 0; left: 0;
    background: rgba(251,251,253,.97);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    padding: 1rem; box-shadow: var(--shadow); border-bottom: 1px solid var(--border); }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; text-align: center; padding: .7rem; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .navbar-inner { position: relative; }
  .mobile-cta-bar { display: flex; }
  .float-wa, .back-to-top { display: none; }
  body { padding-bottom: 64px; }
  .calc-results { grid-template-columns: 1fr 1fr; }
  .calc-box { padding: 1.6rem; border-radius: 20px; }
  .section { padding: 4rem 0; }
  .urgency-inner { padding: .65rem 1rem; flex-direction: column; gap: .4rem; }
  .urgency-close { position: static; transform: none; }
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
  background: #0A2540;
  color: #E8F1FB;
  font-size: .87rem;
  font-weight: 500;
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: .6rem 3.5rem; flex-wrap: wrap;
  position: relative; text-align: center;
}
.urgency-cta {
  color: #F5B50A; font-weight: 700; white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .15s;
}
.urgency-cta:hover { opacity: .8; }
.urgency-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  cursor: pointer; font-size: 1rem; line-height: 1; padding: .2rem .5rem;
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  transition: color .15s; font-family: inherit;
}
.urgency-close:hover { color: white; }

/* ===== CALC LEAD CAPTURE ===== */
.calc-lead-capture {
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  margin: 1.4rem 0 .5rem;
  text-align: center;
}
.calc-lead-capture .title { font-size: 1.08rem; font-weight: 700; margin-bottom: .35rem; }
.calc-lead-capture .sub { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.calc-lead-form { display: flex; gap: .65rem; flex-wrap: wrap; justify-content: center; max-width: 480px; margin: 0 auto; }
.calc-lead-form input {
  flex: 1; min-width: 130px; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--pill);
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: #fff; direction: rtl;
  transition: border-color .15s;
}
.calc-lead-form input:focus { outline: none; border-color: var(--yellow); }
.calc-lead-form button {
  background: var(--yellow-dark); color: #fff;
  border: none; border-radius: var(--pill);
  padding: .7rem 1.4rem; font-size: .9rem; font-weight: 700;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: background .18s;
}
.calc-lead-form button:hover { background: #0055BB; }
.calc-lead-success { color: var(--green); font-weight: 600; font-size: 1rem; padding: .5rem 0; margin-top: .5rem; }

/* ===== VERIFIED BADGE ===== */
.verified-badge {
  display: inline-block;
  background: #E8F5E9; color: #1F9D55;
  font-size: .72rem; font-weight: 700;
  padding: .18rem .65rem; border-radius: var(--pill);
  margin-bottom: .6rem; letter-spacing: .01em;
}
