/* ==========================================================================
   G Map Marketing Solutions — site styles
   Single stylesheet for all pages. No frameworks, no build step.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --red: #e11d48;
  --red-dark: #be123c;
  --red-soft: #fff1f4;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0b1220;

  --wrap: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --header-h: 92px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }

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

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; padding: .7rem 1.2rem; background: var(--red); color: #fff;
  border-radius: 0 0 10px 10px; font-weight: 600;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(32px, 4vw, 54px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(20px, 2.8vw, 34px); }
.center { text-align: center; }

.eyebrow {
  display: inline-block; margin-bottom: .8rem; padding: .32rem .85rem;
  border-radius: 999px; background: var(--red-soft); color: var(--red);
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

.lead { font-size: 1.06rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border: 2px solid transparent; border-radius: 999px;
  background: var(--red); color: #fff; font-weight: 600; text-align: center;
  cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--red); color: var(--red); }
.btn--ghost:hover { background: var(--red); color: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ==========================================================================
   4. Header — desktop: logo left / nav right. Mobile: logo left, hamburger button right,
   collapsible glassmorphic navigation drawer.
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--header-h); padding-block: 10px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 58px; transition: height .2s var(--ease); }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: clamp(4px, 1.2vw, 18px); flex-wrap: wrap; justify-content: center; }
.nav__link {
  position: relative; display: block; padding: .5rem .7rem; border-radius: 999px;
  color: var(--ink); font-size: .95rem; font-weight: 500; white-space: nowrap;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover { color: var(--red); background: var(--red-soft); }
.nav__link[aria-current="page"] { color: var(--red); font-weight: 600; }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: .18rem; transform: translateX(-50%);
  width: 20px; height: 2px; border-radius: 2px; background: var(--red);
}

/* Nav toggle button (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  z-index: 101;
  transition: background .2s var(--ease);
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--red-soft);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--red);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--red);
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .site-header__inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding-block: 8px;
  }
  .brand img { height: 50px; }
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), opacity .25s var(--ease), visibility .25s var(--ease), padding .3s var(--ease);
  }
  .nav.is-open {
    max-height: 360px;
    opacity: 1;
    visibility: visible;
    padding-block: 12px 16px;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
  }
  .nav__link {
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    border-radius: 12px;
    font-size: .98rem;
    font-weight: 500;
    text-align: left;
    width: 100%;
  }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__link[aria-current="page"] {
    background: var(--red-soft);
    color: var(--red);
  }
}
@media (max-width: 400px) {
  .brand img { height: 44px; }
}

/* ==========================================================================
   5. Carousel (image sliders) — Controls bar below viewport (Zero image overlap)
   ========================================================================== */
.gcar {
  position: relative;
  width: 100%;
}
.gcar__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.gcar__track {
  display: flex; margin: 0; padding: 0; list-style: none;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.gcar__slide { flex: 0 0 100%; min-width: 0; }
.gcar__slide img {
  width: 100%; height: auto; border-radius: var(--radius-lg);
  background: var(--bg-soft);
  display: block;
}

/* Controls bar below viewport */
.gcar__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.gcar__btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--red);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  z-index: 3;
  flex: 0 0 auto;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.gcar__btn:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(225, 29, 72, .3);
}
.gcar__btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.gcar__btn:disabled { opacity: .25; cursor: default; transform: none; }
.gcar__btn svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* dots inside controls bar */
.gcar__dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.gcar__dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: #cbd5e1; cursor: pointer; transition: all .2s var(--ease);
}
.gcar__dot:hover { background: var(--red-dark); }
.gcar__dot[aria-selected="true"] { width: 26px; border-radius: 999px; background: var(--red); }

@media (max-width: 640px) {
  .gcar__btn { width: 34px; height: 34px; }
  .gcar__btn svg { width: 16px; height: 16px; stroke-width: 3; }
  .gcar__controls { gap: 10px; margin-top: 12px; }
}

/* ==========================================================================
   6. Home
   ========================================================================== */
.split {
  display: grid; gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
  align-items: center;
}
.split--rev {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
}
.split--rev .split__media { order: 0; }
.split__media { width: 100%; }
.split__media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 18, 32, .08);
}
@media (max-width: 900px) {
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media .gcar { padding-inline: 0; }
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}
.about-block__media {
  width: 100%;
}
.about-block__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.placed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 1.6rem;
}
.placed-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .48rem 1rem;
  background: var(--red-soft);
  color: var(--red-dark);
  font-weight: 600;
  font-size: .92rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.15);
  transition: all .2s var(--ease);
}
.placed-list li:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.placed-icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.claims { display: grid; gap: 10px; margin: 0 0 1.3rem; }
.claim {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .75rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--ink); font-size: .95rem;
}
.claim svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; fill: var(--red); }

/* services */
.services { display: grid; gap: 10px; }
.service {
  display: flex; align-items: center; gap: .8rem;
  padding: .75rem 1rem; border: 1px solid var(--line); border-left: 4px solid var(--red);
  border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--ink); font-size: .95rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.service__num {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red-soft); color: var(--red); font-size: .82rem; font-weight: 700;
}

/* benefits */
.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  padding: 20px 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card img { width: 54px; height: 54px; margin-bottom: 10px; object-fit: contain; }
.card h4 { margin-bottom: .35rem; }
.card p { margin-bottom: .45rem; color: var(--muted); font-size: .92rem; }
.card ul { display: grid; gap: .25rem; }
.card ul li { position: relative; padding-left: 1.1rem; font-size: .92rem; color: var(--ink-soft); }
.card ul li::before { content: "›"; position: absolute; left: .2rem; color: var(--red); font-weight: 700; }

/* clients marquee */
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; gap: 42px; align-items: center; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img {
  height: 52px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: .72;
  transition: filter .25s var(--ease), opacity .25s var(--ease);
}
.marquee img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; gap: 24px; }
}

.cta {
  position: relative; overflow: hidden;
  padding: clamp(32px, 4vw, 48px) 0;
  background: linear-gradient(135deg, var(--red) 0%, #9f1239 100%);
  color: #fff; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { max-width: 640px; margin-inline: auto; color: rgba(255, 255, 255, .9); }
.cta .btn { background: #fff; color: var(--red); border: 2px solid #fff; }
.cta .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta .btn--outline { background: transparent; color: #fff; border: 2px solid #fff; }
.cta .btn--outline:hover { background: #fff; color: var(--red); border-color: #fff; }

/* ==========================================================================
   7. Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(200px, 30vw, 360px);
  background: var(--bg-dark);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, .52) 0%, rgba(11, 18, 32, .78) 100%);
  z-index: 1;
}
.page-hero--clean::before {
  display: none;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero__bg--mobile { display: none; }
.page-hero__inner { position: relative; z-index: 2; padding: 42px 20px; text-align: center; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: .35rem; }
.page-hero p { max-width: 620px; margin: 0 auto; color: rgba(255, 255, 255, .9); font-size: 1.05rem; }
@media (max-width: 700px) {
  .page-hero__bg--desktop { display: none; }
  .page-hero__bg--mobile { display: block; }
}

/* about */
.prose p { color: var(--ink-soft); }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-media img { width: 100%; }
.about-stack { display: grid; gap: 18px; }

/* ==========================================================================
   8. Video playlist (live devices / client videos)
   ========================================================================== */
.playlist { display: grid; gap: 24px; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .85fr); align-items: start; }
@media (max-width: 940px) { .playlist { grid-template-columns: 1fr; } }

.player {
  position: sticky; top: calc(var(--header-h, 92px) + 14px);
  border-radius: var(--radius); overflow: hidden;
  background: #000; box-shadow: var(--shadow-md);
}
@media (max-width: 940px) { .player { position: static; } }
.player video { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.player__caption {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.1rem; background: var(--ink); color: #fff; font-weight: 600;
}
.player__caption svg { width: 18px; height: 18px; fill: var(--red); flex: 0 0 auto; }

.playlist__panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.playlist__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.playlist__head h2 { margin: 0; font-size: 1.05rem; }
.playlist__count { font-size: .82rem; color: var(--muted); }
.playlist__items { max-height: 560px; overflow-y: auto; scrollbar-width: thin; }
@media (max-width: 940px) { .playlist__items { max-height: 460px; } }

.pitem {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 10px 14px; border: 0; border-bottom: 1px solid var(--line);
  background: #fff; text-align: left; cursor: pointer;
  transition: background .18s var(--ease);
}
.pitem:last-child { border-bottom: 0; }
.pitem:hover { background: var(--bg-soft); }
.pitem[aria-current="true"] { background: var(--red-soft); }
.pitem[aria-current="true"] .pitem__title { color: var(--red); }
.pitem__thumb {
  position: relative; flex: 0 0 auto; width: 104px; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden; background: var(--bg-soft);
}
.pitem__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pitem__thumb::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0; border-style: solid;
  border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, .6));
  opacity: 0; transition: opacity .18s var(--ease);
}
.pitem:hover .pitem__thumb::after, .pitem[aria-current="true"] .pitem__thumb::after { opacity: 1; }
.pitem__title { font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.pitem__meta { font-size: .78rem; color: var(--muted); }

/* ==========================================================================
   9. Contact
   ========================================================================== */
.contact-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.info-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm); color: var(--ink-soft);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: .5rem; border-radius: 12px; background: var(--red-soft); }
.info-card__icon svg { width: 22px; height: 22px; fill: var(--red); }
.info-card h3 { margin: 0; font-size: 1rem; }
.info-card a, .info-card span { font-size: .95rem; word-break: break-word; }

.form-wrap { display: grid; gap: 30px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 860px) { .form-wrap { grid-template-columns: 1fr; } }

.form { display: grid; gap: 16px; padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.field { display: grid; gap: .35rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 29, 72, .14);
}
.field textarea { min-height: 130px; resize: vertical; }
.form__note { margin: 0; font-size: .82rem; color: var(--muted); }

/* ==========================================================================
   10. Footer + floating WhatsApp — White Theme
   ========================================================================== */
.site-footer {
  padding-top: clamp(44px, 6vw, 70px);
  background: #ffffff;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1.2fr; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.site-footer__logo { height: 62px; width: auto; margin-bottom: 16px; }
.site-footer p { color: var(--muted); font-size: .95rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .footer-contact a, .footer-contact span { color: var(--ink-soft); font-size: .95rem; transition: color .18s var(--ease); }
.footer-links a:hover, .footer-contact a:hover { color: var(--red); }
.footer-contact { display: grid; gap: .7rem; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: flex-start; gap: .6rem; }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; fill: var(--red); }
.socials { display: flex; gap: 10px; margin-top: 4px; }
@media (max-width: 820px) { .socials { justify-content: center; } }
.socials a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--red-soft); color: var(--red); transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.site-footer__bottom {
  margin-top: 34px; padding: 18px 0; border-top: 1px solid var(--line);
  text-align: center; font-size: .85rem; color: var(--muted); background: var(--bg-soft);
}
.site-footer__bottom p { margin: 0; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 640px) { .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; } .wa-float svg { width: 26px; height: 26px; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   11. Home Page Restructure & High-Conversion Media Network Styles
   ========================================================================== */

/* Hero split (full-width, no boxed card look) */
.hero-section {
  padding-block: clamp(32px, 5vw, 64px);
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero-title span {
  color: var(--red);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-media {
  width: 100%;
}
.hero-media .gcar__viewport {
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Trust strip immediately below hero */
.trust-strip {
  padding-block: 22px;
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.trust-strip__title {
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Product specs strip (Dark Navy Contrast Section) */
.spec-strip {
  padding-block: clamp(40px, 5vw, 64px);
  background: var(--bg-dark);
  color: #ffffff;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.spec-item:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}
.spec-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  flex: 0 0 auto;
}
.spec-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.spec-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.spec-lbl {
  font-size: .85rem;
  color: #94a3b8;
  font-weight: 500;
}

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

/* Visual Proof Banner ("Seen. Not Skipped.") */
.visual-proof {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.visual-proof__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}
.visual-proof__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, .6) 0%, rgba(11, 18, 32, .88) 100%);
  z-index: 1;
}
.visual-proof__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 40px 20px;
  color: #ffffff;
}
.visual-proof__tag {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: rgba(225, 29, 72, .25);
  color: #ff4d6d;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.visual-proof h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: .8rem;
}
.visual-proof p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1.8rem;
}

/* Services Grid (3 Columns x 2 Rows) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 29, 72, .3);
  box-shadow: var(--shadow-md);
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.service-card__num {
  font-size: .82rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: .4rem;
  color: var(--ink);
}
.service-card p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

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

/* Testimonial block */
.testimonial-block {
  padding-block: clamp(36px, 5vw, 60px);
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.testimonial-card {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  font-size: .92rem;
  font-weight: 700;
  color: var(--red);
}

/* High Conversion CTA Section */
.cta-urgent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  color: #ffffff;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   12. Floating Media Card Stack System (Option 1)
   ========================================================================== */
.card-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 240px;
  margin: 20px auto 0;
  perspective: 1000px;
}
.card-stack__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 18, 32, .14);
  border: 2px solid #ffffff;
  background: #ffffff;
  transition: transform .4s var(--ease), opacity .4s var(--ease), box-shadow .4s var(--ease);
}
.card-stack__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Base stack positions & rotations */
.card-stack__item--top {
  position: relative;
  z-index: 3;
  transform: rotate(-3deg) translateY(0);
}
.card-stack__item--mid {
  z-index: 2;
  transform: rotate(3deg) translateY(-28px) translateX(24px);
  opacity: .92;
}
.card-stack__item--bot {
  z-index: 1;
  transform: rotate(-1.5deg) translateY(-54px) translateX(-12px);
  opacity: .82;
}

/* Interactive fanning on hover */
.card-stack:hover .card-stack__item--top {
  transform: rotate(-5deg) translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(11, 18, 32, .18);
}
.card-stack:hover .card-stack__item--mid {
  transform: rotate(5deg) translateY(-36px) translateX(36px);
  opacity: 1;
}
.card-stack:hover .card-stack__item--bot {
  transform: rotate(-3deg) translateY(-72px) translateX(-22px);
  opacity: .95;
}

@media (max-width: 600px) {
  .card-stack {
    max-width: 270px;
    min-height: 200px;
  }
}
