:root {
  /* Nasare's own identity, from their logo */
  --orange: #ff5a1f;
  --amber: #ffb300;
  --n-green: #43a047;
  --n-teal: #00acc1;
  --navy: #16305c;
  --navy-deep: #0a1730;

  /* FastElectronics brand tokens — same values as the main site's
     globals.css (--primary/--signal/--violet), reused directly via
     oklch() so this page shares real brand DNA, not a re-guessed palette. */
  --fe-primary: oklch(0.52 0.17 230);
  --fe-signal: oklch(0.48 0.15 155);
  --fe-violet: oklch(0.5 0.22 292);

  --ink: #12203a;
  --muted: #5b6b85;
  --bg: #f7f8fb;
  --card: #ffffff;
  --border: rgba(22, 48, 92, 0.1);
  --radius: 18px;
  --shadow: 0 10px 30px -12px rgba(22, 48, 92, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(22, 48, 92, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Poppins", "Inter", sans-serif; margin: 0; line-height: 1.15; }
p { line-height: 1.65; color: var(--muted); }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; }

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-sm { width: 15px; height: 15px; }
/* filled-style icons (star, pin, zap, tag) look better solid */
#i-star, #i-pin, #i-zap, #i-tag { fill: currentColor; stroke: none; }

.grad-text {
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--n-green), var(--n-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 6s ease-in-out infinite alternate;
}
@keyframes shine {
  from { background-position: 0% center; }
  to { background-position: 100% center; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--n-teal);
  margin-bottom: 8px;
}

/* Scroll-reveal — visible by default (opacity:1) so content can never
   get stuck invisible if JS is slow, blocked, or errors; the animation
   is a pure enhancement layered on top via a one-shot @keyframes,
   triggered by JS adding .animate-in, never by JS removing a hidden
   state. */
.reveal { opacity: 1; }
.reveal.animate-in {
  animation: reveal-in 0.7s cubic-bezier(.16,.8,.3,1) both;
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--amber));
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(255, 90, 31, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 34px -8px rgba(255, 90, 31, 0.65); }
.btn-outline {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid transparent; }
.btn-ghost:hover { background: rgba(22, 48, 92, 0.06); }

/* ── Announcement bar ─────────────────────────────────── */
.ann-bar {
  background: linear-gradient(90deg, var(--orange) 0%, #e05700 50%, var(--amber) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
}
.ann-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ann-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.15s;
}
.ann-link:hover { opacity: 1; }

/* ── Sticky top wrapper (bar + header together) ───────── */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
}

/* ── Main header ─────────────────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 28px -8px rgba(22, 48, 92, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
}

/* Brand lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { height: 38px; width: auto; display: block; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.nav-link:hover {
  background: rgba(22, 48, 92, 0.06);
  color: var(--orange);
}
.nav-phone {
  color: var(--muted);
  font-size: 13px;
  border-left: 1px solid var(--border);
  margin-left: 8px;
  padding-left: 18px;
  border-radius: 0;
}
.nav-phone:hover { background: transparent; color: var(--orange); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.powered-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 600;
  padding: 5px 10px 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.powered-badge img { height: 14px; width: auto; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}
.nav-toggle:hover { background: rgba(22, 48, 92, 0.06); }
.bar {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive header */
@media (max-width: 900px) {
  .brand-text { display: none; }
  .nav-phone { display: none; }
}
@media (max-width: 760px) {
  .powered-badge span { display: none; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 16px 40px -8px rgba(22, 48, 92, 0.18);
    padding: 10px 16px 18px;
    z-index: 50;
  }
  .header-nav.is-open { display: flex; }
  .nav-link { font-size: 15px; padding: 12px 14px; border-radius: 10px; }
  .nav-phone {
    display: flex;
    border-left: none;
    margin-left: 0;
    padding-left: 14px;
    color: var(--navy);
  }
  .ann-bar-inner { font-size: 12px; }
}

/* Canvas fx (particle network, fills the hero section exactly) */
#fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  padding: 96px 0 68px;
}
.hero .circuit-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  inset: -20% -10%;
  background: conic-gradient(from 90deg, rgba(255,90,31,.18), rgba(67,160,71,.12), rgba(0,172,193,.18), rgba(255,90,31,.18));
  filter: blur(90px);
  opacity: 0.55;
  animation: rotate 26s linear infinite;
  pointer-events: none;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* Hero flex: text left + robot right */
.hero-flex {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-inner { flex: 1; max-width: 640px; }

/* ── Animated robot mascot ────────────────────────────── */
.robo-wrap {
  flex-shrink: 0;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.robo {
  width: 210px;
  height: auto;
  animation: robo-float 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 18px rgba(0,172,193,.45))
    drop-shadow(0 24px 40px rgba(0,0,0,.35));
}

/* Float / bob */
@keyframes robo-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  35%       { transform: translateY(-14px) rotate(-1.5deg); }
  70%       { transform: translateY(-7px) rotate(1deg); }
}

/* Eye blink — double blink pattern */
.robo-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: robo-blink 6s ease-in-out infinite;
}
@keyframes robo-blink {
  0%, 80%, 84%, 88%, 100% { transform: scaleY(1); }
  82%, 86%                 { transform: scaleY(0.05); }
}

/* Antenna beacon pulse */
.robo-beacon { animation: beacon-pulse 1.6s ease-in-out infinite alternate; }
@keyframes beacon-pulse {
  from { opacity: 0.25; }
  to   { opacity: 1; }
}

/* Left arm wave */
.robo-arm-l {
  transform-box: fill-box;
  transform-origin: 50% 0%;
  animation: arm-wave 3s ease-in-out infinite;
}
@keyframes arm-wave {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-22deg); }
  65%       { transform: rotate(14deg); }
}

/* Status LED blink */
.robo-led-g { animation: led-green 1.4s ease-in-out infinite alternate; }
@keyframes led-green {
  from { opacity: 0.35; }
  to   { opacity: 1; }
}
.robo-led-o {
  animation: led-orange 0.9s ease-in-out infinite alternate;
  animation-delay: 0.4s;
}
@keyframes led-orange {
  from { opacity: 1; }
  to   { opacity: 0.15; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .robo, .robo-eye, .robo-beacon, .robo-arm-l, .robo-led-g, .robo-led-o {
    animation: none;
  }
}

/* Hide robot on small screens — hero text needs the space */
@media (max-width: 920px) { .robo-wrap { display: none; } }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  font-size: 13px; font-weight: 500; margin-bottom: 24px; color: var(--amber);
}
.hero h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; color: #fff; }
.hero-lede { margin-top: 20px; font-size: 17px; color: rgba(255,255,255,.78); max-width: 620px; }
.hero-lede strong { color: #fff; }

.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.stars { display: flex; gap: 2px; color: var(--amber); }
.rating-text { color: rgba(255,255,255,.85); font-size: 14px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .btn-outline { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: #fff; }
.hero .btn-ghost { color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,.1); }

/* Stats strip */
.stats-strip { margin-top: -44px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 16px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.stat-icon .icon { width: 20px; height: 20px; }
.stat-icon--orange { background: rgba(255,90,31,.12); color: var(--orange); }
.stat-icon--green { background: rgba(67,160,71,.12); color: var(--n-green); }
.stat-icon--teal { background: rgba(0,172,193,.12); color: var(--n-teal); }
.stat-icon--blue { background: rgba(22,48,92,.1); color: var(--navy); }
.stat-value { font-family: "Poppins", sans-serif; font-size: 27px; font-weight: 700; color: var(--navy); margin: 0; }
.stat-value--text { font-size: 22px; }
.stat-label { font-size: 12.5px; color: var(--muted); margin: 4px 0 0; }

@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-section { padding: 80px 0 60px; }
.gallery-head { text-align: center; margin-bottom: 40px; }
.gallery-head h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; color: var(--navy); }

/* 3-col grid: feature spans rows 1-2 left col; 4 items fill right 2×2; poster spans full width row 3 */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: 210px 210px 200px;
  gap: 12px;
}
.gallery-item--feature { grid-column: 1; grid-row: 1 / 3; }
.gallery-item--wide    { grid-column: 1 / 4; grid-row: 3; }

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e2e7f0;
  text-decoration: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94);
}
/* The branding poster looks better with contain instead of cover */
.gallery-item--wide img {
  object-fit: contain;
  background: linear-gradient(135deg, #0c2045 0%, #16305c 100%);
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 23, 48, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: #fff;
}
.gallery-overlay .icon {
  width: 26px;
  height: 26px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { background: rgba(10, 23, 48, 0.42); }
.gallery-item:hover .gallery-overlay .icon { opacity: 1; transform: scale(1); }

.gallery-cta { text-align: center; margin-top: 28px; }

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px 160px;
  }
  .gallery-item--feature { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item--wide    { grid-column: 1 / 3; grid-row: 4; }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px repeat(4, 180px) 200px;
  }
  .gallery-item--feature { grid-column: 1; grid-row: 1; }
  .gallery-item--wide    { grid-column: 1; grid-row: 6; }
}

/* ── About ────────────────────────────────────────────── */
/* About */
.about { padding: 100px 0 44px; }
.about-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.about h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.about-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.about-card h3 { font-size: 16px; margin-bottom: 18px; color: var(--navy); }
.about-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; font-size: 14.5px; color: var(--ink); }
.about-list li { display: flex; align-items: center; gap: 11px; }
.about-list .icon { color: var(--orange); }

@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; } }

/* ── Stock / infinite marquee ─────────────────────────── */
.stock { padding: 80px 0 0; }
.stock-head { text-align: center; padding-bottom: 52px; }
.stock h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; color: var(--navy); }
.section-lede { max-width: 560px; margin: 12px auto 0; }

/* Quick stat strip under heading */
.stock-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stock-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stock-stat strong {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stock-stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stock-stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  align-self: center;
}

/* Marquee band — full-width dark strip */
.marquee-band {
  background: var(--navy-deep);
  padding: 36px 0 38px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
/* Soft fade on left & right edges */
.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep) 20%, transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-deep) 20%, transparent);
}

/* Each row wrapper clips overflow */
.marquee-outer { overflow: hidden; }

/* Scrolling track */
.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-fwd 38s linear infinite;
}
.marquee-track.marquee-reverse { animation: marquee-rev 30s linear infinite; }
.marquee-track.marquee-slow   { animation: marquee-fwd 48s linear infinite; }

@keyframes marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Pause on hover (whole band) */
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .marquee-track.marquee-reverse,
  .marquee-track.marquee-slow { animation: none; }
}

/* Individual tag pills */
.m-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.m-tag:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
}
.m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}

/* Accent variants */
.m-tag.m-orange {
  background: rgba(255,90,31,.18);
  border-color: rgba(255,90,31,.35);
  color: #ffb07a;
}
.m-tag.m-orange .m-dot { background: var(--orange); opacity: 0.8; }
.m-tag.m-teal {
  background: rgba(0,172,193,.15);
  border-color: rgba(0,172,193,.3);
  color: #4dd9ec;
}
.m-tag.m-teal .m-dot { background: var(--n-teal); opacity: 0.8; }
.m-tag.m-green {
  background: rgba(67,160,71,.14);
  border-color: rgba(67,160,71,.3);
  color: #81c784;
}
.m-tag.m-green .m-dot { background: var(--n-green); opacity: 0.8; }

.center-cta {
  text-align: center;
  padding: 52px 0 80px;
}

/* Why section */
.why { padding: 68px 0; background: linear-gradient(180deg, transparent, rgba(22,48,92,.04) 20%, rgba(22,48,92,.04) 80%, transparent); }
.why-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.why h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; color: var(--navy); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,172,193,.12); color: var(--n-teal); margin-bottom: 12px;
}
.why-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: 13.5px; margin: 0; }

@media (max-width: 860px) { .why-inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* Visit section */
.visit { padding: 68px 0 100px; }
.visit-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: stretch; }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 360px; background: #e8ecf3; }
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.visit-details { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; display: flex; flex-direction: column; gap: 10px; }
.visit-details h2 { font-size: 24px; color: var(--navy); margin-top: 4px; }
.visit-address { font-size: 14.5px; display: flex; gap: 10px; }
.visit-address .icon { margin-top: 3px; color: var(--orange); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 6px; }
.visit-note { font-size: 13px; margin-top: 12px; }

@media (max-width: 860px) { .visit-inner { grid-template-columns: 1fr; } }

/* ── Pre-footer CTA ───────────────────────────────────── */
.prefooter {
  background: linear-gradient(135deg, #1b3e78 0%, var(--navy) 45%, #0d2850 100%);
  padding: 88px 0;
}
.prefooter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.prefooter-copy h2 {
  color: #fff;
  font-size: clamp(22px, 3.5vw, 34px);
  margin-bottom: 10px;
}
.prefooter-copy p { color: rgba(255,255,255,.65); margin: 0; max-width: 480px; }
.prefooter-ctas { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 28px -6px rgba(0,0,0,.28);
}
.btn-white:hover { box-shadow: 0 14px 36px -6px rgba(0,0,0,.38); }
.btn-outline-white {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.18); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); }

.footer-main {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1.2fr 1fr;
  gap: 52px;
  padding: 72px 0 60px;
}

/* Col 1: Brand */
.footer-brand {}
.footer-logo { height: 36px; width: auto; display: block; margin-bottom: 16px; opacity: 0.95; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 290px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-contact-row:hover { color: var(--amber); }
.footer-contact-row .icon { margin-top: 2px; flex-shrink: 0; color: var(--orange); opacity: 0.8; }

.footer-socials { display: flex; gap: 8px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.social-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}
.social-icon .icon { width: 16px; height: 16px; }

/* Cols 2-4 */
.footer-col {}
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 18px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links li a:hover { color: var(--amber); }

.footer-hours-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: 12px;
}
.footer-hours-list li span:first-child { color: rgba(255,255,255,.4); }
.footer-hours-list li span:last-child { color: rgba(255,255,255,.72); font-weight: 500; }

.footer-rating-block {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 4px;
}
.footer-stars { display: flex; gap: 2px; color: var(--amber); }
.footer-rating-text { font-size: 12.5px; color: rgba(255,255,255,.58); }

/* Bottom bar */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 11.5px;
  color: rgba(255,255,255,.58);
  text-decoration: none;
  transition: background 0.18s;
}
.footer-powered:hover { background: rgba(255,255,255,.11); color: rgba(255,255,255,.8); }
.footer-powered img { height: 15px; width: auto; }

/* Footer responsive */
@media (max-width: 1020px) {
  .footer-main { grid-template-columns: 1.6fr 1fr 1.2fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; align-items: start; gap: 32px; }
}
@media (max-width: 700px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 52px 0 44px; }
  .footer-brand { grid-column: 1 / -1; display: block; }
  .footer-tagline { max-width: 100%; }
  .prefooter-inner { flex-direction: column; text-align: center; }
  .prefooter-ctas { justify-content: center; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
