:root {
  --ink: #0E0E0E;
  --paper: #FFFFFF;
  --solar: #FFA213;
  --solar-dark: #FFA213;
  --line: rgba(14, 14, 14, .10);
  --muted: rgba(14, 14, 14, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { scroll-behavior: smooth; }
html { scroll-padding-top: 80px; }
body { overflow-x: hidden; -webkit-font-smoothing: antialiased; }

::selection { background: var(--solar); color: var(--ink); }
:focus-visible { outline: 2px solid var(--solar); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 .5rem 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-solar, .btn-ghost, .btn-outline, .btn-outline-light, .btn-light {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 999px; font-size: .9rem; font-weight: 500;
  letter-spacing: .01em; text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
}
.btn-primary svg, .btn-solar svg, .btn-ghost svg, .btn-outline svg, .btn-outline-light svg, .btn-light svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { opacity: .85; }
.btn-solar { background: var(--solar); color: var(--ink); font-weight: 600; }
.btn-solar:hover { background: var(--solar-dark); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255, 255, 255, .12); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { opacity: .9; }

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto; height: 72px; padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; line-height: 1;
  color: inherit; flex-shrink: 0;
}
.nav-logo img { height: 34px; width: auto; display: block; transition: filter .3s var(--ease); flex-shrink: 0; }
.nav-logo-text {
  display: flex; flex-direction: column; justify-content: center; min-height: 34px;
}
.nav-logo-name {
  display: inline-block; font-size: 1rem; font-weight: 900; letter-spacing: -.02em;
  color: inherit; line-height: 1.05; white-space: nowrap;
}
.nav-links { display: none; gap: 2rem; list-style: none; margin: 0; padding: 0; font-weight: 900;}
.nav-link { font-size: .9rem; letter-spacing: .01em; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { display: none; font-size: .9rem; font-weight: 900; text-decoration: none; transition: color .2s ease; }
.nav-cta { display: none; }
.nav-toggle { background: none; border: 0; cursor: pointer; padding: .35rem; display: inline-flex; }
.nav-toggle svg { width: 26px; height: 26px; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-phone, .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* nav , transparent over hero */
.site-nav .nav-logo { color: rgba(255, 255, 255, .92); }
.site-nav .nav-logo:hover { color: #fff; }
.site-nav .nav-link, .site-nav .nav-phone { color: rgba(255, 255, 255, .85); }
.site-nav .nav-link:hover, .site-nav .nav-phone:hover { color: #fff; }
.site-nav .nav-toggle { color: #fff; }
.site-nav .nav-logo img { filter: brightness(0) invert(1); }
/* nav , scrolled */
.site-nav.scrolled { background: rgba(255, 255, 255, .85); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.site-nav.scrolled .nav-link, .site-nav.scrolled .nav-phone { color: var(--ink); }
.site-nav.scrolled .nav-link:hover, .site-nav.scrolled .nav-phone:hover { color: var(--solar); }
.site-nav.scrolled .nav-toggle { color: var(--ink); }
.site-nav.scrolled .nav-logo { color: var(--ink); }
.site-nav.scrolled .nav-logo:hover { color: var(--solar); }
.site-nav.scrolled .nav-logo img { filter: none; }
.site-nav.drawer-open {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .28);
}
.site-nav.drawer-open .nav-link, .site-nav.drawer-open .nav-phone { color: var(--ink); }
.site-nav.drawer-open .nav-link:hover, .site-nav.drawer-open .nav-phone:hover { color: var(--solar); }
.site-nav.drawer-open .nav-toggle { color: var(--ink); }
.site-nav.drawer-open .nav-logo { color: var(--ink); }
.site-nav.drawer-open .nav-logo:hover { color: var(--solar); }
.site-nav.drawer-open .nav-logo img { filter: none; }

/* drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--paper); z-index: 60; transform: translateX(100%);
  transition: transform .35s var(--ease); border-left: 1px solid var(--line);
  will-change: transform;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(10, 10, 10, .4); z-index: 55; opacity: 0; visibility: hidden; transition: opacity .3s ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 1.5rem; border-bottom: 1px solid var(--line); }
.drawer-head img { height: 30px; width: auto; }
.drawer-close { background: none; border: 0; cursor: pointer; color: var(--ink); padding: .35rem; display: inline-flex; }
.drawer-close svg { width: 26px; height: 26px; }
.drawer-links { list-style: none; margin: 0; padding: 1.5rem; display: flex; flex-direction: column; }
.drawer-actions { padding: 0 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.drawer-actions a { width: 100%; }
.mobile-link { display: block; padding: .8rem .25rem; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 500; }
.mobile-link:hover { color: var(--solar); }

/* ---------- Typography helpers ---------- */
.section-title { font-weight: 500; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); font-size: clamp(1.9rem, 4vw, 3.25rem); }
.section-subtitle { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.eyebrow, .eyebrow--dark { display: inline-block; font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--solar); }
.catalog-section .section-title, #contact .section-title { color: #fff; }

/* ---------- Hero ---------- */
.hero-section {
  position: relative; height: 100svh; min-height: 640px; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: var(--ink);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .2) 38%, rgba(10, 10, 10, .6) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 1.5rem; color: #fff; }
.hero-eyebrow { display: inline-block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--solar); margin-bottom: 1.25rem; }
.hero-title { font-weight: 500; letter-spacing: -.02em; line-height: 1.03; font-size: clamp(2.75rem, 7vw, 6rem); }
.hero-sub { margin: 1.5rem auto 0; max-width: 600px; font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.6; color: rgba(255, 255, 255, .82); }
.hero-actions { margin-top: 2.25rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); color: rgba(255, 255, 255, .7); z-index: 2; animation: bob 2s var(--ease) infinite; }
.scroll-indicator svg { width: 26px; height: 26px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-video { animation: heroZoom 22s var(--ease) forwards; }
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

/* ---------- Brand strip ---------- */
.brand-chip {
  display: flex; align-items: center; justify-content: center; font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem); letter-spacing: .02em; color: rgba(14, 14, 14, .35);
  transition: color .25s var(--ease);
}
.brand-chip:hover { color: var(--ink); }

/* ---------- Solutions ---------- */
.solution-card { min-height: 285px; padding: 2rem; border: 1px solid var(--line); border-radius: 1.25rem; background: linear-gradient(145deg, #fff, #faf7f1); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.solution-card:hover { transform: translateY(-4px); border-color: rgba(14,14,14,.22); box-shadow: 0 24px 50px -30px rgba(14,14,14,.35); }
.solution-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; color: var(--ink); background: var(--solar); }
.solution-icon svg { width: 24px; height: 24px; }
.solution-card h3 { margin-top: 1.25rem; font-size: 1.35rem; font-weight: 500; }
.solution-card p { margin-top: .65rem; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.solution-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.25rem; color: var(--ink); font-size: .85rem; font-weight: 600; text-decoration: none; }
.solution-link:hover { color: var(--solar-dark); }
.solution-link svg { width: 16px; height: 16px; }
.service-city { display: flex; flex-direction: column; gap: .35rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); }
.service-city svg { width: 18px; height: 18px; color: var(--solar); }
.service-city strong { font-weight: 600; }
.service-city span { color: var(--muted); font-size: .78rem; line-height: 1.4; }

/* ---------- Showcase / Swiper ---------- */
.showcase-swiper { position: relative; height: clamp(320px, 56vw, 680px); border-radius: 2rem; overflow: hidden; }
.showcase-mobile-frame {
  position: relative; padding: .8rem; border-radius: 2rem;
  background: linear-gradient(145deg, rgba(14, 14, 14, .96), rgba(14, 14, 14, .84));
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .35); border: 1px solid rgba(14, 14, 14, .16);
}
.showcase-mobile-frame::before {
  content: ""; position: absolute; left: 50%; top: .7rem; transform: translateX(-50%);
  width: 28%; height: .7rem; border-radius: 999px; background: rgba(255, 255, 255, .18); z-index: 3;
}
.showcase-swiper #showcase-wrapper { position: relative; display: block !important; width: 100%; height: 100%; border-radius: 1.4rem; overflow: hidden; }
.showcase-swiper .showcase-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .35s ease; border-radius: 1.4rem; overflow: hidden; background: #000; display: block; }
.showcase-swiper .showcase-slide.active { opacity: 1; pointer-events: auto; }
.showcase-swiper .showcase-slide video, .showcase-swiper .showcase-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 1.4rem; }
.showcase-swiper .showcase-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption { position: absolute; left: 0; bottom: 0; right: 0; padding: 2rem; color: #fff; font-weight: 500; font-size: 1.05rem; background: linear-gradient(0deg, rgba(10, 10, 10, .6), transparent); z-index: 2; pointer-events: none; }
.showcase-swiper .swiper-button-next, .showcase-swiper .swiper-button-prev { color: #fff; z-index: 4; }
.showcase-swiper .swiper-button-next:after, .showcase-swiper .swiper-button-prev:after { font-size: 22px; }
.showcase-swiper .swiper-pagination { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); display: flex; gap: .45rem; z-index: 4; }
.showcase-swiper .swiper-pagination-bullet { width: .66rem; height: .66rem; border-radius: 999px; background: #fff; opacity: .55; border: 0; padding: 0; cursor: pointer; }
.showcase-swiper .swiper-pagination-bullet-active { background: var(--solar); opacity: 1; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  padding: 1rem .75rem;
  text-align: center;
  border: 1px solid rgba(14, 14, 14, .08);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(248,242,232,.92));
  box-shadow: 0 18px 34px -26px rgba(14, 14, 14, .26);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 14, 14, .16);
  box-shadow: 0 24px 44px -26px rgba(14, 14, 14, .32);
}
.stat-num {
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  margin-top: .45rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .stat { min-height: 132px; padding: 1.1rem 1rem; }
}
.about-media {
  aspect-ratio: 4/3; border-radius: 2rem; overflow: hidden; border: 1px solid var(--line);
  padding: .8rem; background: linear-gradient(145deg, rgba(14, 14, 14, .96), rgba(14, 14, 14, .84));
  box-shadow: 0 28px 65px -30px rgba(0, 0, 0, .32);
}
.about-media video { width: 100%; height: 100%; object-fit: cover; border-radius: 1.4rem; display: block; }

/* ---------- Systems ---------- */
.system-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 2.5rem; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.system-card:hover { border-color: rgba(14, 14, 14, .28); transform: translateY(-3px); }
.system-icon { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; color: var(--ink); background: rgba(14, 14, 14, .04); border: 1px solid var(--line); }
.system-icon svg { width: 24px; height: 24px; }
.system-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.system-list li { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .95rem; }
.system-list li svg { width: 18px; height: 18px; }

/* ---------- Interactive catalog (dark) ---------- */
.catalog-section { position: relative; background: var(--ink); overflow: hidden; }
.catalog-search { display: flex; align-items: center; gap: .6rem; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; padding: .75rem 1.1rem; min-width: 280px; transition: border-color .2s ease; }
.catalog-search:focus-within { border-color: var(--solar); }
.catalog-search svg { width: 18px; height: 18px; }
.catalog-search input { background: transparent; border: none; outline: none; color: #fff; width: 100%; font-size: .95rem; }
.catalog-search input::placeholder { color: rgba(255, 255, 255, .45); }
.capacity-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.cap-chip { padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .75); background: transparent; font-size: .85rem; font-weight: 500; cursor: pointer; transition: all .2s ease; }
.cap-chip:hover { border-color: #fff; color: #fff; }
.cap-chip.active { background: var(--solar); color: var(--ink); border-color: var(--solar); font-weight: 600; }
.catalog-card { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; padding: 1.75rem; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.catalog-card:hover { border-color: rgba(255, 255, 255, .28); transform: translateY(-3px); }
.catalog-card h3 { color: #fff; font-weight: 500; font-size: 1.35rem; letter-spacing: -.01em; }
.catalog-card .sub { color: rgba(255, 255, 255, .5); font-size: .9rem; margin-top: .3rem; }
.catalog-starting-price { color: rgba(255, 255, 255, .65); font-size: .82rem; margin-top: .85rem; }
.catalog-starting-price strong { color: var(--solar); font-size: 1rem; font-weight: 600; }
.catalog-brands { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.catalog-brands span { font-size: .7rem; padding: .25rem .65rem; border-radius: 999px; background: rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .14); }
.tier-list { margin-top: .5rem; }
.tier-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1rem; padding: .9rem 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.tier-cap { color: #fff; font-weight: 500; }
.tier-price { color: var(--solar); font-weight: 600; font-size: 1.05rem; }
.tier-btn { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 500; padding: .45rem .85rem; border-radius: 999px; background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .25); cursor: pointer; transition: all .2s ease; }
.tier-btn:hover { border-color: var(--solar); color: var(--solar); }
.tier-btn svg { width: 14px; height: 14px; }
.catalog-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.catalog-actions button { flex: 1; min-width: 110px; font-size: .78rem; font-weight: 500; padding: .6rem .5rem; border-radius: 999px; cursor: pointer; background: transparent; color: rgba(255, 255, 255, .85); border: 1px solid rgba(255, 255, 255, .2); transition: all .2s ease; }
.catalog-actions button svg { width: 0; height: 0; }
.catalog-actions button:hover { border-color: #fff; color: #fff; }
.catalog-actions button:first-child { background: var(--solar); color: var(--ink); border-color: var(--solar); font-weight: 600; }
.catalog-actions button:first-child:hover { background: var(--solar-dark); border-color: var(--solar-dark); color: var(--ink); }
.catalog-empty { grid-column: 1/-1; text-align: center; color: rgba(255, 255, 255, .6); padding: 3rem 0; }

/* ---------- Compare table + chart ---------- */
.compare-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.compare-table th, .compare-table td { padding: 1.1rem 1rem; text-align: left; }
.compare-table thead th { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); border-bottom: 1px solid var(--line); font-weight: 500; }
.compare-table tbody tr { border-bottom: 1px solid var(--line); }
.compare-table .c-cap { font-weight: 500; color: var(--ink); }
.compare-table .c-walt { color: var(--ink); font-weight: 600; }
.compare-table .c-tata { color: rgba(14, 14, 14, .4); text-decoration: line-through; }
.compare-table .c-save { color: var(--solar); font-weight: 600; }
.compare-chart { display: flex; flex-direction: column; gap: 1.25rem; }
.bar-group .bar-cap { font-size: .85rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; }
.bar { position: relative; height: 34px; border-radius: 6px; display: flex; align-items: center; padding: 0 .75rem; font-size: .78rem; font-weight: 500; width: 0; transition: width 1s var(--ease); overflow: hidden; white-space: nowrap; }
.bar-walt { background: var(--solar); color: var(--ink); margin-bottom: .4rem; }
.bar-tata { background: rgba(14, 14, 14, .12); color: var(--ink); }
.chart-legend { display: flex; gap: 1.5rem; margin-top: .5rem; font-size: .8rem; color: var(--muted); }
.chart-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.dot { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

/* ---------- Save banner ---------- */
.save-banner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.5rem 0; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.save-text { font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.6rem); letter-spacing: -.01em; color: var(--ink); max-width: 640px; line-height: 1.35; }
.save-text span { color: var(--solar); }
@media (min-width: 900px) { .save-banner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Why choose / features ---------- */
.feature-card { background: transparent; border-top: 1px solid var(--line); padding: 1.75rem 0 0; }
.feature-icon { color: var(--ink); margin-bottom: 1rem; }
.feature-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.feature-card h3 { font-weight: 500; color: var(--ink); font-size: 1.1rem; }
.feature-card p { margin-top: .5rem; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ---------- Process ---------- */
.step-card { position: relative; background: transparent; border-top: 1px solid var(--line); padding: 1.75rem 0 0; text-align: left; }
.step-num { display: block; color: var(--solar); font-weight: 600; font-size: .8rem; letter-spacing: .1em; margin-bottom: 1rem; }
.step-icon { display: block; color: var(--ink); margin: 0 0 1rem; }
.step-icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.step-card h3 { font-weight: 500; color: var(--ink); }
.step-card p { margin-top: .5rem; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ---------- Coverage ---------- */
.branch-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.75rem; }
.branch-tag { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--ink); background: transparent; border: 1px solid var(--line); padding: .3rem .7rem; border-radius: 999px; }
.branch-tag--alt { color: var(--muted); }
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(1) contrast(.9); transition: filter .4s var(--ease); }
.map-wrap:hover iframe { filter: grayscale(0); }

/* ---------- Contact ---------- */
.contact-row { display: flex; align-items: center; gap: 1rem; color: #fff; text-decoration: none; }
.contact-row svg { width: 20px; height: 20px; color: var(--solar); flex: none; }
.contact-row div { display: flex; flex-direction: column; }
.contact-row span { font-size: .78rem; color: rgba(255, 255, 255, .55); }
.contact-row strong { font-weight: 500; }
.quote-form { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; padding: 2rem; }
.field label, .field-light label { display: block; font-size: .78rem; font-weight: 500; margin-bottom: .4rem; }
.field label { color: rgba(255, 255, 255, .75); }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; border-radius: 8px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); color: #fff; outline: none; transition: border-color .2s ease; font-size: .95rem; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .4); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--solar); }

/* ---------- Footer ---------- */
.footer-head { color: #fff; font-weight: 500; margin-bottom: 1rem; font-size: .85rem; letter-spacing: .02em; }
.footer-link { color: rgba(255, 255, 255, .6); transition: color .2s ease; text-decoration: none; }
.footer-link:hover { color: var(--solar); }

/* ---------- Floating video pop ---------- */
.floating-video-pop {
  position: fixed; right: 20px; bottom: 94px; z-index: 70; width: min(300px, calc(100vw - 24px));
  max-width: 300px; pointer-events: auto; transition: transform .25s var(--ease);
}
.floating-video-shell {
  position: relative; border-radius: 1.4rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .42); background: #000;
}
.floating-video-shell video {
  display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #000;
}
.floating-video-controls {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  display: flex; gap: .45rem; align-items: center; justify-content: center;
}
.floating-video-btn {
  width: 34px; height: 34px; border: 0; border-radius: 999px; display: grid; place-items: center;
  background: rgba(10, 10, 10, .75); color: #fff; cursor: pointer; backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .2);
}
.floating-video-btn:hover { background: rgba(10, 10, 10, .9); }
.floating-video-btn svg { width: 17px; height: 17px; }
.floating-video-pop.is-minimized {
  transform: scale(.5);
  transform-origin: bottom right;
}
.floating-video-pop.is-minimized .floating-video-shell {
  border-radius: 1rem;
}
.floating-video-pop.is-minimized #floating-video-minimize {
  display: none;
}
.floating-video-pop:not(.is-minimized) #floating-video-maximize {
  display: none;
}
@media (max-width: 640px) {
  .floating-video-pop {
    right: 12px;
    bottom: 108px;
    width: min(240px, calc(100vw - 16px));
    max-width: min(240px, calc(100vw - 16px));
  }
  .floating-video-controls {
    top: .55rem;
    right: .55rem;
    gap: .4rem;
  }
  .floating-video-btn {
    width: 32px;
    height: 32px;
  }
}

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 32px -10px rgba(18, 140, 126, .45), 0 0 0 0 rgba(37, 211, 102, .6);
  transition: transform .2s ease, opacity .2s ease, box-shadow .25s ease;
  animation: whatsappPulse 2.4s ease-out infinite;
  border: 2px solid rgba(255, 255, 255, .9);
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.03); opacity: .95; box-shadow: 0 16px 36px -10px rgba(18, 140, 126, .55), 0 0 0 0 rgba(37, 211, 102, .5); }
.whatsapp-fab svg { width: 24px; height: 24px; }
@keyframes whatsappPulse {
  0% { box-shadow: 0 14px 32px -10px rgba(18, 140, 126, .45), 0 0 0 0 rgba(37, 211, 102, .65); }
  70% { box-shadow: 0 14px 32px -10px rgba(18, 140, 126, .45), 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 32px -10px rgba(18, 140, 126, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(10, 10, 10, .55); backdrop-filter: blur(4px); }
.modal-panel { position: relative; background: var(--paper); border-radius: 16px; padding: 2.25rem; width: min(440px, 100%); border: 1px solid var(--line); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .4); animation: modalIn .3s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; background: rgba(14, 14, 14, .05); border: none; cursor: pointer; color: var(--ink); }
.modal-close:hover { background: rgba(14, 14, 14, .1); }
.modal-panel h3 { font-weight: 500; }
.field-light label { color: rgba(14, 14, 14, .7); }
.field-light input { width: 100%; padding: .75rem .9rem; border-radius: 8px; background: var(--paper); border: 1px solid var(--line); color: var(--ink); outline: none; transition: border-color .2s ease; }
.field-light input:focus { border-color: var(--solar); }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in-view { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero-video { animation: none !important; }
}
