/* ===================================================================
   Flauratek — Design tokens
   =================================================================== */
:root{
  --navy-950:#0a1830;
  --navy-900:#16325a;
  --navy-800:#1d3f70;
  --navy-700:#2a5085;
  --gold:#8fb3d6;
  --gold-light:#c3d8ec;
  --gold-dark:#5f8bb3;
  --ink:#0f1524;
  --ink-soft:#4a5170;
  --paper:#ffffff;
  --paper-soft:#f6f7fb;
  --line:#e7e9f2;
  --whatsapp:#25d366;

  --font-head:'Plus Jakarta Sans', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius:16px;
  --shadow-sm:0 2px 10px rgba(11,23,57,.06);
  --shadow-md:0 12px 32px rgba(11,23,57,.12);
  --shadow-gold:0 10px 26px rgba(143,179,214,.35);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
html,body{overflow-x:clip;width:100%;}
body.lightbox-open{overflow:hidden;}
body.lightbox-open .fab-stack{display:none;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{font-family:var(--font-head);margin:0 0 .5em;line-height:1.15;color:var(--navy-900);}
p{margin:0 0 1em;color:var(--ink-soft);line-height:1.7;}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.accent{color:var(--gold);}

.eyebrow{
  display:inline-block;
  font-family:var(--font-head);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.75em;
}

.section-sub{max-width:560px;}
.section-sub.section-sub-wide{max-width:none;}
.section-head{margin-bottom:44px;}
.section-head.light h2,.section-head.light p{color:#fff;}
.section-head.light .section-sub{color:#c6cbe0;}

/* Reveal-on-scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}

/* ===================================================================
   Buttons
   =================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-head);
  font-weight:600;
  font-size:.95rem;
  padding:12px 22px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-lg{padding:15px 30px;font-size:1rem;}
.btn-block{width:100%;justify-content:center;}

.btn-primary{
  background:linear-gradient(135deg,var(--whatsapp),#1fb855);
  color:#fff;
  box-shadow:0 10px 24px rgba(37,211,102,.32);
}
.btn-primary:hover{box-shadow:0 14px 30px rgba(37,211,102,.42);}

.btn-outline{
  background:transparent;
  color:var(--navy-900);
  border-color:var(--navy-900);
}
.btn-outline:hover{background:var(--navy-900);color:#fff;}

.btn-ghost{
  color:var(--navy-900);
  padding:10px 6px;
}
.btn-ghost:hover{color:var(--gold);}

/* ===================================================================
   Header
   =================================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled{
  box-shadow:var(--shadow-sm);
  border-color:var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 24px;
}
.brand{display:flex;align-items:center;flex-shrink:0;}
.brand-logo-img{height:76px;width:auto;}
.footer-logo-img{height:84px;}

.nav{display:flex;align-items:center;gap:32px;}
.nav-link{
  font-family:var(--font-head);
  font-weight:600;
  font-size:1.02rem;
  color:var(--navy-900);
  position:relative;
  padding:4px 0;
}
.nav-link::after{
  content:'';
  position:absolute;left:0;bottom:-2px;
  width:0;height:2px;background:var(--gold);
  transition:width .25s ease;
}
.nav-link:hover::after{width:100%;}

/* Topbar */
.header-topbar{background:var(--navy-950);}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  padding:10px 24px;
}
.topbar-phone{
  display:flex;align-items:center;gap:9px;
  font-family:var(--font-head);
  font-weight:600;
  font-size:1rem;
  color:#dfe2f2;
  transition:color .2s ease;
}
.topbar-phone:hover{color:var(--gold);}
.topbar-phone svg{width:19px;height:19px;flex-shrink:0;}
.topbar-whatsapp{
  display:flex;align-items:center;gap:8px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:1rem;
  color:var(--whatsapp);
  transition:color .2s ease;
}
.topbar-whatsapp:hover{color:#3ce07e;}
.topbar-whatsapp svg{width:19px;height:19px;flex-shrink:0;}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;border:none;cursor:pointer;padding:8px;
}
.nav-toggle span{width:24px;height:2px;background:var(--navy-900);border-radius:2px;transition:.25s;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ===================================================================
   Hero
   =================================================================== */
.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(1100px 600px at 85% -10%, rgba(143,179,214,.16), transparent 60%),
             linear-gradient(180deg,var(--navy-950),var(--navy-900) 60%, var(--navy-800));
  padding:96px 0 110px;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero-copy .eyebrow{color:var(--gold-light);}
.hero h1{
  color:#fff;
  font-size:clamp(2.1rem, 4vw, 3.2rem);
  font-weight:800;
  margin-bottom:.5em;
}
.hero-sub{color:#c6cbe0;font-size:1.05rem;max-width:520px;}
.hero-cta{display:flex;flex-wrap:wrap;gap:16px;margin:28px 0 26px;}
.hero .btn-outline{color:#fff;border-color:rgba(255,255,255,.5);}
.hero .btn-outline:hover{background:#fff;color:var(--navy-900);}

.hero-tags{display:flex;flex-wrap:wrap;gap:12px;}
.hero-tags li{
  font-size:.82rem;
  font-weight:600;
  color:#e7e9f7;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  padding:7px 14px;
  border-radius:999px;
}

.hero-banner{
  position:relative;
  height:420px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}
.hero-slides{position:relative;width:100%;height:100%;}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
}
.hero-slide.is-active{opacity:1;}
.hero-slide img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-slide-label{
  position:absolute;
  left:0;right:0;bottom:0;
  padding:20px 24px 40px;
  background:linear-gradient(0deg, rgba(8,17,35,.88), transparent);
  color:#fff;
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.05rem;
}
.hero-banner-dots{
  position:absolute;
  left:0;right:0;bottom:16px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:2;
}
.hero-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  border:none;
  padding:0;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.hero-dot.is-active{background:#fff;transform:scale(1.3);}

/* ===================================================================
   Page Hero (sub-page intro banner)
   =================================================================== */
.page-hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(1100px 500px at 85% -10%, rgba(143,179,214,.16), transparent 60%),
             linear-gradient(180deg,var(--navy-950),var(--navy-900) 60%, var(--navy-800));
  padding:64px 0;
  text-align:center;
}
.page-hero .eyebrow{color:var(--gold-light);}
.page-hero h1{
  color:#fff;
  font-size:clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight:800;
  margin-bottom:.3em;
}
.page-hero .section-sub{color:#c6cbe0;max-width:640px;margin:0 auto;}

/* ===================================================================
   About
   =================================================================== */
.about{padding:72px 0;background:var(--paper);}
.about-inner{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-frame{
  aspect-ratio:1/1;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(160deg,var(--navy-800),var(--navy-950));
  box-shadow:var(--shadow-md);
}
.about-copy h2{font-size:clamp(1.6rem,3vw,2.2rem);}
.feature-chips{display:flex;flex-wrap:wrap;gap:12px;margin-top:12px;}
.feature-chips span{
  font-size:.82rem;font-weight:600;
  color:var(--navy-900);
  background:var(--paper-soft);
  border:1px solid var(--line);
  padding:8px 16px;
  border-radius:999px;
}

/* ===================================================================
   Leadership
   =================================================================== */
.leader-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:64px;
}
.leader-card{
  background:var(--paper-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
}
.leader-icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy-900),var(--navy-700));
  color:var(--gold);
  margin-bottom:18px;
}
.leader-card h3{font-size:1.1rem;margin-bottom:.4em;}
.leader-card > p:first-of-type{font-size:.92rem;}
.leader-name{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1rem;
  color:var(--navy-900);
  margin:18px 0 10px;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.leader-name span{
  display:block;
  font-family:var(--font-body);
  font-weight:500;
  font-size:.82rem;
  color:var(--ink-soft);
  margin-top:2px;
}
.leader-card > p:last-of-type{font-size:.9rem;margin-bottom:0;}

/* ===================================================================
   Footprint
   =================================================================== */
.footprint{
  position:relative;
  overflow:hidden;
  padding:72px 0;
  background:linear-gradient(180deg,var(--navy-900),var(--navy-950));
}
.footprint .container{position:relative;z-index:1;}

.footprint-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
  align-items:start;
}
.footprint-col h3{
  color:#fff;
  font-size:1.1rem;
  margin-bottom:16px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

/* Map frames (India + World) */
.map-frame{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.1);
}
.map-frame-india{aspect-ratio:1.4;}
.map-frame-world{aspect-ratio:1.4;}
.map-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.map-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.map-line{
  fill:none;
  stroke:var(--gold);
  stroke-width:.25;
  opacity:.5;
  vector-effect:non-scaling-stroke;
}
.map-line-arc{
  stroke-dasharray:2 1.4;
  animation:dashFlow 6s linear infinite;
}
@keyframes dashFlow{to{stroke-dashoffset:-34;}}

.map-marker{
  position:absolute;
  z-index:3;
  transform:translate(-50%,-50%);
  background:none;
  border:none;
  padding:10px;
  margin:-10px;
  cursor:default;
  display:flex;
  align-items:center;
  justify-content:center;
}
.marker-dot{
  position:relative;
  width:9px;height:9px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 0 rgba(143,179,214,.6);
  animation:markerBlink 2.2s ease-in-out infinite;
}
.map-marker.is-hub .marker-dot{
  width:12px;height:12px;
  background:#fff;
  box-shadow:0 0 0 0 rgba(255,255,255,.7);
  animation:markerBlinkHub 2.2s ease-in-out infinite;
}
@keyframes markerBlink{
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(143,179,214,.55);}
  50%{opacity:.55;box-shadow:0 0 0 6px rgba(143,179,214,0);}
}
@keyframes markerBlinkHub{
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(255,255,255,.6);}
  50%{opacity:.6;box-shadow:0 0 0 8px rgba(255,255,255,0);}
}
.marker-label{
  position:absolute;
  white-space:nowrap;
  font-family:var(--font-head);
  font-weight:700;
  font-size:.68rem;
  color:#fff;
  text-shadow:0 1px 4px rgba(0,0,0,.9), 0 0 8px rgba(0,0,0,.6);
  letter-spacing:.01em;
}
.map-marker.is-hub .marker-label{color:var(--gold-light);font-size:.72rem;}
.label-right{left:12px;top:50%;transform:translateY(-50%);}
.label-left{right:12px;top:50%;transform:translateY(-50%);text-align:right;}
.label-top{bottom:12px;left:50%;transform:translateX(-50%);text-align:center;}
.label-bottom{top:12px;left:50%;transform:translateX(-50%);text-align:center;}

.radar-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    repeating-radial-gradient(circle at 74.3% 38%, transparent 0, transparent 11%, rgba(143,179,214,.09) 11.4%, transparent 11.8%),
    conic-gradient(from 210deg at 74.3% 38%, rgba(143,179,214,.16), transparent 22%);
}

/* ===================================================================
   Brand Partners
   =================================================================== */
.brands{padding:64px 0;background:var(--paper);}
.brand-marquee{
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-track{
  display:flex;
  align-items:center;
  gap:16px;
  width:max-content;
  animation:brand-scroll 32s linear infinite;
}
.brand-marquee:hover .brand-track{animation-play-state:paused;}
@keyframes brand-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.brand-badge{
  flex:0 0 auto;
  width:190px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:88px;
  background:var(--paper-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px 22px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-badge:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm);border-color:var(--gold);}
.brand-logo{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}
.brand-badge-name{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.1rem;
  color:var(--ink-soft);
  letter-spacing:.02em;
  transition:color .2s ease;
}
.brand-badge:hover .brand-badge-name{color:var(--navy-900);}

/* ===================================================================
   Lifecycle Partner Value
   =================================================================== */
.lifecycle{
  padding:72px 0;
  background:linear-gradient(180deg,var(--navy-900),var(--navy-950));
  border-top:1px solid rgba(143,179,214,.25);
}
.lifecycle-table{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.lifecycle-col{
  border-radius:var(--radius);
  padding:28px 26px;
  border:1px solid rgba(255,255,255,.12);
}
.lifecycle-old{background:rgba(255,255,255,.04);}
.lifecycle-new{
  background:linear-gradient(160deg,rgba(31,157,85,.16),rgba(143,179,214,.1));
  border-color:rgba(143,179,214,.5);
}
.lifecycle-head{
  font-family:var(--font-head);
  font-weight:800;
  font-size:1.05rem;
  color:#fff;
  margin-bottom:20px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.lifecycle-row{
  display:flex;align-items:center;gap:12px;
  color:#dfe2f2;
  font-size:.92rem;
  font-weight:500;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.lifecycle-row:last-child{border-bottom:none;}
.mark{
  width:24px;height:24px;flex-shrink:0;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.8rem;
  font-weight:800;
}
.mark-x{background:rgba(255,255,255,.1);color:#9aa1c2;}
.mark-check{background:rgba(31,157,85,.25);color:#4ade80;}

/* ===================================================================
   Refurbishment
   =================================================================== */
.refurb{padding:72px 0;background:var(--paper-soft);}
.refurb-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.refurb-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
}
.refurb-icon{
  width:54px;height:54px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy-900),var(--navy-700));
  color:var(--gold);
  margin-bottom:16px;
}
.refurb-tag{
  display:inline-block;
  font-family:var(--font-head);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--navy-900);
  background:rgba(143,179,214,.16);
  padding:5px 12px;
  border-radius:999px;
  margin-bottom:12px;
}
.refurb-card h3{font-size:1.1rem;margin-bottom:.4em;}
.refurb-card p{font-size:.92rem;margin-bottom:0;}

/* ===================================================================
   Products
   =================================================================== */
.products{padding:72px 0;background:var(--paper-soft);}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.product-icon{
  width:54px;height:54px;
  display:flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,var(--navy-900),var(--navy-700));
  color:var(--gold);
  margin-bottom:18px;
}
.product-card h3{font-size:1.15rem;margin-bottom:.4em;}
.product-card p{font-size:.92rem;margin-bottom:1.2em;}
.card-link{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.85rem;
  color:var(--navy-900);
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
}
.card-link:hover{color:var(--gold);}
.about-more-link{display:inline-block;margin-top:24px;}
.card-link-light{
  font-family:var(--font-head);
  font-weight:700;
  font-size:.85rem;
  color:#fff;
  border-bottom:2px solid var(--gold);
  padding-bottom:2px;
}
.card-link-light:hover{color:var(--gold);}
.footprint-more{margin-top:36px;}

/* ===================================================================
   Gallery
   =================================================================== */
.gallery{padding:72px 0;background:var(--paper-soft);}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:190px;
  gap:16px;
}
.gallery-item{
  position:relative;
  display:block;
  width:100%;height:100%;
  padding:0;margin:0;
  border:none;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.gallery-item.span-2{grid-column:span 2;}
.gallery-item.span-2-rows{grid-row:span 2;}
.gallery-item img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.08);}
.gallery-overlay{
  position:absolute;inset:0;
  display:flex;
  align-items:flex-end;
  padding:16px;
  opacity:0;
  background:linear-gradient(180deg,rgba(7,13,33,0) 45%,rgba(7,13,33,.88) 100%);
  transition:opacity .3s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay{opacity:1;}
.gallery-label{
  color:#fff;
  font-family:var(--font-head);
  font-weight:700;
  font-size:.9rem;
  text-align:left;
}
.gallery-zoom{
  position:absolute;
  top:14px;right:14px;
  width:34px;height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.4);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;
  line-height:1;
  backdrop-filter:blur(4px);
}

/* ===================================================================
   Lightbox
   =================================================================== */
.lightbox{
  position:fixed;inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 80px;
  background:rgba(4,8,20,.94);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease;
}
.lightbox.is-open{opacity:1;visibility:visible;}
.lightbox-figure{
  margin:0;
  max-width:min(90vw,1000px);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.lightbox-img{
  max-width:100%;
  max-height:74vh;
  border-radius:12px;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  object-fit:contain;
  background:var(--navy-900);
}
.lightbox-caption{
  color:#fff;
  font-family:var(--font-head);
  font-weight:600;
  font-size:1rem;
}
.lightbox-close{
  position:absolute;
  top:22px;right:26px;
  width:44px;height:44px;
  background:none;
  border:none;
  color:#fff;
  font-size:2.2rem;
  line-height:1;
  cursor:pointer;
}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:2rem;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .2s ease;
}
.lightbox-nav:hover{background:rgba(255,255,255,.2);}
.lightbox-prev{left:20px;}
.lightbox-next{right:20px;}

/* ===================================================================
   Why Us
   =================================================================== */
.why-us{
  padding:72px 0;
  background:linear-gradient(180deg,var(--navy-900),var(--navy-950));
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.why-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:28px 24px;
}
.why-icon{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:rgba(143,179,214,.15);
  color:var(--gold);
  margin-bottom:16px;
}
.why-card h3{color:#fff;font-size:1.05rem;}
.why-card p{color:#b9bfd9;font-size:.9rem;margin-bottom:0;}

/* ===================================================================
   Contact
   =================================================================== */
.contact{padding:72px 0;background:var(--paper);}
.contact-card{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-md);
  overflow:hidden;
  margin-bottom:40px;
}
.contact-card h3{
  font-family:var(--font-head);
  font-size:1.3rem;
  font-weight:800;
  color:var(--navy-900);
  margin-bottom:24px;
}
.contact-info-panel{
  padding:48px;
  background:var(--paper-soft);
  border-left:1px solid var(--line);
}
.info-list{margin:0 0 28px;display:flex;flex-direction:column;gap:20px;}
.info-list li{display:flex;gap:14px;align-items:flex-start;}
.info-icon{
  width:40px;height:40px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:10px;
  background:#fff;
  color:var(--navy-900);
}
.info-list strong{display:block;font-family:var(--font-head);font-size:.85rem;color:var(--navy-900);margin-bottom:2px;}
.info-list a,.info-list span{font-size:.94rem;color:var(--ink-soft);}
.info-list a:hover{color:var(--gold);}

.social-row{display:flex;gap:10px;}
.social-row a{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy-900);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.social-row a:hover{background:var(--navy-900);color:#fff;transform:translateY(-3px);}

.contact-map{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.contact-map iframe{width:100%;height:420px;display:block;border:0;}

.contact-form-wrap{
  padding:48px;
}
#formSubmitBtn{
  background:linear-gradient(135deg,var(--navy-800),var(--navy-900));
  color:#fff;
  box-shadow:var(--shadow-gold);
}
#formSubmitBtn:hover{box-shadow:0 14px 30px rgba(143,179,214,.45);}
.form-row{margin-bottom:18px;}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
label{
  display:block;
  font-family:var(--font-head);
  font-weight:600;
  font-size:.82rem;
  color:var(--navy-900);
  margin-bottom:6px;
}
input,select,textarea{
  width:100%;
  font-family:var(--font-body);
  font-size:.95rem;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease;
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(143,179,214,.18);
}
textarea{resize:vertical;}
.form-note{font-size:.82rem;text-align:center;margin:14px 0 0;color:var(--ink-soft);}
.form-note.success{color:#1f9d55;font-weight:600;}
.form-note.error{color:#d13c3c;font-weight:600;}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer{
  background:var(--navy-950);
  color:#c6cbe0;
  border-top:1px solid rgba(143,179,214,.25);
  box-shadow:0 -24px 40px -32px rgba(0,0,0,.6) inset;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.3fr 1.3fr 1fr;
  gap:40px;
  padding:64px 24px 40px;
}
.footer-links-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-brand p{color:#9aa1c2;font-size:.9rem;margin-top:14px;max-width:320px;}
.footer-col h4{color:#fff;font-size:.95rem;margin-bottom:16px;}
.footer-col{display:flex;flex-direction:column;gap:10px;}
.footer-col a,.footer-col span{color:#9aa1c2;font-size:.9rem;}
.footer-col a:hover{color:var(--gold);}
.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.footer-contact-item svg{
  flex-shrink:0;
  margin-top:2px;
  color:var(--gold);
}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding:20px 24px;}
.footer-bottom .container{
  font-size:.82rem;
  color:#7c83a6;
  text-align:center;
}

/* ===================================================================
   Floating Action Buttons
   =================================================================== */
.fab-stack{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:200;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.fab{
  width:56px;height:56px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
  transition:transform .2s ease, box-shadow .2s ease;
}
.fab:hover{transform:translateY(-4px) scale(1.05);}
.fab-stack{transition:opacity .25s ease, transform .25s ease, visibility .25s ease;}
.fab-whatsapp{background:var(--whatsapp);box-shadow:0 10px 24px rgba(37,211,102,.45);}
.fab-call{
  background:var(--navy-900);
  width:48px;height:48px;
  align-self:flex-end;
  box-shadow:0 10px 24px rgba(11,23,57,.35);
}
.fab-call svg{width:22px;height:22px;}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width:1024px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-banner{height:320px;order:-1;}
  .about-inner{grid-template-columns:1fr;}
  .about-art{max-width:320px;margin:0 auto;}
  .product-grid,.why-grid{grid-template-columns:repeat(2,1fr);}
  .contact-card{grid-template-columns:1fr;}
  .contact-info-panel{border-left:none;border-top:1px solid var(--line);}
  .gallery-grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:160px;}
  .leader-grid,.refurb-grid{grid-template-columns:1fr;}
  .footprint-grid{grid-template-columns:1fr;gap:32px;}
  .lifecycle-table{grid-template-columns:1fr;}
}

@media (max-width:840px){
  .nav{display:none;}
  .header-topbar{display:none;}
  .nav-toggle{display:flex;}
  .nav.nav-open{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:74px;left:0;right:0;
    height:calc(100vh - 74px);
    height:calc(100dvh - 74px);
    background:#fff;
    padding:20px 24px 26px;
    box-shadow:var(--shadow-md);
    gap:4px;
    overflow-y:auto;
    z-index:150;
  }
  .nav.nav-open .nav-link{padding:14px 4px;border-bottom:1px solid var(--line);}
  body.nav-open-body .fab-stack{display:none;}

}

@media (max-width:640px){
  .container{padding:0 18px;}
  .header-inner{padding:12px 18px;}
  .brand-logo-img{height:50px;}
  .footer-logo-img{height:62px;}
  .product-grid,.why-grid{grid-template-columns:1fr;}
  .form-row-2{grid-template-columns:1fr;}
  .brand-badge{width:150px;height:76px;padding:14px 16px;}
  .footprint-grid{gap:24px;}
  .marker-label{font-size:.6rem;}
  .map-marker.is-hub .marker-label{font-size:.64rem;}

  /* Justify body copy on mobile so both edges line up evenly */
  p{
    text-align:justify;
    text-align-last:left;
    -webkit-hyphens:auto;
    hyphens:auto;
  }
  .eyebrow{text-align:left;}
  .contact-form-wrap,.contact-info-panel{padding:26px;}
  .contact-map iframe{height:280px;}
  .footer-inner{grid-template-columns:1fr;padding:48px 20px 30px;}
  .fab-stack{right:14px;bottom:14px;gap:10px;}
  .fab-whatsapp{width:46px;height:46px;}
  .fab-whatsapp svg{width:22px;height:22px;}
  .fab-call{width:38px;height:38px;}
  .fab-call svg{width:18px;height:18px;}
  .footer-bottom{padding:20px 24px 76px;}
  .fab-stack.is-hidden{opacity:0;visibility:hidden;pointer-events:none;transform:translateY(12px);}

  .hero-banner{height:240px;}
  .hero-slide-label{font-size:.9rem;padding:16px 18px 32px;}

  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:140px;gap:10px;}
  .gallery-item.span-2{grid-column:span 2;}
  .gallery-label{font-size:.78rem;}
  .lightbox{padding:70px 16px 24px;}
  .lightbox-nav{width:42px;height:42px;font-size:1.6rem;}
  .lightbox-prev{left:6px;}
  .lightbox-next{right:6px;}
  .lightbox-close{top:14px;right:14px;}
}
