:root {
  --bg: #0a0b0b;
  --bg-soft: #0e1211;
  --surface: #121816;
  --surface-alt: #1a2420;
  --text: #f5f5f5;
  --muted: #b0bdb8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #1de9b6;
  --accent-deep: #00897b;
  --accent-muted: #26a69a;
  --accent-dark: #004d40;
  --accent-rgb: 29, 233, 182;
  --accent-deep-rgb: 0, 137, 123;
  --section-light: #f0f7f5;
  --section-light-alt: #e4f0ec;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.12), transparent 32%),
    linear-gradient(180deg, #0a0b0b 0%, #0e1211 48%, #0a0b0b 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.22);
  background: var(--bg);
}

.topbar-inner,
.nav-inner,
.hero-grid,
.split-grid,
.buying-grid,
.footer-grid {
  display: flex;
  gap: 24px;
}

.topbar-inner {
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.topbar-cta {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 11, 0.94);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.08);
}

.nav-inner {
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.nav-cta,
.button {
  background: var(--accent);
  color: #090909;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.22);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-deep);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 72px 0 56px;
}

.hero-modern {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 36px 0 32px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) contrast(1.05);
}

.hero-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.26) 100%),
    radial-gradient(circle at right center, rgba(var(--accent-rgb), 0.18), transparent 24%);
}

.hero-grid-modern {
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-grid,
.split-grid,
.buying-grid {
  align-items: center;
}

.hero-grid > *,
.split-grid > * {
  flex: 1;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  max-width: 14ch;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  max-width: 16ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  max-width: 14ch;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-subtitle {
  max-width: 52ch;
  margin: 14px 0 20px;
  font-size: 16px;
  line-height: 1.55;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-stat {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  backdrop-filter: blur(10px);
}

.mini-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 22px;
  color: var(--accent);
}

.mini-stat span {
  color: #d3d3d3;
  font-size: 12px;
}

.hero-feature-card {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-feature-panel {
  max-width: 320px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-feature-panel h3 {
  font-size: 20px;
}

.hero-feature-panel p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

.feature-overline {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 800;
}

.marquee-section {
  overflow: hidden;
  border-top: 1px solid rgba(var(--accent-rgb), 0.18);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
  background: var(--surface);
}

.marquee-track {
  display: flex;
  gap: 36px;
  padding: 16px 0;
  white-space: nowrap;
  min-width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--accent);
}

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

.brand-strip {
  padding: 48px 0 28px;
  background:
    radial-gradient(circle at left center, rgba(var(--accent-rgb), 0.08), transparent 42%),
    var(--surface);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

.brand-strip-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.brand-strip-logo {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.brand,
.brand:focus,
.brand:focus-visible,
.brand:active,
.brand:hover {
  outline: none;
  background: transparent;
  box-shadow: none;
}

.brand img {
  background: transparent;
  box-shadow: none;
  filter: none;
}

.brand-strip-title {
  margin: 0;
  color: #f3f3f3;
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15;
  max-width: 18ch;
  text-transform: none;
}

.brand-strip .section-kicker {
  margin-bottom: 8px;
}

.brand-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-pill {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #e7e7e7;
  font-weight: 600;
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.brand-pill:hover {
  background: var(--accent);
  color: #0a0b0b;
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hero-media img,
.franchise-media img,
.stack-main,
.stack-float {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 10% -18px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.22);
  filter: blur(42px);
  z-index: -1;
}

.trust-strip,
.about-section,
.ecosystem-section,
.services-section,
.products-section,
.franchise-section,
.buying-guide {
  padding: 42px 0 68px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center h2 {
  margin-inline: auto;
}

.trust-strip-modern {
  padding-top: 28px;
}

.card-grid,
.product-grid,
.stat-row,
.buying-list {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three,
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.pillar-card,
.service-card,
.product-card,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.pillar-card,
.service-card {
  padding: 28px;
}

.pillar-card {
  position: relative;
  padding-top: 54px;
}

.card-index {
  position: absolute;
  top: 22px;
  left: 28px;
  color: rgba(var(--accent-rgb), 0.95);
  font-family: "Syne", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.stats-story-section {
  background: var(--section-light);
  padding: 74px 0;
}

.stats-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.stats-column {
  display: grid;
  gap: 28px;
}

.story-stat {
  text-align: center;
}

.story-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(52px, 7vw, 72px);
  color: var(--accent-deep);
  line-height: 0.95;
}

.story-stat span {
  display: block;
  margin-top: 8px;
  color: #424242;
  font-size: 18px;
}

.story-copy .section-kicker {
  color: var(--accent-deep);
}

.story-copy .section-kicker,
.stats-story-section h2,
.stats-story-section p {
  color: #0a1a16;
}

.story-copy h2 {
  max-width: 14ch;
  margin-bottom: 26px;
}

.story-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.story-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
}

.story-point p {
  margin: 0;
  color: #2a2a2a;
  line-height: 1.65;
}

.media-spotlight-section {
  padding: 74px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.media-spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(var(--accent-rgb), 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #0a0b0b;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  display: block;
}

.media-frame video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #0a0b0b;
}

.media-frame-video {
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.media-frame-video video {
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 680px);
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.media-frame:has(video)::after {
  display: none;
}

.ppf-video-frame {
  margin-bottom: 8px;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-video-section {
  padding-top: 8px;
}

.about-video-section .section-heading {
  margin-bottom: 28px;
}

.about-video-frame {
  max-width: 420px;
  width: 100%;
  margin: 0 auto 8px;
}

.about-logo-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: transparent;
  box-shadow: none;
}

.terms-section + .terms-section,
.terms-disclaimer {
  margin-top: 20px;
}

.terms-section h2,
.terms-disclaimer h2 {
  margin-top: 0;
}

.terms-section h3 {
  margin: 20px 0 8px;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.franchise-highlights {
  margin: 18px 0 8px;
}

.popular-searches {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.popular-searches h3 {
  margin: 0 0 14px;
}

.popular-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.popular-search-row a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.popular-search-row a:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.45);
}

.lead-popup[hidden] {
  display: none !important;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.lead-popup-panel {
  position: relative;
  width: min(440px, 100%);
  background: linear-gradient(180deg, rgba(18, 24, 24, 0.98), rgba(10, 12, 12, 0.98));
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px 24px 24px;
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-panel h2 {
  margin: 0 0 8px;
}

.lead-popup-panel > p {
  margin: 0 0 8px;
  color: var(--muted);
}

.lead-popup-status {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.lead-popup-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  box-shadow: var(--shadow);
}

.whatsapp-fab {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-fab svg {
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-fab {
    left: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .lead-popup-fab {
    right: 14px;
    bottom: 14px;
  }
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0b0b;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.media-copy h2 {
  max-width: 10ch;
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.stack-main {
  width: 78%;
}

.stack-float {
  width: 44%;
  position: absolute;
  right: 0;
  bottom: 36px;
  border: 8px solid var(--bg);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.services-section {
  background: var(--section-light);
  color: #0a1a16;
}

.services-section .section-kicker {
  color: var(--accent-deep);
}

.services-section h2,
.services-section p {
  color: #0a1a16;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-showcase-card {
  min-height: 250px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.service-showcase-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-showcase-card:hover .service-showcase-image img {
  transform: scale(1.05);
}

.service-showcase-body {
  padding: 22px 24px 26px;
}

.service-showcase-body h3 {
  color: #111;
  margin-bottom: 10px;
}

.service-showcase-body p {
  color: #444;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.service-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--accent-rgb), 0.95);
  color: #111;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f2;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.category-chip:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.product-card {
  overflow: hidden;
}

.product-image-wrap {
  padding: 16px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(var(--accent-rgb), 0.12), transparent 45%), var(--surface);
  border-bottom: 1px solid var(--line);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 208px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.product-body {
  padding: 22px;
}

.product-category {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.product-body h3 {
  margin: 12px 0 18px;
}

.franchise-grid {
  align-items: stretch;
}

.stat-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  margin-bottom: 8px;
}

.stat-card {
  padding: 18px 16px;
  min-width: 0;
  overflow: hidden;
}

.stat-card strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  color: var(--accent);
  word-break: break-word;
  overflow-wrap: anywhere;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.franchise-section .hero-actions,
.franchise-actions {
  margin-top: 28px;
}

.buying-guide .button,
.buying-cta {
  margin-top: 24px;
  display: inline-flex;
}

.buying-grid {
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.buying-grid > * {
  flex: 1;
}

.buying-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buying-list span {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.page-shell {
  padding-bottom: 56px;
}

.page-hero {
  padding: 64px 0 24px;
}

.page-content {
  padding: 0 0 48px;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

.page-title {
  max-width: none;
}

.page-lead {
  font-size: 18px;
  max-width: 70ch;
}

.page-feature-image {
  margin-top: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prose-card,
.blog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.prose-card p:last-child,
.blog-card p:last-child {
  margin-bottom: 0;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.feature-list li + li {
  margin-top: 10px;
}

.category-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.category-filter a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.category-filter a.active {
  background: var(--accent);
  color: #090909;
  border-color: transparent;
  font-weight: 700;
}

.blog-stack {
  display: grid;
  gap: 20px;
}

.blog-date {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
}

.section-gap-sm {
  margin-top: 24px;
  margin-bottom: 22px;
}

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

.footer {
  border-top: 1px solid rgba(var(--accent-rgb), 0.12);
  background: var(--bg);
  padding: 48px 0;
}

.footer-grid {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-grid > * {
  flex: 1;
}

@media (max-width: 980px) {
  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .product-grid,
  .service-showcase-grid,
  .stat-row,
  .buying-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-story-grid,
  .media-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .buying-grid,
  .footer-grid,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .stack-main,
  .stack-float {
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .product-grid,
  .service-showcase-grid,
  .stat-row,
  .buying-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .nav-links {
    gap: 14px;
  }

  .brand-strip-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-strip-title {
    max-width: none;
  }

  .hero-modern {
    min-height: auto;
    padding: 32px 0 28px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
    max-width: 12ch;
  }

  .hero-feature-card {
    display: none;
  }

  .topbar-inner {
    flex-direction: column;
  }
}

/* —— Polish layer: motion, SEO UX, marketing sections —— */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #0a0b0b;
  padding: 10px 16px;
  z-index: 100;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-whatsapp {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-only {
  display: none;
}

.hero-backdrop {
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 68%);
  animation: glowPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.trust-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 16px;
  background:
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-deep-rgb), 0.12));
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  position: relative;
}

.trust-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.9;
}

.trust-icon-delivery::after { border-radius: 999px; }
.trust-icon-premium::after { clip-path: polygon(50% 0, 100% 100%, 0 100%); inset: 10px 12px; }
.trust-icon-range::after { box-shadow: 8px 0 0 rgba(var(--accent-rgb), 0.45); width: auto; }

.media-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.18), transparent);
  animation: mediaScan 4.5s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes mediaScan {
  from { top: -30%; }
  to { top: 100%; }
}

.play-badge {
  position: relative;
  overflow: visible;
}

.play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(var(--accent-rgb), 0.55);
  animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.testimonials-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at bottom right, rgba(var(--accent-rgb), 0.08), transparent 40%),
    var(--bg);
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  box-shadow: var(--shadow);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-quote {
  margin: 0;
  color: #f0f0f0;
  font-size: 17px;
  line-height: 1.65;
}

.testimonial-meta strong {
  display: block;
  color: var(--accent);
  font-family: "Syne", sans-serif;
  margin-bottom: 4px;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 14px;
}

.buying-list a {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.buying-list a:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  transform: translateY(-2px);
}

.cta-banner-section {
  padding: 0 0 72px;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border-top: 1px solid rgba(var(--accent-rgb), 0.18);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.18);
  background:
    linear-gradient(110deg, rgba(10, 11, 11, 0.92), rgba(10, 11, 11, 0.72)),
    var(--cta-image) center / cover no-repeat;
  padding: 72px 0;
}

.cta-banner-inner {
  max-width: 720px;
}

.cta-banner h2 {
  max-width: 16ch;
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 58ch;
  margin-bottom: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(var(--accent-rgb), 0.45);
  border-color: var(--accent);
}

.form-success {
  margin-top: 12px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.social-link:hover {
  background: var(--accent);
  color: #0a0b0b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.info-card,
.pillar-card,
.service-showcase-card,
.product-card,
.testimonial-card {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.info-card:hover,
.pillar-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.service-showcase-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(10, 11, 11, 0.98);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.16);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-only {
    display: inline-flex;
    margin-top: 10px;
    justify-content: center;
  }

  .navbar {
    position: sticky;
  }

  .nav-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    height: 52px;
    max-width: min(200px, 70vw);
  }

  .nav-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-glow,
  .media-scan,
  .play-pulse,
  .marquee-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.topbar-contact,
.topbar-whatsapp,
.contact-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-phone,
.icon-whatsapp {
  display: inline-flex;
  color: var(--accent);
}

.media-frame-video .play-badge {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.media-frame-video .play-badge[hidden] {
  display: none;
}

.products-cta-section {
  padding: 72px 0 80px;
  text-align: center;
}

.products-cta-section .section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.products-cta-section .section-heading h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}

.products-cta-section .page-lead {
  max-width: 56ch;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
}

.products-cta-section .category-chip-row {
  justify-content: center;
  margin-bottom: 28px;
}

.products-cta-section .center-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ppf-video-frame video,
.about-video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72vh, 680px);
  object-fit: cover;
  object-position: center;
  display: block;
  background: #000;
}

.brand img {
  height: 78px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Homepage logo watermarks — only on contained media cards (not hero/CTA) */
.home-page .media-frame::before,
.home-page .service-showcase-image::before,
.home-page .franchise-media::before {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background: url("/static/assets/images/logo-text-transparent.png") no-repeat center / contain;
  opacity: 0.32;
  right: 14px;
  bottom: 14px;
  width: 120px;
  height: 50px;
}

.home-page .service-showcase-image::before {
  width: 90px;
  height: 38px;
  right: 10px;
  bottom: 10px;
  opacity: 0.34;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.home-page .franchise-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.home-page .franchise-media::before {
  width: 140px;
  height: 58px;
  right: 16px;
  bottom: 16px;
}

@media (max-width: 640px) {
  .home-page .media-frame::before,
  .home-page .franchise-media::before {
    width: 96px;
    height: 40px;
  }

  .home-page .service-showcase-image::before {
    width: 72px;
    height: 30px;
  }
}

/* Brands we cover — dual logo marquee */
.brands-covered-section {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top center, rgba(var(--accent-rgb), 0.1), transparent 48%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-top: 1px solid rgba(var(--accent-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  overflow: hidden;
}

.brands-covered-head {
  text-align: center;
  margin-bottom: 36px;
}

.brands-covered-head h2 {
  max-width: 16ch;
  margin: 0 auto 12px;
}

.brands-covered-subtitle {
  max-width: 54ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.brands-marquee {
  display: grid;
  gap: 16px;
}

.brands-marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brandsMarquee 45s linear infinite;
}

.brands-marquee-track-reverse {
  animation-name: brandsMarqueeReverse;
  animation-duration: 52s;
}

.brands-marquee-row:hover .brands-marquee-track {
  animation-play-state: paused;
}

.brand-logo-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.brand-logo-card:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.12), rgba(255, 255, 255, 0.03));
  transform: translateY(-2px);
}

.brand-logo-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.95;
}

.brand-logo-card span {
  color: #f2f2f2;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

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

@media (max-width: 640px) {
  .brand-logo-card {
    min-width: 180px;
    padding: 14px 16px;
  }

  .brand-logo-card img {
    width: 34px;
    height: 34px;
  }

  .brands-marquee-track {
    animation-duration: 36s;
  }
}

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