/* ============================================================
   SOL AUDIO CAR V2 — AUREUM DESIGN SYSTEM
   Netlify Build — Mobile-First, Serif + Sans-Serif
   ============================================================ */

/* === GOOGLE FONTS ===
   Loaded asynchronously via <link rel="preload"> in index.html.
   DO NOT use @import here — it is render-blocking and duplicates the load. */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* — Gold Palette — */
  --gold: #d4a017;
  --gold-light: #e8b930;
  --gold-dark: #b38a14;
  --gold-glow: rgba(212, 160, 23, 0.35);
  --gold-subtle: rgba(212, 160, 23, 0.08);
  --gold-15: rgba(212, 160, 23, 0.15);

  /* — Backgrounds — */
  --bg: #0b0b0b;
  --bg-elevated: #111111;
  --surface: #161616;
  --surface-hover: #1c1c1c;
  --card: #141414;
  --card-hover: #1a1a1a;

  /* — Borders — */
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(212, 160, 23, 0.35);

  /* — Text — */
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.60);

  /* — Accent Colors — */
  --wa-green: #25d366;
  --wa-green-hover: #1ebe5d;

  /* — Typography — */
  --font-display: "Merriweather", "Georgia", "Times New Roman", serif;
  --font-body:
    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* — Spacing — */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;

  /* — Radii — */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* — Transitions — */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.2s var(--ease-out);
  --t-med: 0.4s var(--ease-out);
  --t-slow: 0.6s var(--ease-out);

  /* — Glass — */
  --glass-bg: rgba(11, 11, 11, 0.88);
  --glass-blur: blur(24px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.04);

  /* — Layout — */
  --nav-h: 68px;
  --max-w: 1320px;
  --gutter: 20px;
}

/* === RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Hide content behind mobile menu */
body.menu-open main,
body.menu-open footer,
body.menu-open::after {
  visibility: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
ul,
ol {
  list-style: none;
}

/* — Scrollbar — */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

/* — Selection — */
::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.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;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 0 35px rgba(37, 211, 102, 0.6),
      0 0 60px rgba(37, 211, 102, 0.15);
  }
}

@keyframes bounceY {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  30% {
    transform: translate(3%, -15%);
  }
  50% {
    transform: translate(12%, 9%);
  }
  70% {
    transform: translate(9%, 4%);
  }
  90% {
    transform: translate(-1%, 7%);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* — Scroll Reveal — */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal-stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal-stagger > .reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal-stagger > .reveal:nth-child(6) {
  transition-delay: 0.4s;
}
.reveal-stagger > .reveal:nth-child(7) {
  transition-delay: 0.48s;
}
.reveal-stagger > .reveal:nth-child(8) {
  transition-delay: 0.56s;
}
.reveal-stagger > .reveal:nth-child(9) {
  transition-delay: 0.64s;
}

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 300%;
  height: 300%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 50;
  animation: grain 8s steps(10) infinite;
  opacity: 0.3;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  transition:
    transform 0.4s var(--ease-out),
    background 0.3s;
  animation: slideDown 0.6s var(--ease-out);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav.solid {
  background: rgba(11, 11, 11, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text);
}

.nav__logo b {
  color: var(--gold);
}

.nav__logo {
  position: relative;
  z-index: 10000;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t-med);
}

.nav__link:hover {
  color: var(--gold);
}
.nav__link:hover::after {
  width: 100%;
}

.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all var(--t-fast);
}

.nav__cta-btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* Hamburger — Clean 3 lines */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--gold);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--gold);
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #080808;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(var(--nav-h) + 40px);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
  }

  .nav__menu.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Each menu item — staggered slide-in */
  .nav__menu li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    transition-delay: var(--stagger, 0s);
    padding: 14px 0;
  }

  .nav__menu li:nth-child(1) { --stagger: 0.06s; }
  .nav__menu li:nth-child(2) { --stagger: 0.12s; }
  .nav__menu li:nth-child(3) { --stagger: 0.18s; }
  .nav__menu li:nth-child(4) { --stagger: 0.24s; }
  .nav__menu li:nth-child(5) { --stagger: 0.30s; }

  .nav__menu.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__link {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .nav__cta-btn {
    font-size: 1rem;
    padding: 14px 32px;
    margin-top: 12px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
  overflow: hidden;
}

/* Radial gold ambient */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-15);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: fadeIn 0.8s 0.2s both;
}

.hero__badge-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-lg);
  animation: fadeUp 0.8s 0.3s both;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  animation: fadeUp 0.8s 0.5s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.7s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  min-height: 48px;
  text-decoration: none;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--wa {
  background: var(--wa-green);
  color: #fff;
}

.btn--wa:hover {
  background: var(--wa-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: bounceY 2.5s infinite;
  transition: opacity var(--t-fast);
  font-size: 1.5rem;
}

.hero__scroll:hover {
  opacity: 1;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: clamp(60px, 10vw, 100px) 0;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
  padding: 0 var(--gutter);
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section__tag::before,
.section__tag::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.section__subtitle {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICE GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ============================================================
   SERVICE CARD
   ============================================================ */
.card {
  position: relative;
  display: block;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-med);
  text-decoration: none !important;
  color: inherit !important;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.5),
    0 0 25px var(--gold-glow);
}

.card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.card:hover .card__img img {
  transform: scale(1.06);
}

/* Image gradient overlay */
.card__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, var(--card) 0%, transparent 100%);
  pointer-events: none;
}

/* Shimmer effect on hover */
.card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 160, 23, 0.08),
    transparent
  );
  width: 60%;
  z-index: 1;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.card:hover .card__img::before {
  opacity: 1;
  animation: shimmer 1.2s ease forwards;
}

.card__body {
  padding: 18px 20px 22px;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: all var(--t-fast);
}

.card:hover .card__icon {
  background: var(--gold);
  color: var(--bg);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Arrow indicator */
.card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all var(--t-fast);
}

.card:hover .card__arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--gold);
  color: var(--bg);
}

.card__arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Mobile compaction for service cards */
@media (max-width: 639px) {
  .services-grid { gap: 10px; }
  .card__img { aspect-ratio: 16 / 8; }
  .card__body { padding: 12px 14px 14px; }
  .card__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .card__title {
    font-size: 1rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .card__desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

/* ============================================================
   DIAGNOSTICS
   ============================================================ */
.diag-bg {
  background:
    radial-gradient(
      ellipse at 25% 15%,
      rgba(212, 160, 23, 0.025) 0%,
      transparent 50%
    ),
    var(--bg);
}

.terminal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  margin: 0 var(--gutter) var(--space-xl);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  font-family: "JetBrains Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  overflow-x: auto;
}

.terminal__prompt {
  color: var(--gold);
  font-weight: 700;
}
.terminal__text {
  color: var(--text-secondary);
}
.terminal__cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--gold);
  animation: fadeIn 0.7s infinite alternate;
  vertical-align: text-bottom;
  margin-left: 2px;
}

/* ============================================================
   COMBOS
   ============================================================ */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto var(--space-2xl);
}

@media (min-width: 640px) {
  .combos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .combos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.combo {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med);
}

.combo:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* Gold top line */
.combo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--t-fast);
}

.combo:hover::before {
  opacity: 1;
}

.combo__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.combo__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.combo:hover .combo__img img {
  transform: scale(1.05);
}

.combo__body {
  padding: 22px 20px 26px;
  text-align: center;
}

.combo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.combo__items {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.combo__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.combo__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--t-fast);
}

.combo__btn:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* ============================================================
   TRUST PILLARS
   ============================================================ */
.trust-grid {
  display: flex;
  gap: 14px;
  padding: 4px var(--gutter) 18px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-grid::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 var(--gutter);
    max-width: var(--max-w);
    overflow: visible;
    scroll-snap-type: none;
  }
}

.trust {
  flex: 0 0 82%;
  scroll-snap-align: start;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all var(--t-med);
}

@media (min-width: 768px) {
  .trust { flex: initial; padding: 36px 22px; }
}

.trust:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--gold-subtle);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.trust__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   STATS COUNTER BAR
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: var(--space-2xl) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-bg {
  background:
    radial-gradient(
      ellipse at 65% 25%,
      rgba(212, 160, 23, 0.03) 0%,
      transparent 50%
    ),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.contact__cta-block {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contact__cta-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.contact__cta-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.65;
}

.contact__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Info cards */
.contact__info-grid {
  display: grid;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--t-fast);
}

.info-card:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  color: var(--gold);
  flex-shrink: 0;
}

.info-card__icon--wa {
  background: rgba(37, 211, 102, 0.1);
  color: var(--wa-green);
}

.info-card__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-card__value {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* Schedule */
.schedule {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 14px;
}

.schedule__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule__row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
}

.schedule__row:last-of-type {
  border-bottom: none;
}
.schedule__day {
  color: var(--text-secondary);
}
.schedule__time {
  color: var(--gold);
  font-weight: 500;
}

.schedule__note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
  height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) contrast(1.1);
}

/* Mobile 2-column layout for contact section */
@media (max-width: 767px) {
  .contact__cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .contact__cta-actions .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .contact__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .contact__info-grid .info-card:nth-child(3) {
    grid-column: 1 / -1;
  }
  .info-card {
    padding: 10px 12px;
    gap: 10px;
    min-width: 0;
  }
  .info-card > div { min-width: 0; flex: 1; }
  .info-card__icon { width: 34px; height: 34px; flex-shrink: 0; }
  .info-card__label { font-size: 0.62rem; }
  .info-card__value {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .contact__info-grid .info-card:nth-child(3) .info-card__value {
    white-space: normal;
  }
  .map-wrap { height: 180px; }
}

@media (max-width: 399px) {
  .contact__cta-actions { grid-template-columns: 1fr; }
  .contact__info-grid { grid-template-columns: 1fr; }
  .contact__info-grid .info-card:nth-child(3) { grid-column: auto; }
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 160, 23, 0.15),
    var(--gold-glow),
    rgba(212, 160, 23, 0.15),
    transparent
  );
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 44px var(--gutter) 22px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer__brand-name b {
  color: var(--gold);
}

.footer__brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links-group {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer__link {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__motto {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer__copy {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--t-fast);
  animation: pulseGlow 3s 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ============================================================
   MATERIAL ICONS (inline)
   ============================================================ */
.mi {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga";
}

/* ============================================================
   PERFORMANCE — Mobile grain disable & paint containment
   ============================================================ */
@media (max-width: 768px) {
  body::after {
    display: none;
  }
}

.section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

