:root {
  --blue: #0047A8;
  --blue-dark: #003080;
  --blue-deep: #001F55;
  --blue-night: #000F2B;
  --red: #F53E38;
  --red-dark: #C42E29;
  --charcoal: #535252;
  --charcoal-dark: #2A2929;
  --silver: #8A9AB8;
  --silver-light: #B8C4D8;
  --ivory: #F4F5F7;
  --white: #FFFFFF;
  --border: rgba(138,154,184,0.15);
  --border-light: rgba(138,154,184,0.08);
}



/* ══ GLOBAL HEADING OVERRIDES ══ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-tight);
  line-height: 1.1;
}
/* Display-style headings use condensed */
.sec-title, .hero-h1, .sf-hero-title, .directors-title,
.sf-section-title, .sf-cta-title, .footer-cta-band h3,
.wf-detail-title, .sf-hero-title {
  font-family: var(--font-display) !important;
  font-weight: var(--fw-black) !important;
  letter-spacing: var(--ls-tight) !important;
}
/* Italic accents in display headings */
.sec-title em, .hero-h1 em, .sf-hero-title em, .sf-cta-title em,
.footer-cta-band h3 em, .directors-title em, .sf-section-title em {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: var(--fw-black) !important;
  color: inherit;
}
/* Section labels */
.sec-label span, .sf-section-label, .directors-label,
.sf-phase-num, .sf-layer-num {
  font-family: var(--font-body) !important;
  font-weight: var(--fw-xbold) !important;
  letter-spacing: var(--ls-widest) !important;
  text-transform: uppercase !important;
}
/* Body copy */
p, .sec-body, .why-card-body, .wf-detail-text, .sf-card-desc,
.faq-a-inner, .director-bio, .lead-grid .lf span,
.prod-desc, .job-desc, .pd-body {
  font-family: var(--font-body) !important;
  font-weight: var(--fw-reg) !important;
  letter-spacing: var(--ls-normal) !important;
  line-height: 1.7 !important;
}
/* UI labels, badges, nav, tabs */
.nav-links a, .wf-tab, .faq-cat-btn, .faq-q-text,
.sidebar-item, .badge, .spec-pill, .sf-spec-pill,
.job-title, .dr-title, .data-row-title, .director-name,
.btn, .sf-cta-btn, .nav-cta, .drawer-cta {
  font-family: var(--font-body) !important;
  font-weight: var(--fw-bold) !important;
  letter-spacing: var(--ls-wide) !important;
}
/* Numeric stats — condensed bold makes numbers punch */
.wm-num, .sf-hero-stat-val, .stat-val, .hero-stat-num,
.about-stats-grid div div:first-child {
  font-family: var(--font-display) !important;
  font-weight: var(--fw-black) !important;
  letter-spacing: var(--ls-tight) !important;
}
/* Mono codes */
.reg-code, code, kbd {
  font-family: var(--font-mono) !important;
  font-weight: var(--fw-semi) !important;
  letter-spacing: 0.04em !important;
}
/* Table and comparison cells */
table, .comp-table th, .comp-table td,
.sf-compare-table th, .sf-compare-table td {
  font-family: var(--font-body) !important;
}
/* Cards and product titles */
.prod-title, .sf-card-title, .sf-phase-name, .sf-layer-name,
.dealer-name, .job-title, .why-card-title, .proc-step-title,
.wf-detail-title {
  font-family: var(--font-body) !important;
  font-weight: var(--fw-xbold) !important;
  letter-spacing: var(--ls-tight) !important;
}

/* ══ GLOBAL MOBILE & TOUCH FIXES ══ */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
a, button, input, select, textarea, [onclick], [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--charcoal-dark); overflow-x: hidden; }

/* Global text — left aligned, no forced justification */
p, .sec-body, .hero-desc, .hero-sub, .prod-desc, .pd-desc,
.about-story, .wf-text, .why-card-body, .proc-desc,
.testi-text, .fb-about, .at-detail, .job-desc, .perk-text,
.ap-text, .av-text, .team-bio, .footer-brand .fb-desc,
.director-bio { 
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-deep);
  padding: 7px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; letter-spacing: 0.05em; color: var(--silver-light);
  border-bottom: 1px solid rgba(0,71,168,0.4);
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-dot { color: var(--red); font-size: 8px; }
.topbar-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-right a {
  color: var(--silver-light); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--white); }
.topbar-toll { color: var(--red); font-weight: 600; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(to right,
    #001640 0%,
    #002070 18%,
    #0047A8 42%,
    #003585 65%,
    #001F55 82%,
    #000F2B 100%
  );
  border-bottom: 1px solid rgba(0,71,168,0.3);
  height: 82px;
  display: flex; align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  background: #ffffff;
  padding: 5px 18px 5px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.15);
  transition: box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-logo:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.nav-logo img {
  height: 54px; width: auto; display: block;
  mix-blend-mode: multiply;
}
.nav-logo:hover img { opacity: 1; }
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,10,40,0.5);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 12px 28px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 16px rgba(232,53,42,0.35) !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 6px 22px rgba(232,53,42,0.5) !important;
  transform: translateY(-1px) !important;
}

/* ── MEGA MENU DROPDOWN ── */
.nav-has-drop { position: relative; }
.nav-has-drop > a {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.nav-has-drop > a .drop-arrow {
  width: 14px; height: 14px; transition: transform 0.25s;
  flex-shrink: 0;
}
.nav-has-drop.open > a .drop-arrow { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: min(960px, 90vw);
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 20px 60px rgba(0,15,43,0.3), 0 4px 16px rgba(0,71,168,0.15);
  border-radius: 0 0 6px 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 200;
  pointer-events: none;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--blue);
}
/* Tall invisible bridge fills the gap so cursor can move freely to menu */
.mega-menu::after {
  content: '';
  position: absolute;
  top: -40px; left: -20px; right: -20px;
  height: 40px;
}
.nav-has-drop.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s, visibility 0s linear 0s;
}
.mm-col {
  padding: 28px 28px 24px;
  border-right: 1px solid rgba(0,71,168,0.1);
}
.mm-col:last-child { border-right: none; }
.mm-col-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 2px solid var(--blue);
}
.mm-col-icon {
  width: 28px; height: 28px; background: var(--red);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mm-col-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
}
.mm-items { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mm-items li { border-bottom: 1px solid rgba(0,71,168,0.07); }
.mm-items li:last-child { border-bottom: none; }
.mm-items a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--charcoal-dark); text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
  position: relative;
}
.mm-items a::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  transition: transform 0.15s;
}
.mm-items a:hover {
  color: var(--blue);
  padding-left: 4px;
}
.mm-items a:hover::before { transform: scale(1.4); }
/* Mobile: hide mega on small screens */
@media (max-width: 1100px) { .mega-menu { display: none; } }

/* ── INDIVIDUAL PRODUCT SECTIONS ── */
.prod-detail-section {
  padding: 80px 64px;
  border-top: 1px solid rgba(0,71,168,0.08);
  scroll-margin-top: 80px;
}
.prod-detail-section:nth-child(odd) { background: var(--white); }
.prod-detail-section:nth-child(even) { background: var(--ivory); }
.pd-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; max-width: 1200px; margin: 0 auto; }
.pd-layout > * { min-width: 0; }
.pd-layout.reverse { direction: rtl; }
.pd-layout.reverse > * { direction: ltr; }
.pd-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 5px 14px; margin-bottom: 14px;
  border-radius: 2px;
}
.pd-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  color: var(--blue-deep); line-height: 1.1; margin-bottom: 16px;
}
.pd-desc {
  font-size: 14.5px; line-height: 1.8; color: var(--charcoal);
  margin-bottom: 28px; max-width: 500px;
}
.pd-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px;
}
.pd-spec {
  background: rgba(0,71,168,0.04); border: 1px solid rgba(0,71,168,0.12);
  padding: 12px 16px; border-radius: 2px;
  font-size: 12px; font-weight: 600; color: var(--blue-deep);
  display: flex; align-items: center; gap: 8px;
}
.pd-spec::before { content: '✓'; color: var(--red); font-weight: 800; }
.pd-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.pd-cta-secondary {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); text-decoration: none;
  border-bottom: 2px solid var(--blue); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pd-cta-secondary:hover { color: var(--red); border-color: var(--red); }

/* Product visual illustration box */
.pd-visual {
  position: relative;
  background: var(--blue-deep);
  aspect-ratio: 1.1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-width: 0; /* prevent grid blowout */
  width: 100%;
}
.pd-visual-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,71,168,0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,71,168,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.pd-visual-art {
  position: relative; z-index: 1;
  width: 65%; height: 65%;
}
.pd-visual-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2;
  background: rgba(0,10,30,0.85); border: 1px solid rgba(0,71,168,0.4);
  padding: 10px 14px; backdrop-filter: blur(6px);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--silver-light);
}
.pd-visual-label span { color: #5B9EFF; }

@media (max-width: 1100px) {
  .prod-detail-section { padding: 60px 36px; }
  .pd-layout { grid-template-columns: 1fr; gap: 40px; }
  .pd-layout.reverse { direction: ltr; }
}
@media (max-width: 720px) {
  .prod-detail-section { padding: 50px 20px; }
  .pd-specs { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
#about { background: var(--white); scroll-margin-top: 80px; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  background: var(--blue-deep);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,71,168,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,71,168,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
/* Large decorative building illustration */
.about-building {
  position: relative; z-index: 1;
  width: 75%; height: 75%;
}
/* Accent box overlapping bottom-right */
.about-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--red);
  width: 160px; height: 120px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; z-index: 2;
}
.about-accent-box .ab-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 700; color: var(--white); line-height: 1;
}
.about-accent-box .ab-txt {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-align: center; line-height: 1.3;
}
/* Top-left label */
.about-top-label {
  position: absolute; top: -16px; left: -16px;
  background: var(--blue-deep); border: 1px solid rgba(0,71,168,0.5);
  padding: 10px 18px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #5B9EFF;
}

/* Content side */
.about-content { padding: 10px 0; }
.about-story {
  font-size: 15px; line-height: 1.85; color: var(--charcoal);
  margin-bottom: 18px;
}
.about-story strong { color: var(--blue-deep); font-weight: 700; }
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin: 36px 0;
  background: rgba(0,71,168,0.08);
}
.about-pillar {
  background: var(--ivory); padding: 22px 20px;
  border: 1px solid rgba(0,71,168,0.08);
  transition: background 0.25s, border-color 0.25s;
}
.about-pillar:hover {
  background: var(--white);
  border-color: rgba(0,71,168,0.2);
}
.ap-icon {
  font-size: 24px; margin-bottom: 10px;
}
.ap-title {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-deep); margin-bottom: 6px;
}
.ap-text {
  font-size: 12.5px; line-height: 1.65; color: var(--charcoal);
}

/* Timeline strip */
.about-timeline {
  border-left: 2px solid rgba(0,71,168,0.2);
  padding-left: 24px;
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 36px;
}
.at-item { position: relative; }
.at-item::before {
  content: '';
  position: absolute; left: -30px; top: 5px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.at-year {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  color: var(--red); text-transform: uppercase; margin-bottom: 3px;
}
.at-event {
  font-size: 13.5px; font-weight: 600; color: var(--blue-deep); margin-bottom: 2px;
}
.at-detail { font-size: 12.5px; color: var(--charcoal); line-height: 1.5; }

/* Leadership / team strip */
.about-team {
  background: var(--ivory);
  border-top: 1px solid rgba(0,71,168,0.1);
  padding: 56px 64px;
}
.about-team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 44px; background: rgba(0,71,168,0.08);
}
.team-card {
  background: var(--white); padding: 32px 24px;
  border: 1px solid rgba(0,71,168,0.06);
  text-align: center; transition: border-color 0.25s, transform 0.25s;
}
.team-card:hover { border-color: rgba(0,71,168,0.25); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue); border: 3px solid rgba(0,71,168,0.2);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.team-name { font-size: 15px; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.team-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.team-bio { font-size: 12px; line-height: 1.6; color: var(--charcoal); }

/* Value banner */
.about-values-banner {
  background: var(--blue-deep); padding: 56px 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; border-top: 3px solid var(--red);
}
.av-item {
  padding: 32px 28px; border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: flex-start;
}
.av-item:last-child { border-right: none; }
.av-icon { font-size: 28px; margin-bottom: 14px; }
.av-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.av-text { font-size: 13px; line-height: 1.65; color: var(--silver); }

@media (max-width: 1100px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .about-values-banner { grid-template-columns: 1fr 1fr; }
  .about-team { padding: 48px 36px; }
}
@media (max-width: 720px) {
  .about-team-grid { grid-template-columns: 1fr; }
  .about-values-banner { grid-template-columns: 1fr; padding: 40px 20px; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-team { padding: 40px 20px; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 93vh;
  display: flex; align-items: stretch;
  overflow: hidden;
  background: var(--blue-night);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 100% 50%, rgba(0,47,120,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(245,62,56,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #000F2B 0%, #001440 40%, #001840 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,71,168,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,71,168,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; max-width: 1400px;
  margin: 0 auto; padding: 0 64px;
  align-items: center; gap: 60px;
  padding-top: 80px; padding-bottom: 140px;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.hero-label-bar {
  width: 36px; height: 3px; background: var(--red);
}
.hero-label span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--red);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 74px);
  font-weight: 700; line-height: 1.06;
  color: var(--white); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: #5B9EFF; }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 300;
  color: var(--silver-light); margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: #8A9AB8; max-width: 480px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-red {
  background: var(--red); color: var(--white);
  padding: 14px 36px; font-size: 12.5px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(245,62,56,0.35);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost {
  color: var(--silver-light); font-size: 12.5px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(138,154,184,0.35); padding: 13px 28px; border-radius: 2px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--white); background: rgba(0,47,168,0.2); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* Hero visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-window-art {
  position: relative; width: 100%; max-width: 400px; aspect-ratio: 0.85;
}
.hw-frame {
  position: absolute; inset: 0;
  border: 2px solid rgba(0,71,168,0.5);
  animation: hwa 1s ease forwards; opacity: 0;
}
.hw-inner {
  position: absolute; inset: 16px;
  border: 1.5px solid rgba(91,158,255,0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 3fr 1fr;
  gap: 10px; padding: 10px;
  animation: hwa 1s 0.2s ease forwards; opacity: 0;
}
.hwp {
  background: linear-gradient(135deg, rgba(0,47,168,0.18) 0%, rgba(91,158,255,0.07) 100%);
  border: 1px solid rgba(91,158,255,0.12);
  position: relative; overflow: hidden;
}
.hwp::after {
  content: ''; position: absolute; top: -100%; left: -100%;
  width: 300%; height: 300%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  animation: sw 5s ease-in-out infinite;
}
.hwp.bottom { grid-column: span 2; }
.hw-handle {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 32px;
  background: var(--blue); border-radius: 4px;
  animation: hwa 1s 0.4s ease forwards; opacity: 0;
}
.hw-badge {
  position: absolute; background: rgba(0,12,35,0.92);
  border: 1px solid rgba(0,71,168,0.5);
  backdrop-filter: blur(8px);
  padding: 12px 18px; border-radius: 3px;
  animation: hwa 1s 0.8s ease forwards; opacity: 0;
}
.hw-badge.tr { top: -18px; right: -22px; }
.hw-badge.bl { bottom: -18px; left: -22px; }
.hw-badge-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hw-badge-num span { color: var(--red); }
.hw-badge-txt { font-size: 10px; letter-spacing: 0.1em; color: var(--silver); text-transform: uppercase; margin-top: 2px; }
.hw-line-h {
  position: absolute; left: 26px; right: 26px;
  height: 2px; top: calc(75% + 0px);
  background: rgba(0,71,168,0.4);
  animation: hwa 1s 0.5s ease forwards; opacity: 0;
}
@keyframes hwa { from { opacity:0; transform: scale(0.94); } to { opacity:1; transform: scale(1); } }
@keyframes sw { 0%,100%{opacity:0;transform:translate(-30%,-30%);} 50%{opacity:1;transform:translate(10%,10%);} }

/* Hero stats strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,20,50,0.85); border-top: 1px solid rgba(0,71,168,0.3);
  backdrop-filter: blur(10px); z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hs-item {
  padding: 18px 36px; border-right: 1px solid rgba(0,71,168,0.25);
  display: flex; align-items: center; gap: 14px;
}
.hs-item:last-child { border-right: none; }
.hs-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,71,168,0.2); border: 1px solid rgba(0,71,168,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hs-num { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.hs-txt { font-size: 11px; color: var(--silver); letter-spacing: 0.05em; margin-top: 2px; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--blue); overflow: hidden;
  border-top: 2px solid var(--red); border-bottom: 1px solid rgba(91,158,255,0.2);
  padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 0; animation: mq 28s linear infinite; white-space: nowrap;
}
.mq-item {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  flex-shrink: 0; padding: 0 30px;
  display: inline-flex; align-items: center; gap: 16px;
}
.mq-item::after { content: "◆"; color: var(--red); font-size: 7px; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION BASE ── */
.section-wrap { max-width: 1300px; margin: 0 auto; }
section { padding: 96px 64px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.sec-label-dash { width: 28px; height: 3px; background: var(--red); }
.sec-label span { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 56px); font-weight: 700;
  line-height: 1.1; color: var(--blue-deep); margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.sec-title em { font-style: italic; color: var(--red); }
.sec-body { font-size: 15px; line-height: 1.8; color: var(--charcoal); max-width: 540px; }

/* ── PRODUCTS ── */
#products { background: var(--white); }
.products-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(83,82,82,0.1);
}
/* Card 2 (hero-prod / Door Systems) spans full row on desktop for emphasis */
.prod-card:nth-child(2) { grid-column: span 1; }
.prod-card {
  background: var(--white); padding: 44px 34px;
  position: relative; overflow: hidden; cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  min-width: 0; /* prevent blowout */
}
.prod-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--red); transition: width 0.4s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,47,168,0.1); border-color: rgba(0,71,168,0.1); }
.prod-card:hover::after { width: 100%; }
.prod-card-bg-num {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 700;
  color: rgba(0,47,168,0.045);
  position: absolute; top: -10px; right: 18px; line-height: 1;
  pointer-events: none;
}
.prod-icon { margin-bottom: 24px; }
.prod-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--blue-deep);
  margin-bottom: 10px; line-height: 1.2;
}
.prod-desc { font-size: 13.5px; line-height: 1.75; color: var(--charcoal); margin-bottom: 20px; }
.prod-feats { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.prod-feats li {
  font-size: 12px; color: var(--charcoal); display: flex; align-items: center; gap: 9px;
}
.prod-feats li::before { content: ''; width: 14px; height: 2px; background: var(--blue); flex-shrink: 0; }
.prod-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  border-bottom: 2px solid var(--blue); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.prod-link:hover { color: var(--red); border-color: var(--red); }
.prod-card.hero-prod { background: var(--blue-deep); display: flex; flex-direction: column; justify-content: flex-start; }
.prod-card.hero-prod .prod-title { color: var(--white); }
.prod-card.hero-prod .prod-desc { color: var(--silver-light); }
.prod-card.hero-prod .prod-feats li { color: var(--silver); }
.prod-card.hero-prod .prod-feats li::before { background: #5B9EFF; }
.prod-card.hero-prod .prod-link { color: #5B9EFF; border-color: #5B9EFF; }
.prod-card.hero-prod::after { background: var(--red); }
.prod-card.hero-prod .prod-card-bg-num { color: rgba(255,255,255,0.04); }

/* ── WHY ── */
#why { background: var(--blue-night); position: relative; overflow: hidden; }
#why::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0,71,168,0.3) 0%, transparent 65%),
              radial-gradient(ellipse 30% 40% at 5% 90%, rgba(245,62,56,0.04) 0%, transparent 50%);
}
#why .sec-label span { color: #5B9EFF; }
#why .sec-title { color: var(--white); }
#why .sec-title em { color: var(--red); }
#why .sec-body { color: var(--silver-light); }
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; position: relative; z-index: 1;
}
.why-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(138,154,184,0.1); margin-top: 44px; }
.why-feat {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0); padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
}
.why-feat:hover { background: rgba(0,71,168,0.15); border-color: rgba(245,62,56,0.2); }
.wf-icon { font-size: 22px; margin-bottom: 12px; }
.wf-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.wf-text { font-size: 12.5px; line-height: 1.65; color: var(--silver); }
.why-right { padding-top: 0; }
.why-card {
  background: rgba(0,71,168,0.12); border: 1px solid rgba(0,71,168,0.35);
  padding: 40px; margin-bottom: 2px;
}
.why-card-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.why-card-body { font-size: 14px; line-height: 1.75; color: var(--silver-light); }
.why-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,71,168,0.25); margin-top: 2px; }
.why-metric {
  background: var(--blue-night); padding: 24px 20px;
  border: 1px solid rgba(0,71,168,0.25); text-align: center;
}
.wm-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; color: var(--white); line-height: 1;
}
.wm-num span { color: var(--red); }
.wm-txt { font-size: 10px; letter-spacing: 0.1em; color: var(--silver); text-transform: uppercase; margin-top: 5px; }

/* ── PROCESS ── */
#process { background: var(--ivory); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(83,82,82,0.12); margin-top: 60px;
  position: relative;
}
.proc-step {
  background: var(--white); padding: 40px 26px 32px;
  border: 1px solid transparent; transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.proc-step:hover { border-color: rgba(0,71,168,0.2); transform: translateY(-3px); }
.proc-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,71,168,0.3);
}
.proc-connector {
  position: absolute; top: 62px;
  left: 50%; right: -50%; height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(0,71,168,0.1));
  pointer-events: none;
}
.proc-step:last-child .proc-connector { display: none; }
.proc-title { font-size: 16px; font-weight: 700; color: var(--blue-deep); margin-bottom: 10px; }
.proc-desc { font-size: 13px; line-height: 1.7; color: var(--charcoal); }

/* ── GALLERY ── */
#gallery { background: var(--white); padding-bottom: 120px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px; margin-top: 60px;
}
.gal-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gal-item:first-child { grid-row: span 2; }
.gal-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
.gal-item:hover .gal-bg { transform: scale(1.06); }
/* CSS architectural renders */
.gi1 .gal-bg { background: linear-gradient(135deg, #000F2B 0%, #001F55 35%, #0047A8 70%, #1464C8 100%); }
.gi2 .gal-bg { background: linear-gradient(145deg, #001030 0%, #003080 50%, #0047A8 100%); }
.gi3 .gal-bg { background: linear-gradient(135deg, #0A0A0A 0%, #1a1a3a 50%, #0047A8 100%); }
.gi4 .gal-bg { background: linear-gradient(160deg, #000818 0%, #001438 40%, #002060 100%); }
.gi5 .gal-bg { background: linear-gradient(120deg, #050A20 0%, #001030 50%, #001F55 100%); }
.gal-grid-overlay {
  position: absolute; inset: 15%; border: 1.5px solid rgba(0,71,168,0.5);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 6px; padding: 6px;
}
.gg { background: rgba(255,255,255,0.06); border: 1px solid rgba(91,158,255,0.12); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(0,12,35,0.92));
  transform: translateY(100%); transition: transform 0.4s ease;
}
.gal-item:hover .gal-caption { transform: translateY(0); }
.gal-caption h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.gal-caption p { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #5B9EFF; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--blue-night); }
#testimonials .sec-label span { color: #5B9EFF; }
#testimonials .sec-title { color: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(0,71,168,0.15); margin-top: 56px;
}
.testi-card {
  background: rgba(0,20,50,0.8); border: 1px solid rgba(0,71,168,0.2);
  padding: 36px 28px; transition: background 0.3s, border-color 0.3s;
}
.testi-card:hover { background: rgba(0,71,168,0.15); border-color: rgba(245,62,56,0.2); }
.testi-stars { color: var(--red); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text {
  font-family: var(--font-display); font-size: 16px; font-style: italic;
  font-weight: 600; line-height: 1.6; color: var(--silver-light); margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--blue);
  border: 2px solid rgba(91,158,255,0.4); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-loc { font-size: 11px; color: var(--silver); letter-spacing: 0.05em; margin-top: 2px; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-items { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,71,168,0.07); border: 1px solid rgba(0,71,168,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px;
}
.c-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.c-val { font-size: 14.5px; color: var(--blue-deep); font-weight: 500; line-height: 1.5; }
.c-val a { color: var(--blue); text-decoration: none; }
.c-val a:hover { color: var(--red); }
.contact-form-box {
  background: var(--ivory); border: 1px solid rgba(83,82,82,0.12); padding: 44px 36px;
}
.cf-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 30px; border-left: 4px solid var(--red); padding-left: 16px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-field { margin-bottom: 14px; }
.cf-field label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 7px;
}
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 11px 14px;
  background: var(--white); border: 1.5px solid rgba(83,82,82,0.2);
  color: var(--charcoal-dark); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s; border-radius: 1px;
  appearance: none; -webkit-appearance: none;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--blue); }
.cf-field textarea { resize: vertical; min-height: 90px; }
.cf-submit {
  background: var(--blue); color: var(--white);
  padding: 14px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; width: 100%; font-family: var(--font-body);
  border: none; border-radius: 2px; transition: background 0.2s;
  box-shadow: 0 4px 20px rgba(0,71,168,0.25);
}
.cf-submit:hover { background: var(--blue-dark); }
.cf-note { font-size: 11px; color: var(--silver); margin-top: 12px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--blue-night);
  position: relative;
  overflow: hidden;
}
/* Subtle background pattern */
footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,71,168,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,71,168,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Pre-footer CTA banner */
.footer-cta-band {
  position: relative; z-index: 10;
  background: linear-gradient(100deg, var(--blue-dark) 0%, var(--blue) 50%, #1a6acc 100%);
  border-top: 3px solid var(--red);
  padding: 52px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.footer-cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 8px;
}
.footer-cta-band h3 em { font-style: italic; color: #FFD580; }
.footer-cta-band p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 480px; }
.footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.fca-btn-primary {
  background: var(--white); color: var(--blue);
  padding: 14px 32px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fca-btn-primary:hover { background: #FFD580; color: var(--blue-deep); }
.fca-btn-secondary {
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 13px 28px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.fca-btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Main footer body */
.footer-body {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col-block {
  padding: 52px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.footer-col-block:last-child { border-right: none; }
.footer-brand-col { padding: 52px 36px 52px 48px; }

/* Reg strip */
.footer-reg-strip {
  display: flex; flex-direction: column; gap: 5px;
  margin: 18px 0 16px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}
.footer-reg-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.frr-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.32);
  white-space: nowrap; flex-shrink: 0;
  font-family: var(--font-body);
}
.frr-val {
  font-size: 10.5px; color: rgba(255,255,255,0.55);
  text-align: right; font-family: var(--font-mono);
}

/* Address blocks */
.footer-addr-block { margin-bottom: 20px; }
.footer-hours-block { margin-bottom: 20px; }
.footer-addr-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 6px; font-family: var(--font-body);
}
.footer-addr-text {
  font-size: 12px; line-height: 1.8; color: var(--silver);
  margin: 0 0 5px; font-family: var(--font-body);
}
.footer-map-link {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-mid, #5B9EFF);
  text-decoration: none; transition: color 0.2s;
}
.footer-map-link:hover { color: var(--white); }

/* Quick links row */
.footer-quick-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px;
  margin-top: 4px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-quick-links a {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
  font-family: var(--font-body);
}
.footer-quick-links a:hover { color: var(--white); }
.footer-quick-links span { color: rgba(255,255,255,0.2); font-size: 10px; }

/* Brand col */
.fb-logo-wrap { margin-bottom: 22px; }
.fb-logo-wrap img {
  height: 52px; width: auto;
  background: var(--white); padding: 7px 16px; border-radius: 3px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  display: block;
}
.fb-tagline {
  font-family: var(--font-display);
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.fb-about {
  font-size: 13px; line-height: 1.75;
  color: var(--silver); margin-bottom: 24px;
}
.fb-contact-strip {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
}
.fb-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--silver-light);
  text-decoration: none; transition: color 0.2s;
}
.fb-contact-item:hover { color: var(--white); }
.fb-contact-item svg { flex-shrink: 0; opacity: 0.6; }
.fb-group-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(91,158,255,0.2);
  background: rgba(0,71,168,0.15);
  padding: 7px 14px; border-radius: 2px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #5B9EFF;
}
.fb-group-badge span { color: var(--white); }

/* Link columns */
.fc-head {
  font-size: 10px; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 6px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,62,56,0.25);
}
.fc-links { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.fc-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.fc-links li:last-child { border-bottom: none; }
.fc-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--silver);
  text-decoration: none; padding: 9px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.fc-links a::before {
  content: '';
  width: 0; height: 1px; background: var(--red);
  transition: width 0.2s; flex-shrink: 0;
}
.fc-links a:hover { color: var(--white); padding-left: 6px; }
.fc-links a:hover::before { width: 12px; }

/* Social row */
.footer-social {
  display: flex; gap: 10px; margin-top: 8px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); text-decoration: none; font-size: 14px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

/* Bottom bar */
.footer-bottom-bar {
  position: relative; z-index: 1;
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
.footer-copy strong { color: var(--red); font-weight: 700; }
.footer-legal { display: flex; gap: 24px; align-items: center; }
.footer-legal a {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }
.footer-legal-sep { color: rgba(255,255,255,0.15); font-size: 10px; }

/* ── FLOATING BUTTONS ── */
/* WhatsApp */
.btn-whatsapp {
  position: fixed; bottom: 88px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: floatIn 0.5s 0.3s ease both;
}
.btn-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.btn-whatsapp svg { width: 28px; height: 28px; }
/* Pulse ring */
.btn-whatsapp::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
/* Tooltip */
.btn-whatsapp::after {
  content: 'Chat on WhatsApp';
  position: absolute; right: 66px;
  background: rgba(0,0,0,0.85); color: #fff;
  font-size: 12px; font-weight: 600;
  white-space: nowrap; padding: 6px 12px; border-radius: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover::after { opacity: 1; }

/* Back to Top */
.btn-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); border: 2px solid rgba(91,158,255,0.3);
  box-shadow: 0 4px 20px rgba(0,71,168,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s, background 0.2s;
}
.btn-top.show { opacity: 1; visibility: visible; }
.btn-top:hover { background: var(--red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,62,56,0.4); }
.btn-top svg { width: 20px; height: 20px; color: var(--white); }
/* Tooltip */
.btn-top::after {
  content: 'Back to Top';
  position: absolute; right: 58px;
  background: rgba(0,0,0,0.85); color: #fff;
  font-size: 12px; font-weight: 600;
  white-space: nowrap; padding: 6px 12px; border-radius: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.btn-top:hover::after { opacity: 1; }

/* ══ ADMIN TABS ══ */
.admin-tab {
  padding: 10px 20px; background: transparent;
  border: none; border-bottom: 2px solid transparent;
  color: #8A9AB8; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: color 0.2s, border-color 0.2s;
}
.admin-tab.active { color: #fff; border-bottom-color: #0047A8; }
.admin-tab:hover { color: #fff; }
.admin-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 14px 18px;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.15s;
}
.admin-row:hover { background: rgba(255,255,255,0.07); }
.admin-badge-active { background: rgba(74,222,128,0.15); color: #4ade80; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(74,222,128,0.3); }
.admin-badge-inactive { background: rgba(248,113,113,0.12); color: #f87171; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(248,113,113,0.3); }
/* Dealer form layout mobile */
@media (max-width: 860px) {
  .dealer-form-layout { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  #dealer-app-form { grid-template-columns: 1fr !important; }
  #dealer-app-form > div[style*="grid-column"] { grid-column: auto !important; }
}

@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ══ SMART WHATSAPP CHAT BUBBLE ══ */

/* ══════════════════════════════════════════════
   FENSMART™ SECTION
══════════════════════════════════════════════ */
#fensmart {
  background: var(--blue-night);
  position: relative;
  overflow: hidden;
}
#fensmart::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0,71,168,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(232,53,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(0,71,168,0.18) 0%, transparent 45%);
  pointer-events: none;
}
/* Hero band */
.sf-hero {
  background: linear-gradient(135deg, #000A24 0%, #001845 40%, #003080 100%);
  border-bottom: 1px solid rgba(0,71,168,0.4);
  padding: 80px 64px 64px;
  position: relative; overflow: hidden;
}
.sf-hero::after {
  content: 'FenSmart™';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-size: clamp(80px, 12vw, 160px); font-weight: 900;
  color: rgba(255,255,255,0.02); letter-spacing: -0.04em;
  line-height: 1; white-space: nowrap; pointer-events: none;
  font-family: var(--font-body);
}
.sf-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,53,42,0.15); border: 1px solid rgba(232,53,42,0.4);
  color: #ff6b6b; font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
}
.sf-hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); animation: sf-pulse 1.8s ease-in-out infinite;
}
@keyframes sf-pulse {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)}
}
.sf-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.sf-hero-title em { font-style: italic; color: #FFD580; }
.sf-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px); color: rgba(255,255,255,0.65);
  max-width: 620px; line-height: 1.7; margin-bottom: 32px;
}
.sf-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.sf-hero-stat { }
.sf-hero-stat-val {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: #fff;
  line-height: 1;
}
.sf-hero-stat-val span { font-size: 0.6em; color: rgba(255,255,255,0.5); }
.sf-hero-stat-lbl {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}
/* Phases strip */
.sf-phases {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sf-phase {
  padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: background 0.2s;
}
.sf-phase:last-child { border-right: none; }
.sf-phase:hover, .sf-phase.active { background: rgba(0,71,168,0.12); }
.sf-phase.active { border-top: 2px solid var(--blue); }
.sf-phase-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--silver); margin-bottom: 8px;
}
.sf-phase.active .sf-phase-num { color: #5B9EFF; }
.sf-phase-name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.sf-phase-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.sf-phase-tag.entry { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.sf-phase-tag.plus { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.sf-phase-tag.elite { background: rgba(244,114,182,0.12); color: #f472b6; border: 1px solid rgba(244,114,182,0.25); }
.sf-phase-desc { font-size: 12px; color: var(--silver); line-height: 1.5; }
/* Feature cards grid */
.sf-features-wrap { padding: 64px; }
.sf-section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.3em;
  text-transform: uppercase; color: #5B9EFF; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.sf-section-label::after {
  content: ''; flex: 1; max-width: 60px; height: 1px; background: rgba(91,158,255,0.4);
}
.sf-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; color: #fff;
  margin-bottom: 40px; line-height: 1.2;
}
.sf-section-title em { font-style: italic; color: #FFD580; }
.sf-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.sf-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.sf-card:hover {
  border-color: rgba(0,71,168,0.5);
  background: rgba(0,71,168,0.08);
  transform: translateY(-4px);
}
.sf-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--sf-accent, var(--blue));
  opacity: 0; transition: opacity 0.25s;
}
.sf-card:hover::before { opacity: 1; }
.sf-card-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--sf-icon-bg, rgba(0,71,168,0.2));
  border: 1px solid var(--sf-icon-border, rgba(0,71,168,0.35));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
  transition: transform 0.25s;
}
.sf-card:hover .sf-card-icon { transform: scale(1.1); }
.sf-card-title {
  font-size: 15px; font-weight: 800; color: #fff;
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.sf-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 16px;
}
.sf-card-spec {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sf-spec-pill {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.sf-spec-pill.highlight {
  background: rgba(91,158,255,0.12); color: #5B9EFF;
  border-color: rgba(91,158,255,0.25);
}
/* Tech layers */
.sf-layers { padding: 0 64px 64px; }
.sf-layer-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.sf-layer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 20px 16px; text-align: center;
  position: relative;
}
.sf-layer-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2); text-transform: uppercase; margin-bottom: 10px;
}
.sf-layer-icon { font-size: 28px; margin-bottom: 10px; }
.sf-layer-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sf-layer-tech { font-size: 11px; color: var(--silver); line-height: 1.5; }
.sf-layer-connector {
  display: none;
}
/* Comparison table */
.sf-compare { padding: 0 64px 64px; }
.sf-compare-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
}
.sf-compare-table th, .sf-compare-table td {
  padding: 12px 16px; text-align: center; font-size: 12.5px;
}
.sf-compare-table thead tr {
  background: rgba(0,71,168,0.3); color: #fff;
}
.sf-compare-table thead th:first-child { text-align: left; }
.sf-compare-table thead th.sf-best {
  background: var(--blue); position: relative;
}
.sf-compare-table thead th.sf-best::after {
  content: '✦ FENDURA'; display: block; font-size: 9px;
  color: rgba(255,255,255,0.6); letter-spacing: 0.15em; font-weight: 600;
}
.sf-compare-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.sf-compare-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--silver); font-size: 12px;
}
.sf-compare-table tbody td.sf-best { background: rgba(0,71,168,0.12); color: #fff; font-weight: 600; }
.sf-yes { color: #4ade80; font-weight: 800; }
.sf-no  { color: rgba(255,255,255,0.2); }
.sf-partial { color: #fbbf24; }
/* CTA band */
.sf-cta {
  margin: 0 64px 64px;
  background: linear-gradient(135deg, #001640 0%, #003080 50%, #001845 100%);
  border: 1px solid rgba(0,71,168,0.4);
  border-radius: 10px; padding: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.sf-cta-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.sf-cta-title em { font-style: italic; color: #FFD580; }
.sf-cta-sub { font-size: 13px; color: rgba(255,255,255,0.55); max-width: 400px; }
.sf-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.sf-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 4px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  border: none; font-family: var(--font-body);
  transition: all 0.2s;
}
.sf-cta-btn.primary {
  background: var(--red); color: #fff;
}
.sf-cta-btn.primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.sf-cta-btn.secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.sf-cta-btn.secondary:hover { background: rgba(255,255,255,0.15); }
/* Responsive */
@media(max-width:1100px){
  .sf-layer-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:860px){
  .sf-hero, .sf-features-wrap, .sf-layers, .sf-compare, .sf-cta{padding-left:20px;padding-right:20px}
  .sf-phases{grid-template-columns:1fr}
  .sf-cards{grid-template-columns:1fr}
  .sf-layer-grid{grid-template-columns:1fr 1fr}
  .sf-cta{flex-direction:column;text-align:center}
  .sf-cta-btns{width:100%;justify-content:center}
}


/* ══ WHY FENDURA — FEATURES & BENEFITS TABS ══ */
.wf-tab-bar {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 32px 0 0; padding: 0;
}
.wf-tab {
  padding: 9px 18px; border-radius: 4px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--silver); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-body);
  transition: all 0.18s; display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.wf-tab:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.wf-tab.active {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.wf-tab-icon { font-size: 14px; }
.wf-panel { display: none; margin-top: 28px; }
.wf-panel.active { display: block; }
.wf-feat-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.wf-detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 20px;
  transition: border-color 0.2s, background 0.2s;
}
.wf-detail-card:hover {
  border-color: rgba(0,71,168,0.4);
  background: rgba(0,71,168,0.07);
}
.wf-detail-icon { font-size: 28px; margin-bottom: 12px; }
.wf-detail-title {
  font-size: 13px; font-weight: 800; color: #fff;
  margin-bottom: 6px; letter-spacing: 0.03em;
}
.wf-detail-text {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.wf-result-bar {
  margin-top: 20px; padding: 14px 18px;
  background: rgba(0,71,168,0.15);
  border: 1px solid rgba(0,71,168,0.3);
  border-radius: 6px; display: flex; align-items: center; gap: 12px;
}
.wf-result-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: #5B9EFF; flex-shrink: 0;
}
.wf-result-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
@media(max-width:860px){
  .wf-feat-detail { grid-template-columns: 1fr; }
  .wf-tab { font-size: 10px; padding: 8px 12px; }
}

/* ══ FAQ SECTION ══ */
#faq { background: var(--ivory); }
.faq-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; margin-top: 40px; align-items: start;
}
.faq-cat-list { position: sticky; top: 90px; }
.faq-cat-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 16px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; margin-bottom: 6px;
  color: var(--charcoal); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-body);
  text-align: left; transition: all 0.15s;
}
.faq-cat-btn:hover { border-color: var(--blue); color: var(--blue); }
.faq-cat-btn.active {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.faq-cat-icon { font-size: 16px; flex-shrink: 0; }
.faq-cat-count {
  margin-left: auto; font-size: 10px; font-weight: 800;
  background: rgba(0,0,0,0.08); padding: 2px 8px; border-radius: 10px;
}
.faq-cat-btn.active .faq-cat-count { background: rgba(255,255,255,0.2); }
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px; margin-bottom: 8px; overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: rgba(0,71,168,0.25); }
.faq-item.open { border-color: var(--blue); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; gap: 16px;
  background: var(--white);
}
.faq-q-text {
  font-size: 14px; font-weight: 700; color: var(--blue-deep);
  line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--blue); }
.faq-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,71,168,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.25s, background 0.15s;
  color: var(--blue);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  background: var(--white);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 13px; color: var(--charcoal); line-height: 1.7;
  border-top: 1px solid rgba(0,71,168,0.06);
}
@media(max-width:860px){
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cat-list { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .faq-cat-btn { flex: 1; min-width: 120px; margin-bottom: 0; }
  .faq-cat-count { display: none; }
}


/* ══ DIRECTORS SECTION ══ */
.directors-section {
  margin-top: 64px; padding-top: 56px;
  border-top: 1px solid rgba(0,71,168,0.12);
}
.directors-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.directors-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  color: var(--blue-deep); margin-bottom: 8px; line-height: 1.2;
}
.directors-title em { font-style: italic; color: var(--red); }
.directors-sub {
  font-size: 13px; color: var(--charcoal); max-width: 600px; line-height: 1.6; margin-bottom: 40px;
}
.directors-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width:861px){
  .directors-grid { grid-template-columns: repeat(2, 1fr); }
}
.director-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.director-card:hover {
  box-shadow: 0 12px 40px rgba(0,71,168,0.12);
  transform: translateY(-4px);
}
.director-card-top {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 60%, var(--blue) 100%);
  padding: 28px 24px 20px;
  position: relative; overflow: hidden;
}
.director-card-top::after {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.director-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900; color: #fff;
  font-family: var(--font-display);
  margin-bottom: 16px; flex-shrink: 0;
  letter-spacing: -1px;
}
.director-name {
  font-size: 17px; font-weight: 800; color: #fff;
  letter-spacing: 0.01em; margin-bottom: 4px;
}
.director-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #FFD580; margin-bottom: 4px;
}
.director-company {
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.director-card-body {
  padding: 20px 22px;
}
.director-bio {
  font-size: 13.5px; color: var(--charcoal); line-height: 1.72;
  margin-bottom: 16px; text-align: left;
}
.director-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.director-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  background: rgba(0,71,168,0.07); color: var(--blue);
  border: 1px solid rgba(0,71,168,0.15);
}
.director-contact {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.director-contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--blue); color: var(--blue);
  background: transparent; transition: all 0.15s;
}
.director-contact-btn:hover { background: var(--blue); color: #fff; }
@media(max-width:860px){
  .director-card-body { padding: 18px 20px; }
  .director-bio { font-size: 14px; }
  .director-tags { gap: 8px; }
  .director-contact { gap: 8px; }
  .director-contact-btn { flex: 1; justify-content: center; min-height: 44px; }
}

.wa-chat-wrap {
  position: fixed; bottom: 140px; right: 20px; z-index: 800;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  width: fit-content;
  pointer-events: none;
}
.wa-bubble-panel {
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  width: 280px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  pointer-events: none;
}
.wa-bubble-panel.open {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  pointer-events: all;
}
.wa-panel-head {
  background: #25D366; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.wa-panel-head-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-panel-head-av svg { width: 22px; height: 22px; }
.wa-panel-head-info { flex: 1; }
.wa-panel-head-name { font-size: 13px; font-weight: 700; color: #fff; }
.wa-panel-head-status { font-size: 11px; color: rgba(255,255,255,0.8); margin-top: 1px; }
.wa-panel-body { padding: 14px 16px; background: #f0f4f8; }
.wa-panel-msg {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: 10px 12px; font-size: 13px; color: #2a2929;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08); margin-bottom: 12px;
  line-height: 1.5;
}
.wa-quick-btns { display: flex; flex-direction: column; gap: 7px; }
.wa-quick-btn {
  display: block; width: 100%; padding: 9px 14px;
  background: #fff; border: 1.5px solid #25D366; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #128C7E; text-align: left;
  cursor: pointer; transition: background 0.15s, color 0.15s; text-decoration: none;
  font-family: var(--font-body);
}
.wa-quick-btn:hover { background: #25D366; color: #fff; }
.wa-toggle-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 0.2s, transform 0.2s;
  position: relative;
  pointer-events: all;
}
.wa-toggle-btn:hover { background: #1ebe5d; transform: scale(1.08); }
.wa-toggle-btn svg { width: 28px; height: 28px; transition: opacity 0.2s; }
.wa-toggle-btn .wa-close-icon { position: absolute; opacity: 0; }
.wa-toggle-btn.open .wa-wa-icon { opacity: 0; }
.wa-toggle-btn.open .wa-close-icon { opacity: 1; }
.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; line-height: 18px; text-align: center;
}
@media (max-width: 480px) {
  .wa-chat-wrap { bottom: 90px; right: 14px; }
  .wa-bubble-panel { width: 260px; }
}

/* ══ COMPARISON TABLE ══ */
#comparison { background: var(--blue-night); }
#comparison .sec-label span { color: #5B9EFF; }
#comparison .sec-title { color: var(--white); }
#comparison .sec-body { color: var(--silver); }
.comp-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 40px;
  /* Scroll shadow hints on mobile */
  background:
    linear-gradient(to right, white 20%, rgba(255,255,255,0)) left,
    linear-gradient(to left, white 20%, rgba(255,255,255,0)) right;
  background-attachment: local, local;
  border-radius: 8px;
}
.comp-table-scroll-hint {
  display: none; text-align: center;
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 0 0; font-family: var(--font-body);
}
.comp-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  border-radius: 8px; overflow: hidden;
}
.comp-table th, .comp-table td {
  padding: 16px 14px; text-align: center; font-size: 13px;
  vertical-align: top;
}
.comp-table thead th:first-child,
.comp-table tbody td:first-child {
  width: 30%; min-width: 110px;
}
.comp-table thead th:not(:first-child),
.comp-table tbody td:not(:first-child) {
  width: 23%;
}
.comp-table thead tr {
  background: rgba(0,71,168,0.7); color: var(--white);
}
.comp-table thead th:first-child { text-align: left; }
.comp-table thead th.ct-best {
  background: var(--blue); position: relative;
}
.comp-table thead th.ct-best::after {
  content: '✓ RECOMMENDED'; display: block;
  font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7);
  margin-top: 3px; font-weight: 600;
}
.comp-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.comp-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--silver-light);
  font-size: 13px; letter-spacing: 0.04em;
}
.comp-table tbody td { color: var(--silver); }
.comp-table tbody td.ct-best { background: rgba(0,71,168,0.18); color: var(--white); font-weight: 600; }
.ct-good { color: #4ade80 !important; font-weight: 700 !important; }
.ct-bad  { color: #f87171 !important; }
.ct-mid  { color: #fbbf24 !important; }
.comp-note {
  margin-top: 20px; font-size: 12px; color: var(--silver);
  text-align: center; letter-spacing: 0.04em;
}
/* ── Comparison table mobile ── */
@media (max-width: 720px) {
  .comp-table-scroll-hint { display: block; }
  .comp-table th, .comp-table td { padding: 14px 10px; font-size: 12px; }
  .comp-table thead th.ct-best::after { font-size: 8px; }
  /* Tighter stars */
  .comp-table .ct-good, .comp-table .ct-bad, .comp-table .ct-mid {
    font-size: 11px !important;
  }
}
@media (max-width: 480px) {
  .comp-table th, .comp-table td { padding: 12px 8px; font-size: 11px; }
  .comp-table thead th:first-child,
  .comp-table tbody td:first-child { width: 28%; min-width: 90px; }
}


/* ══ DEALER LOCATOR ══ */
#dealers { background: var(--ivory); }
.dealer-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  margin-top: 40px;
}
.dealer-map-wrap {
  background: var(--white); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.dealer-map-placeholder {
  height: 380px; background: linear-gradient(135deg, #e8eef8 0%, #c2d0e8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--blue-deep); font-weight: 600;
  position: relative; cursor: pointer;
}
.dealer-map-placeholder svg { width: 48px; height: 48px; color: var(--blue); }
.dealer-map-placeholder p { font-size: 13px; color: var(--charcoal); }
.dealer-map-embed { width: 100%; height: 380px; border: none; display: block; }
.dealer-list { display: flex; flex-direction: column; gap: 16px; }
.dealer-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.dealer-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(0,71,168,0.1); }
.dealer-card.active { border-color: var(--blue); background: rgba(0,71,168,0.04); }
.dealer-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.dealer-icon svg { width: 18px; height: 18px; color: #fff; }
.dealer-info { flex: 1; }
.dealer-name { font-size: 14px; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; }
.dealer-addr { font-size: 12px; color: var(--charcoal); line-height: 1.5; margin-bottom: 6px; }
.dealer-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dealer-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 3px;
  background: rgba(0,71,168,0.08); color: var(--blue);
}
.dealer-tag.showroom { background: rgba(245,62,56,0.08); color: var(--red); }
.dealer-actions { display: flex; gap: 8px; margin-top: 10px; }
.dealer-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 3px; text-decoration: none;
  border: 1.5px solid var(--blue); color: var(--blue); background: transparent;
  transition: background 0.15s, color 0.15s; display: inline-flex; align-items: center; gap: 5px;
}
.dealer-btn:hover { background: var(--blue); color: #fff; }
.dealer-btn.primary { background: var(--blue); color: #fff; }
.dealer-btn.primary:hover { background: var(--blue-dark); }
@media (max-width: 860px) {
  .dealer-layout { grid-template-columns: 1fr; }
  .dealer-map-placeholder, .dealer-map-embed { height: 260px; }
}

/* ══ EXIT INTENT POPUP UPGRADE ══ */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 2002;
  background: rgba(0,10,30,0.88); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-overlay.open { opacity: 1; visibility: visible; }
.exit-popup {
  background: var(--white); border-radius: 10px; max-width: 500px; width: 100%;
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,30,0.5);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s;
}
.exit-popup-overlay.open .exit-popup { transform: scale(1) translateY(0); }
.exit-popup-head {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  padding: 28px 28px 24px; position: relative; text-align: center;
}
.exit-popup-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.3); }
.exit-popup-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
  text-transform: uppercase;
}
.exit-popup-head h3 { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 8px; }
.exit-popup-head p { font-size: 13px; color: rgba(255,255,255,0.75); }
.exit-popup-body { padding: 24px 28px; }
.exit-popup-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.exit-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--charcoal-dark);
}
.exit-perk-icon { color: var(--blue); font-size: 16px; }
.exit-popup-form { display: flex; flex-direction: column; gap: 10px; }
.exit-popup-form input {
  width: 100%; padding: 11px 14px; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 4px; font-size: 13px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.exit-popup-form input:focus { border-color: var(--blue); }
.exit-popup-btn {
  width: 100%; padding: 13px; background: var(--red); color: #fff;
  border: none; border-radius: 4px; font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; cursor: pointer; font-family: var(--font-body);
  transition: background 0.2s;
}
.exit-popup-btn:hover { background: var(--red-dark); }
.exit-popup-skip { text-align: center; margin-top: 10px; font-size: 11px; color: var(--silver); cursor: pointer; }
.exit-popup-skip:hover { color: var(--charcoal); }

/* ══ PDF BROCHURE DOWNLOAD BAR ══ */
.brochure-bar {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  padding: 20px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.brochure-bar-left { display: flex; align-items: center; gap: 16px; }
.brochure-bar-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brochure-bar-icon svg { width: 26px; height: 26px; color: #fff; }
.brochure-bar-title { font-size: 16px; font-weight: 700; color: #fff; }
.brochure-bar-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }
.brochure-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.brochure-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 4px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: 2px solid rgba(255,255,255,0.3);
  color: #fff; background: rgba(255,255,255,0.1);
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}
.brochure-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.brochure-btn.primary { background: var(--red); border-color: var(--red); }
.brochure-btn.primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.brochure-btn svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .brochure-bar { padding: 20px; flex-direction: column; align-items: flex-start; }
  .brochure-btns { width: 100%; }
  .brochure-btn { flex: 1; justify-content: center; }
}

/* ══ MOBILE NAV IMPROVEMENTS ══ */
.mobile-drawer {
  padding-top: 0 !important;
}
.drawer-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--blue-deep); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,71,168,0.3);
}
.drawer-header-logo { color: #fff; font-size: 15px; font-weight: 800; letter-spacing: 0.1em; }
.drawer-header-logo span { color: var(--red); }
.drawer-close-btn {
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background 0.15s;
}
.drawer-close-btn:hover { background: rgba(255,255,255,0.2); }
.drawer-body { padding: 8px 0 20px; overflow-y: auto; flex: 1; }
.mobile-sub li button {
  padding: 11px 28px 11px 40px !important;
  font-size: 13px !important;
}
.drawer-section-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  padding: 16px 28px 6px;
}
@media (max-width: 480px) {
  .mobile-drawer { width: 100% !important; }
}

@media (max-width: 1100px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-col-block { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer-cta-band { padding: 40px 36px; }
  .footer-bottom-bar { padding: 18px 36px; }
}
@media (max-width: 720px) {
  .footer-body { grid-template-columns: 1fr; }
  .footer-cta-band { padding: 36px 20px; flex-direction: column; }
  .footer-bottom-bar { padding: 16px 20px; flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .btn-whatsapp { bottom: 84px; right: 16px; width: 50px; height: 50px; }
  .btn-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ── LEAD CAPTURE MODAL / POPUP ── */
.lead-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,10,30,0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lead-overlay.open { opacity: 1; visibility: visible; }
.lead-modal {
  background: var(--white);
  width: 100%; max-width: 620px;
  border-top: 4px solid var(--red);
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  overflow: hidden;
  max-height: 92vh; overflow-y: auto;
}
.lead-overlay.open .lead-modal { transform: translateY(0) scale(1); }
.lead-modal-header {
  background: linear-gradient(100deg, var(--blue-deep), var(--blue));
  padding: 28px 32px 24px;
  position: relative;
}
.lead-modal-header h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.lead-modal-header h3 em { font-style: italic; color: #FFD580; }
.lead-modal-header p { font-size: 13px; color: rgba(255,255,255,0.7); }
.lead-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  color: var(--white); font-size: 18px; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lead-modal-close:hover { background: var(--red); }
.lead-modal-body { padding: 28px 32px 32px; }
.lead-trust-badges {
  display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap;
}
.lead-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,71,168,0.06); border: 1px solid rgba(0,71,168,0.15);
  padding: 5px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; color: var(--blue-deep);
  letter-spacing: 0.05em;
}
.lead-badge::before { content: '✓'; color: var(--red); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.lf-field { margin-bottom: 12px; }
.lf-field label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 6px;
}
.lf-field input, .lf-field select, .lf-field textarea {
  width: 100%; padding: 11px 14px;
  background: var(--ivory); border: 1.5px solid rgba(83,82,82,0.15);
  color: var(--charcoal-dark); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s; border-radius: 2px;
  appearance: none; -webkit-appearance: none;
}
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus {
  border-color: var(--blue); background: var(--white);
}
.lf-field textarea { resize: vertical; min-height: 80px; }
.lf-submit {
  background: var(--red); color: var(--white);
  padding: 15px; font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; width: 100%; font-family: var(--font-body);
  border: none; border-radius: 2px; transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(245,62,56,0.3); margin-top: 4px;
}
.lf-submit:hover { background: var(--red-dark); }
.lf-note { font-size: 11px; color: var(--silver); margin-top: 10px; text-align: center; }
/* Trigger button on page */
.lead-trigger-bar {
  position: relative; z-index: 960;
  background: linear-gradient(100deg, var(--red-dark), var(--red));
  padding: 14px 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lead-trigger-text { font-size: 14px; font-weight: 600; color: var(--white); }
.lead-trigger-text strong { font-size: 16px; display: block; margin-bottom: 2px; }
.btn-lead-open {
  position: relative; z-index: 970; cursor: pointer;
  background: var(--white); color: var(--red);
  padding: 12px 30px; font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
  font-family: var(--font-body);
}
.btn-lead-open:hover { background: var(--blue-deep); color: var(--white); }

/* ── CAREERS ── */
#careers { background: var(--white); scroll-margin-top: 80px; }
.careers-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 64px;
}
.careers-perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(0,71,168,0.08); margin-top: 36px;
}
.perk-card {
  background: var(--white); padding: 24px 20px;
  border: 1px solid rgba(0,71,168,0.06);
  transition: border-color 0.25s, background 0.25s;
}
.perk-card:hover { border-color: rgba(0,71,168,0.2); background: var(--ivory); }
.perk-icon { font-size: 24px; margin-bottom: 8px; }
.perk-title { font-size: 13px; font-weight: 800; color: var(--blue-deep); margin-bottom: 5px; letter-spacing: 0.04em; }
.perk-text { font-size: 12px; line-height: 1.6; color: var(--charcoal); }

/* Job listings */
.jobs-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.jobs-filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.job-tab {
  padding: 7px 18px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid rgba(0,71,168,0.2); border-radius: 2px;
  background: var(--white); color: var(--charcoal);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.job-tab.active, .job-tab:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,71,168,0.07); }
.job-card {
  background: var(--white); padding: 28px 26px;
  border: 1px solid rgba(0,71,168,0.06);
  transition: border-color 0.25s, transform 0.25s;
  position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--red); transition: width 0.3s;
}
.job-card:hover { transform: translateY(-2px); border-color: rgba(0,71,168,0.2); }
.job-card:hover::before { width: 3px; }
.job-dept {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 8px;
}
.job-title { font-size: 17px; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; }
.job-meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px;
}
.job-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--charcoal);
}
.job-meta-item svg { opacity: 0.5; flex-shrink: 0; }
.job-desc { font-size: 13px; line-height: 1.65; color: var(--charcoal); margin-bottom: 18px; }
.job-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.job-skill {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; background: rgba(0,71,168,0.07);
  border: 1px solid rgba(0,71,168,0.15); color: var(--blue-deep);
  border-radius: 2px;
}
.job-apply {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid var(--blue); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s; background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; font-family: var(--font-body);
}
.job-apply:hover { color: var(--red); border-color: var(--red); }
.job-badge-new {
  position: absolute; top: 20px; right: 20px;
  background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 2px;
}

/* Career apply modal */
.career-apply-modal .lead-modal-header {
  background: linear-gradient(100deg, #001F55, #003080);
}
.career-form-note {
  background: rgba(0,71,168,0.06); border: 1px solid rgba(0,71,168,0.15);
  padding: 12px 16px; border-radius: 2px; margin-bottom: 18px;
  font-size: 12.5px; color: var(--blue-deep); line-height: 1.6;
}

/* Open positions count */
.positions-banner {
  background: var(--ivory); border: 1px solid rgba(0,71,168,0.1);
  padding: 20px 28px; margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.positions-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700; color: var(--blue);
  line-height: 1; flex-shrink: 0;
}
.positions-num span { color: var(--red); }
.positions-text { font-size: 13px; line-height: 1.6; color: var(--charcoal); }
.positions-text strong { color: var(--blue-deep); display: block; font-size: 15px; margin-bottom: 3px; }

@media (max-width: 1100px) {
  .careers-intro { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr; }
  .lead-trigger-bar { padding: 14px 36px; }
}
@media (max-width: 720px) {
  .careers-perks { grid-template-columns: 1fr; }
  .lead-trigger-bar { padding: 14px 20px; }
  .lead-modal-header { padding: 22px 22px 18px; }
  .lead-modal-body { padding: 22px 22px 24px; }
}

/* ── PRODUCT PHOTO GALLERIES ── */
.prod-gallery {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,71,168,0.1);
}
.prod-gallery:empty { display: none; }
.prod-gallery-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.prod-gallery-head-line { width: 24px; height: 3px; background: var(--red); }
.prod-gallery-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--blue);
}
.prod-gallery-count {
  font-size: 10px; font-weight: 700; color: var(--silver);
  background: rgba(0,71,168,0.08); padding: 2px 9px; border-radius: 10px;
}
/* Masonry-style responsive grid */
.prod-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.prod-gallery-grid .pg-item {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/3; background: var(--blue-deep);
  cursor: pointer;
}
.prod-gallery-grid .pg-item:first-child {
  grid-column: span 2; aspect-ratio: 16/9;
}
.prod-gallery-grid .pg-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.prod-gallery-grid .pg-item:hover img { transform: scale(1.05); }
.prod-gallery-grid .pg-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,10,30,0.65));
  opacity: 0; transition: opacity 0.3s;
}
.prod-gallery-grid .pg-item:hover .pg-item-overlay { opacity: 1; }
.prod-gallery-grid .pg-item-caption {
  position: absolute; bottom: 10px; left: 12px; right: 12px;
  font-size: 11px; font-weight: 600; color: var(--white);
  letter-spacing: 0.05em; opacity: 0; transition: opacity 0.3s;
}
.prod-gallery-grid .pg-item:hover .pg-item-caption { opacity: 1; }

/* Lightbox */
.pg-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,5,15,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.pg-lightbox.open { opacity: 1; visibility: visible; }
.pg-lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.pg-lb-close {
  position: absolute; top: 20px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pg-lb-close:hover { background: var(--red); }
.pg-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none;
  color: white; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pg-lb-nav:hover { background: var(--blue); }
.pg-lb-prev { left: 20px; }
.pg-lb-next { right: 20px; }
.pg-lb-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

@media (max-width: 720px) {
  .prod-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .prod-gallery-grid .pg-item:first-child { grid-column: span 2; }
}

/* ── ABOUT TIMELINE & STATS ── */
.about-timeline-layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,71,168,0.08);
}

/* ── PROD GALLERY on dark sections ── */
#gallery-prod-sliding-doors .prod-gallery-head-line { background: #5B9EFF; }
#gallery-prod-sliding-doors .prod-gallery-label { color: #5B9EFF; }
#gallery-prod-sliding-doors .prod-gallery-count { background: rgba(91,158,255,0.15); color: #5B9EFF; }

/* ── SECTION WRAP full bleed safety ── */
.section-wrap { max-width: 1300px; margin: 0 auto; width: 100%; }

/* ── TOPBAR DOT fix — 8px is fine but ensure it doesn't cause reflow ── */
.topbar-dot { font-size: 8px; line-height: 1; flex-shrink: 0; }

/* ── HERO min-height fix for very short screens (landscape mobile) ── */
@media (max-height: 500px) and (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 32px 20px 120px; }
}

/* ── TOUCH ACTION: ensure all clickable areas have pointer ── */
.prod-card, .why-feat, .proc-step, .gal-item, .testi-card,
.job-card, .perk-card, .about-pillar { cursor: default; }
.prod-link, .job-apply, .nav-cta, .btn-red, .btn-ghost { cursor: pointer; }

/* ── SAFE AREA for notched phones (iPhone X+) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .hero-strip { padding-bottom: env(safe-area-inset-bottom); }
  footer .footer-bottom-bar { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .btn-whatsapp { bottom: calc(82px + env(safe-area-inset-bottom)); }
  .btn-top { bottom: calc(20px + env(safe-area-inset-bottom)); }
}

/* ── RESPONSIVE FIXES for new classes ── */
@media (max-width: 1100px) {
  .about-timeline-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .about-timeline-layout { margin-top: 48px; gap: 36px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-grid > div { padding: 20px 14px !important; }
  .about-stats-grid > div > div:first-child { font-size: 36px !important; }
}

/* ── PRODUCT DETAIL SECTION - dark bg gallery fix ── */
#prod-sliding-doors .prod-gallery { border-top-color: rgba(91,158,255,0.2); }

/* ── SCROLL REVEAL ── */
section[id], div[id^="prod-"] { scroll-margin-top: 80px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; } .rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────────────
   MOBILE-FIRST RESPONSIVE SYSTEM
   Base = mobile → scale up to desktop
───────────────────────────────────────────────────── */

/* ══ NAV HAMBURGER ══ */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:active { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ MOBILE DRAWER ══ */
.mobile-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100dvh;
  background: var(--blue-night);
  border-left: 2px solid rgba(0,71,168,0.3);
  z-index: 1050; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: right 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  /* Prevent content jump */
  will-change: right;
}
.mobile-drawer.open { right: 0; }
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1040; backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-overlay.open { opacity: 1; }
body.drawer-open { overflow: hidden; }
/* Hide floaters when drawer open */
body.drawer-open .wa-chat-wrap,
body.drawer-open .btn-top { display: none !important; }

/* Drawer items */
.mobile-drawer ul { list-style: none; padding: 0 0 8px; margin: 0; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-drawer ul li a,
.mobile-drawer ul li button {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 52px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none;
  background: none; border: none; width: 100%; cursor: pointer;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s, color 0.15s;
}
.mobile-drawer ul li a:active,
.mobile-drawer ul li button:active {
  background: rgba(0,71,168,0.25); color: var(--white);
}

/* Mobile submenu */
.mobile-sub {
  display: none; overflow: hidden;
  background: rgba(0,0,0,0.25);
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-sub.open { display: block; max-height: 800px; }
.mobile-sub-head {
  font-size: 9px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red);
  padding: 12px 24px 4px 36px;
  font-family: var(--font-body);
}
.mobile-sub li a {
  padding: 0 24px 0 36px !important; height: 44px !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 0.03em !important; text-transform: none !important;
  color: rgba(255,255,255,0.65) !important;
}
.mobile-sub li a::before { content: '›'; margin-right: 8px; color: var(--red); font-size: 14px; }

/* Drawer header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 64px; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}
.drawer-header-logo { color: #fff; font-size: 15px; font-weight: 900; letter-spacing: 0.12em; font-family: var(--font-display); }
.drawer-header-logo span { color: var(--red); }
.drawer-close-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: none;
  color: rgba(255,255,255,0.7); font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s;
}
.drawer-close-btn:active { background: rgba(255,255,255,0.15); }

.drawer-section-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  padding: 16px 24px 8px; font-family: var(--font-body);
}
.drawer-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* Drawer CTA */
.drawer-cta {
  display: flex; align-items: center; justify-content: center;
  margin: 4px 16px 8px; padding: 0 16px; height: 50px;
  background: var(--red); color: var(--white) !important;
  font-weight: 800 !important; font-size: 12px !important;
  border-radius: 4px; letter-spacing: 0.12em !important;
  text-decoration: none; text-transform: uppercase;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.drawer-cta:active { background: var(--red-dark) !important; }

/* Drawer contact strip */
.drawer-contact-strip {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 4px;
}
.drawer-contact-strip a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none;
  font-family: var(--font-body); min-height: 28px;
  -webkit-tap-highlight-color: transparent;
}
.drawer-contact-strip a:active { color: var(--white); }

/* ══ TOPBAR MOBILE ══ */
.topbar { display: flex; align-items: center; justify-content: space-between; }

/* ══ NAV HEIGHT VARS ══ */
:root { --nav-h: 70px; }
@media (max-width: 720px) { :root { --nav-h: 60px; } }

/* ══════════════════════════════════════════════
   TABLET BREAKPOINT ≤1100px
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links, .nav-actions .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mega-menu { display: none !important; }

  /* Topbar */
  .topbar { padding: 7px 20px; font-size: 11px; }
  .topbar-right span:last-child { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; padding: 56px 36px 180px; }
  .hero-visual { display: none; }
  .hero-strip { grid-template-columns: repeat(2,1fr); }

  /* Sections */
  section { padding: 72px 36px; }
  .section-wrap { padding: 0; }

  /* About */
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-values-banner { grid-template-columns: 1fr 1fr; }

  /* Products */
  .products-head { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .prod-card { grid-column: span 1 !important; }
  .prod-card.hero-prod { grid-column: span 2 !important; }
  .pd-layout { grid-template-columns: 1fr; gap: 40px; }
  .pd-layout.reverse { direction: ltr; }
  .prod-detail-section { padding: 60px 36px; }

  /* Why */
  .why-layout { grid-template-columns: 1fr; }
  .why-right { display: none; }
  .why-feats { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-item:first-child { grid-row: auto; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Careers */
  .careers-intro { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .lf-row { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* FenSmart */
  .sf-features-wrap { padding: 48px 36px; }
  .sf-layers { padding: 0 36px 48px; }
  .sf-compare { padding: 0 36px 48px; }
  .sf-cta { margin: 0 36px 48px; flex-direction: column; text-align: center; }
  .sf-cta-btns { width: 100%; justify-content: center; }

  /* Dealer */
  .dealer-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-col-block { border-bottom: 1px solid rgba(255,255,255,0.06); border-right: none; }
  .footer-brand-col { grid-column: 1 / -1; padding: 40px 32px; }
  .footer-cta-band { padding: 40px 36px; }
  .footer-bottom-bar { padding: 18px 36px; }
  .lead-trigger-bar { padding: 14px 36px; }

  /* Touch */
  a, button, [onclick], label, select, input { touch-action: manipulation; }
  a, button { -webkit-tap-highlight-color: transparent; }
}

/* ══════════════════════════════════════════════
   MOBILE ≤720px
══════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Base */
  section { padding: 52px 18px; }
  .prod-detail-section { padding: 48px 18px; }

  /* Topbar — slim on mobile */
  .topbar { padding: 6px 14px; font-size: 10.5px; }
  .topbar-right { gap: 8px; }
  .topbar-right a:not(:first-child), .topbar-right span { display: none; }
  .topbar-left span:last-child, .topbar-left .topbar-dot:last-of-type { display: none; }

  /* Nav */
  nav { padding: 0 14px; height: 60px; }
  .nav-logo img { height: 30px; }
  .nav-logo { padding: 5px 10px 5px 7px; }

  /* Hero */
  .hero-inner { padding: 40px 18px 160px; }
  .hero-h1 { font-size: clamp(32px, 9vw, 46px); }
  .hero-sub { font-size: 15px; }
  .hero-desc { font-size: 13.5px; line-height: 1.65; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-red, .btn-ghost { width: 100%; justify-content: center; padding: 15px 20px; min-height: 50px; box-sizing: border-box; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hs-item { padding: 12px 14px; gap: 8px; }
  .hs-num { font-size: 16px; }
  .hs-txt { font-size: 9.5px; }

  /* Marquee */
  .marquee-wrap { padding: 8px 0; }

  /* Section titles */
  .sec-title { font-size: clamp(26px, 8vw, 38px); }
  .sec-body { font-size: 14px; }

  /* About */
  .about-values-banner { grid-template-columns: 1fr; padding: 36px 18px; }
  .about-pillars { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .prod-card, .prod-card.hero-prod { grid-column: span 1 !important; padding: 26px 18px; }
  .prod-card-actions { flex-wrap: wrap; gap: 10px; }
  .prod-card-actions .btn-red,
  .prod-card-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Product detail */
  .pd-specs { grid-template-columns: 1fr; }
  .pd-visual { display: none; }
  .pd-title { font-size: 24px; }
  .pd-cta-row { flex-direction: column; align-items: stretch; }
  .pd-cta-row .btn-red, .pd-cta-row .btn-ghost { width: 100%; text-align: center; justify-content: center; }
  .prod-gallery-grid { grid-template-columns: 1fr 1fr !important; }

  /* Why */
  .why-feats { grid-template-columns: 1fr; }
  .wf-tabs { gap: 6px; }
  .wf-tab { padding: 8px 14px; font-size: 11px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .proc-connector { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item { min-height: 200px; }
  .gal-caption { transform: translateY(0) !important; background: rgba(0,0,0,0.6); }

  /* Testimonials */
  .testi-card { padding: 26px 18px; }

  /* FAQ */
  .faq-cats { gap: 6px; flex-wrap: wrap; }
  .faq-cat-btn { padding: 8px 14px; font-size: 11px; }
  .faq-q-text { font-size: 13px; }
  .faq-a-inner { font-size: 13px; }

  /* FenSmart */
  .sf-hero { padding: 48px 18px 36px; }
  .sf-hero-stats { flex-wrap: wrap; gap: 16px; }
  .sf-cards { grid-template-columns: 1fr; }
  .sf-phases { grid-template-columns: 1fr; }
  .sf-layer-grid { grid-template-columns: 1fr 1fr; }
  .sf-tiers { grid-template-columns: 1fr; }
  .sf-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Comparison table */
  .comp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comp-table { min-width: 540px; }

  /* Contact */
  .contact-form-box { padding: 26px 18px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-title { font-size: 20px; }
  .cf-submit { width: 100%; padding: 15px; min-height: 50px; }

  /* Careers */
  .jobs-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .jobs-filter-tabs { width: 100%; overflow-x: auto; }
  .job-tab { flex-shrink: 0; }
  .job-card { padding: 20px 16px; }
  .job-title { font-size: 14px; }
  .job-card-actions { flex-direction: column; gap: 8px; }
  .job-apply { width: 100%; text-align: center; justify-content: center; min-height: 44px; }
  .lf-row { grid-template-columns: 1fr; }
  .careers-perks { grid-template-columns: 1fr; }
  .positions-banner { flex-direction: column; gap: 10px; text-align: center; }

  /* Trigger bar */
  .lead-trigger-bar { padding: 16px 18px; flex-direction: column; gap: 12px; text-align: center; }
  .btn-lead-open { width: 100%; justify-content: center; min-height: 48px; }

  /* Lead modal */
  .lead-overlay { padding: 10px; align-items: flex-end; }
  .lead-modal { max-height: 94dvh; border-radius: 12px 12px 0 0; }
  .lead-modal-header { padding: 20px 18px 16px; }
  .lead-modal-header h3 { font-size: 18px; }
  .lead-modal-body { padding: 18px 18px 20px; }
  .lf-row { grid-template-columns: 1fr; gap: 10px; }
  .lf-submit { font-size: 13px; padding: 15px; min-height: 50px; width: 100%; }
  .lead-trust-badges { gap: 6px; flex-wrap: wrap; }
  .lead-badge { font-size: 10px; }

  /* Dealer */
  .dealer-map-placeholder, .dealer-map-embed { height: 240px; }
  .dealer-card { padding: 18px; }
  .become-dealer-form .lf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr; }
  .footer-brand-col { padding: 36px 20px; }
  .footer-col-block { padding: 32px 20px; }
  .footer-cta-band { padding: 28px 18px; flex-direction: column; text-align: center; gap: 20px; }
  .footer-cta-actions { flex-direction: column; width: 100%; }
  .fca-btn-primary, .fca-btn-secondary { text-align: center; padding: 14px; min-height: 48px; }
  .footer-bottom-bar { padding: 16px 18px; flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-reg-strip { font-size: 10px; }
  .frr-val { font-size: 10px; }
  .fb-contact-strip { gap: 8px; }
  .footer-addr-block { margin-bottom: 16px; }

  /* Floating buttons — above safe area */
  .btn-whatsapp { bottom: 76px; right: 14px; width: 50px; height: 50px; }
  .btn-top { bottom: 18px; right: 14px; width: 44px; height: 44px; font-size: 20px; }
  .wa-chat-wrap { bottom: 80px; right: 14px; }
}

/* ══════════════════════════════════════════════
   SMALL MOBILE ≤480px
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Even tighter padding */
  section { padding: 44px 16px; }

  /* Hero */
  .hero-inner { padding: 36px 16px 150px; }
  .hero-h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hs-item { padding: 10px 10px; }

  /* Products gallery grid */
  .prod-gallery-grid { grid-template-columns: 1fr !important; }

  /* FenSmart layer grid */
  .sf-layer-grid { grid-template-columns: 1fr !important; }

  /* Drawer width full */
  .mobile-drawer { width: 100%; }

  /* Lead modal full screen on small */
  .lead-modal { border-radius: 8px 8px 0 0; }
}

/* ══════════════════════════════════════════════
   EXTRA SMALL ≤390px — iPhone SE, small Androids
══════════════════════════════════════════════ */
@media (max-width: 390px) {
  section { padding: 40px 14px; }
  .hero-inner { padding: 32px 14px 140px; }
  .hero-h1 { font-size: 28px; }
  .nav-logo img { height: 26px; }
  .nav-logo { padding: 4px 8px; }
  .prod-card { padding: 22px 14px; }
  .job-card { padding: 18px 14px; }
  .footer-col-block, .footer-brand-col { padding: 28px 14px; }
  .sec-title { font-size: 26px; }
}

/* ══════════════════════════════════════════════
   SAFE AREA (iPhone X+ notch/home bar)
══════════════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  footer .footer-bottom-bar { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .btn-whatsapp { bottom: calc(76px + env(safe-area-inset-bottom)); }
  .btn-top { bottom: calc(18px + env(safe-area-inset-bottom)); }
  .wa-chat-wrap { bottom: calc(80px + env(safe-area-inset-bottom)); }
  .lead-modal { padding-bottom: env(safe-area-inset-bottom); }
}

/* ══════════════════════════════════════════════
   LANDSCAPE MOBILE
══════════════════════════════════════════════ */
@media (max-height: 500px) and (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 28px 20px 100px; }
  .hero-h1 { font-size: 28px; }
  .mobile-drawer { height: 100vh; }
}

/* ══════════════════════════════════════════════
   GLOBAL TOUCH INTERACTION
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* All clickable elements - no tap delay */
  a, button, input, select, textarea,
  [onclick], [role="button"], label {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  /* Min touch targets */
  .nav-hamburger, .drawer-close-btn,
  .faq-q-btn, .wf-tab, .faq-cat-btn,
  .job-tab, .tab-btn { min-height: 44px; }
  .btn-red, .btn-ghost, .btn-lead-open,
  .fca-btn-primary, .fca-btn-secondary,
  .nav-cta, .drawer-cta, .cf-submit,
  .lf-submit, .sf-cta-btn { min-height: 48px; }
  /* Inputs legible on mobile */
  input, select, textarea {
    font-size: 16px !important; /* Prevents iOS zoom */
    border-radius: 4px;
  }
  /* Horizontal scroll containers */
  .comp-table-wrap, .sf-compare-table-wrap,
  .jobs-filter-tabs, .faq-cats { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Tables don't overflow */
  table { max-width: 100%; }
}
/* ── Active nav link ── */
.nav-links a.nav-active {
  color: var(--white) !important;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}
.mobile-drawer a.nav-active {
  color: var(--white) !important;
  background: rgba(0,71,168,0.2) !important;
  border-left: 3px solid var(--red);
}
