@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');
:root {
  /* Brand / primary accents */
  --color-primary: #f97316;
  --color-primary-hover: #ea580c;
  --color-primary-dark: #d44e00;
  --color-accent-orange: #ff5a00;
  --color-accent-secondary: #e05c2a;
  --color-accent-muted-mobile: rgba(198, 91, 14, 0.811);
  --color-navbar-scrolled: rgba(236, 69, 8, 0.95);

  /* Primary (#f97316) alpha variants */
  --color-primary-a02: rgba(249, 115, 22, 0.015);
  --color-primary-a07: rgba(249, 115, 22, 0.07);
  --color-primary-a08: rgba(249, 115, 22, 0.08);
  --color-primary-a12: rgba(249, 115, 22, 0.12);
  --color-primary-a18: rgba(249, 115, 22, 0.18);
  --color-primary-a20: rgba(249, 115, 22, 0.2);
  --color-primary-a30: rgba(249, 115, 22, 0.3);
  --color-primary-a55: rgba(249, 115, 22, 0.55);

  /* Accent orange (#ff5a00) alpha variants */
  --color-accent-orange-a08: rgba(255, 90, 0, 0.08);
  --color-accent-orange-a25: rgba(255, 90, 0, 0.25);
  --color-accent-orange-a35: rgba(255, 90, 0, 0.35);

  /* Base colors */
  --color-white: white;
  --color-white-hex: #fff;
  --color-black: black;
  --color-black-hex: #000;
  --color-transparent: transparent;

  /* White alpha variants */
  --color-white-04: rgba(255, 255, 255, 0.04);
  --color-white-05: rgba(255, 255, 255, 0.05);
  --color-white-06: rgba(255, 255, 255, 0.06);
  --color-white-07: rgba(255, 255, 255, 0.07);
  --color-white-08: rgba(255, 255, 255, 0.08);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-12: rgba(255, 255, 255, 0.12);
  --color-white-14: rgba(255, 255, 255, 0.14);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-18: rgba(255, 255, 255, 0.18);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-28: rgba(255, 255, 255, 0.28);
  --color-white-30: rgba(255, 255, 255, 0.3);
  --color-white-35: rgba(255, 255, 255, 0.35);
  --color-white-45: rgba(255, 255, 255, 0.45);
  --color-white-48: rgba(255, 255, 255, 0.48);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-60: rgba(255, 255, 255, 0.6);
  --color-white-65: rgba(255, 255, 255, 0.65);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-88: rgba(255, 255, 255, 0.88);
  --color-white-90: rgba(255, 255, 255, 0.9);

  /* Black alpha variants */
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-40: rgba(0, 0, 0, 0.4);
  --color-black-45: rgba(0, 0, 0, 0.45);
  --color-black-60: rgba(0, 0, 0, 0.6);
  --color-black-70: rgba(0, 0, 0, 0.7);
  --color-black-90: rgba(0, 0, 0, 0.9);

  /* Overlay / hero */
  --color-overlay-dark: rgba(7, 7, 7, 0.7);

  /* Navbar gradient */
  --color-navbar-grad-1: rgba(25, 25, 25, 0.95);
  --color-navbar-grad-2: rgba(18, 18, 18, 0.88);
  --color-navbar-grad-3: rgba(10, 10, 10, 0.75);

  /* Surfaces / backgrounds */
  --color-surface-dark: #1f2937;
  --color-surface-charcoal: #1a1a1a;
  --color-surface-near-black: #111;
  --color-surface-menu: #0d0d0d;
  --color-bg-deep: #020408;
  --color-card-dark: #0d0701;
  --color-card-dark-hover: #130900;
  --color-surface-muted: #262626;
  --color-near-black: #0b0b0b;

  /* Text */
  --color-text-warm: #f0e8e0;
  --color-text-feature-list: rgba(235, 210, 190, 0.78);

  /* Status colors */
  --color-success: #22c55e;
  --color-success-dark: #059669;
  --color-error: #ef4444;
  --color-error-dark: #b91c1c;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ===== FLASH MESSAGES ===== */
#message-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 100%;
  max-width: 400px;
  padding: 0 16px;
}

.flash-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  box-shadow: 0 10px 25px var(--color-black-30);
  backdrop-filter: blur(10px);
}

.flash-message.success {
  background: linear-gradient(to right, var(--color-success), var(--color-success-dark));
}
.flash-message.error {
  background: linear-gradient(to right, var(--color-error), var(--color-error-dark));
}
.flash-message.default {
  background-color: var(--color-surface-dark);
}

.close-btn {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  background: none;
  color: var(--color-white);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.close-btn:hover {
  transform: scale(1.1);
}

/* ===== BASE ===== */
body {
  font-family: "Inter", sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 20;
}
#heroContent {
  padding-top: 0; /* JS sets this dynamically */
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-accent-orange-a35);
  background: var(--color-accent-orange-a08);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-orange);
  margin-bottom: 22px;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-orange);
  flex-shrink: 0;
}
/* ===== TOP BAR ===== */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 30;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: auto;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  padding: 6px 20px;
  color: var(--color-white-90);
}
.flex-between .right-inner {
  text-align: right;
}
.divider {
  height: 1px;
  background: var(--color-white-20);
}

/* =====================================================
   NOTIFICATION BAR 
   ===================================================== */
.notif-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--color-surface-charcoal) 0%, var(--color-surface-near-black) 100%);
  border-bottom: 2px solid var(--color-primary);
  overflow: hidden;
  max-height: 48px;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease,
    padding 0.4s ease;
}
.notif-bar.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.notif-inner {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
}
.notif-label {
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  margin-right: 14px;
  text-transform: uppercase;
}
.notif-ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.notif-ticker {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: notifScroll 18s linear infinite;
  will-change: transform;
}
.notif-ticker:hover {
  animation-play-state: paused;
}
.notif-item {
  font-size: 13px;
  color: var(--color-white-88);
  padding-right: 6px;
}
.notif-close {
  flex-shrink: 0;
  margin-left: 14px;
  font-size: 20px;
  font-weight: 700;
  background: none;
  border: none;
  color: var(--color-white-60);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.notif-close:hover {
  color: var(--color-primary);
  transform: scale(1.2);
}

@keyframes notifScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute; /* change from absolute to fixed */
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  background: linear-gradient(
    to bottom,
    var(--color-navbar-grad-1) 0%,
    var(--color-navbar-grad-2) 60%,
    var(--color-navbar-grad-3) 100%
  );
  border-bottom: 1px solid var(--color-white-06);
  border-radius: 40px;
  transition:
    top 0.4s ease,
    background 0.4s ease;
}

.navbar.scrolled {
  background: var(--color-navbar-scrolled);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  height: 58px;
  width: 58px;
}
.nav-notif-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white-10);
  color: var(--color-white-hex);
  text-decoration: none;
  margin-left: 10px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-notif-btn:hover {
  background: var(--color-primary-a20);
  color: var(--color-primary);
}
.nav-notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff5a00;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

@media (max-width: 767px) {
  .nav-notif-btn {
    width: 32px;
    height: 32px;
    margin-left: 8px;
  }
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links li a {
  text-decoration: none;
  color: var(--color-white);
  transition: 0.3s;
}
.nav-links li a:hover {
  color: var(--color-primary);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 180px;
  background: var(--color-black-90);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
}
.dropdown-menu li a:hover {
  background: var(--color-primary-a20);
  color: var(--color-primary);
}

/* BUTTON */
.btn {
  background: var(--color-primary);
  color: var(--color-black);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  height: 40px;
  font-size: 16px;
}
.btn:hover {
  background: var(--color-primary-hover);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Default: hide mobile-only things */
.hamburger-icon {
  display: none;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: inline;
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  .nav-container {
    padding: 8px 80px;
  }
}

/* ===== TABLET (768px – 1023px) ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .flex-between {
    font-size: 12px;
    padding: 10px 16px;
  }
  .notif-label {
    font-size: 10px;
    padding: 3px 8px;
  }
  .notif-item {
    font-size: 12px;
  }
  .nav-container {
    padding: 8px 24px;
  }
  .nav-links {
    gap: 20px;
    font-size: 13px;
  }
  .btn {
    height: 36px;
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ===================================================
   MOBILE MENU — base (hidden on all screens by default)
   =================================================== */
.mobile-menu {
  display: none;
}

/* ===== MOBILE (≤767px) ===== */
@media (max-width: 767px) {
  /* Hamburger visible */
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }
  .hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white-hex);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .btn {
    height: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-nav .nav-group-items li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 12px 46px;
  color: var(--color-accent-muted-mobile);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-top: 1px solid var(--color-white-04);
  transition: color 0.2s;
}
  /* Nav groups */
  .nav-group {
    border-bottom: 1px solid var(--color-white-05);
  }
  .nav-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    user-select: none;
  }
  .nav-group-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-group-left > span {
    color: var(--color-white-hex);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
  }
  .nav-group-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--color-accent-orange-a25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }
  .nav-group-arrow {
    color: var(--color-white-30);
    font-size: 18px;
    transition:
      transform 0.3s,
      color 0.2s;
  }
  .nav-group.open .nav-group-arrow {
    transform: rotate(180deg);
    color: var(--color-accent-orange);
  }
  .nav-group-items {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-group.open .nav-group-items {
    max-height: 300px;
  }
  .nav-group-items li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 12px 46px;
    color: var(--color-white-60);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid var(--color-white-04);
    transition: color 0.2s;
  }
  .nav-group-items li a:hover {
    color: var(--color-accent-orange);
  }
  .menu-nav .nav-solo a {
    font-size: 20px; font-weight: 700; padding: 18px 0;
  }

  .mobile-only {
    display: inline-flex;
  }
  .desktop-only {
    display: none;
  }

  /* Hide desktop nav */
  .nav-links {
    display: none !important;
  }

  /* Notification bar adjustments */
  .notif-bar {
    max-height: 42px;
  }
  .notif-inner {
    height: 38px;
    padding: 0 8px;
  }
  .notif-label {
    font-size: 10px;
    padding: 3px 7px;
    margin-right: 8px;
  }
  .notif-item {
    font-size: 12px;
  }
  .notif-close {
    font-size: 16px;
    margin-left: 8px;
  }

  /* Navbar offset */
  .navbar {
    top: 44px;
  }
  .navbar.notif-hidden {
    top: 44px;
  }
  .nav-container {
    padding: 15px 20px;
  }

  .mobile-menu {
  visibility: hidden !important;
  }
  .mobile-menu.active {
    visibility: visible !important;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-accent-orange-a35);
    background: var(--color-accent-orange-a08);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-orange);
    margin-bottom: 22px;
  }
  .hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent-orange);
    flex-shrink: 0;
  }
  /* =============================================
     NEW FULL-SCREEN SLIDE-IN MOBILE MENU
     ============================================= */
  .mobile-menu {
    display: block; /* override base display:none */
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    pointer-events: none;
    /* No opacity fade on the shell — only the box slides */
  }

  .mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
  }

  /* Backdrop */
  .mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-black-60);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .mobile-menu.active::before {
    opacity: 1;
  }

  /* The drawer itself */
  .menu-box {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%; /* full-screen, like the reference */
    background: var(--color-surface-menu);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.active .menu-box {
    transform: translateX(0);
  }

  /* ── Header ── */
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 28px 24px;
    flex-shrink: 0;
  }

  .menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Three orange bars (like the reference's "///" mark) */
  .logo-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
  }
  .logo-bars span {
    display: block;
    background: var(--color-primary);
    width: 5px;
    border-radius: 2px;
  }
  .logo-bars span:nth-child(1) {
    height: 10px;
  }
  .logo-bars span:nth-child(2) {
    height: 16px;
  }
  .logo-bars span:nth-child(3) {
    height: 22px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
  }
  .logo-text b {
    color: var(--color-white-hex);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
  }
  .logo-text small {
    color: var(--color-white-35);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* Close button — circle with × */
  .menu-close-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-white-18);
    border-radius: 50%;
    background: none;
    color: var(--color-white-50);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
      border-color 0.2s,
      color 0.2s;
    flex-shrink: 0;
  }
  .menu-close-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  /* ── Thin divider ── */
  .menu-divider {
    height: 1px;
    background: var(--color-white-08);
    margin: 0 28px;
    flex-shrink: 0;
  }

  /* ── Nav list ── */
  .menu-nav {
    list-style: none;
    padding: 12px 28px 0;
    flex: 1;
  }

  .menu-nav li {
    border-bottom: 1px solid var(--color-white-07);
  }

  .menu-nav li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: var(--color-white-hex);
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    transition: color 0.2s;
  }

  /* Arrow glyph */
  .menu-nav li a span {
    color: var(--color-white-15);
    font-size: 20px;
    font-weight: 400;
    transition:
      color 0.2s,
      transform 0.2s;
    flex-shrink: 0;
  }

  .menu-nav li.active > a {
    color: var(--color-primary);
  }
  .menu-nav li.active > a span {
    color: var(--color-primary);
  }

  .menu-nav li a:hover {
    color: var(--color-primary);
  }
  .menu-nav li a:hover span {
    color: var(--color-primary);
    transform: translate(4px, -4px);
  }

  /* ── CTA button ── */
  .menu-cta {
    display: block;
    margin: 24px 28px 0;
    background: var(--color-primary);
    color: var(--color-black-hex);
    padding: 15px 0;
    border-radius: 999px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .menu-cta:hover {
    background: var(--color-primary-hover);
  }

  /* ── Footer info block ── */
  .menu-footer {
    padding: 24px 28px 20px;
    border-top: 1px solid var(--color-white-07);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-shrink: 0;
  }
  .menu-footer-label {
    color: var(--color-white-28);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
  }
  .menu-footer a {
    color: var(--color-white-48);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .menu-footer a:hover {
    color: var(--color-primary);
  }

  /* ── Logout ── */
  .menu-logout-form {
    padding: 0 28px 32px;
    flex-shrink: 0;
  }
  .menu-logout-btn {
    width: 100%;
    padding: 13px;
    background: transparent;
    border: 1px solid var(--color-white-14);
    border-radius: 999px;
    color: var(--color-white-45);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition:
      border-color 0.2s,
      color 0.2s;
  }
  .menu-logout-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  /* Center card in offer grid */
  .center-card {
    grid-column: span 2;
    width: 90%;
    margin: auto;
  }
}

/* ===== DISABLE HEAVY ANIMATIONS ON MOBILE ===== */
@media (max-width: 768px) {
  .hero-content {
    animation: none;
  }
  .hero-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .offer-card:hover img {
    transform: none;
  }
}

/* ===== HERO ANIMATE ===== */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: smoothFade 0.5s ease-out forwards;
}
@keyframes smoothFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 20;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.hero-title {
  font-family: serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 22px;
  max-width: 900px;
  font-size: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--color-accent-orange);
}

.hero-desc {
  font-size: 14px;
  color: var(--color-white-50);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-dark);
  color: var(--color-near-black);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    opacity 0.15s,
    transform 0.1s;
}
.cta-btn:hover {
  opacity: 0.92;
}
.cta-btn:active {
  transform: scale(0.98);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  background: var(--color-black-45);
  border: 1px solid var(--color-white-12);
  border-radius: 12px;
  padding: 1.2rem 2rem;
  width: fit-content;
}
.cta-btn-ghost {
  margin-top: 23px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--color-white-20);
  color: var(--color-white-70);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.cta-btn-ghost:hover {
  border-color: var(--color-white-50);
  color: var(--color-white-hex);
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white-hex);
  line-height: 1;
}
.hero-stat-plus {
  color: var(--color-accent-secondary);
  font-size: 1.3rem;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--color-white-65);
  margin-top: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-white-20);
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.8rem;
    padding: 1rem;
    width: auto;
    max-width: 95vw;
    margin-top: 100px;
  }
  .hero-stat-number {
    font-size: 1.3rem;
  }
  .hero-stat-label {
    font-size: 0.65rem;
  }
  .hero-stat-divider {
    height: 30px;
  }
}

/* RESPONSIVE HERO TEXT */
@media (min-width: 640px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-desc {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    padding-top: 190px;
  }
  .hero-title {
    font-size: 52px;
  }
  .hero-desc {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .hero-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .cta-btn {
    margin-top: 20px;
  }
  .hero-content {
    padding: 130px 20px 40px;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 72px;
  }
  .hero-desc {
    font-size: 20px;
  }
  .hero-content {
    padding-top: 200px;
  }
}

.break-line {
  display: none;
}
@media (min-width: 640px) {
  .break-line {
    display: block;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--color-bg-deep);
  padding: 50px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    var(--color-primary-a02) 2px,
    var(--color-primary-a02) 4px
  );
  pointer-events: none;
  z-index: 0;
}
.features-container {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: auto;
}

.small-heading {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.main-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white-hex);
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.25;
}
.main-heading span {
  color: var(--color-primary);
}

.cyber-divider {
  width: 260px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto 32px;
  box-shadow: 0 0 10px var(--color-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.feature-card {
  background: var(--color-card-dark);
  border: 1px solid var(--color-primary-a18);
  border-radius: 4px;
  padding: 20px 16px 16px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-transparent), var(--color-primary), var(--color-transparent));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover,
.feature-card.active {
  background: var(--color-card-dark-hover);
  border-color: var(--color-primary-a55);
}
.feature-card:hover::before,
.feature-card.active::before,
.feature-card:hover::after,
.feature-card.active::after {
  opacity: 1;
}

.cyber-corner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--color-primary);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
}
.cyber-corner.tl {
  top: 5px;
  left: 5px;
  border-width: 1px 0 0 1px;
}
.cyber-corner.br {
  bottom: 5px;
  right: 5px;
  border-width: 0 1px 1px 0;
}
.feature-card:hover .cyber-corner,
.feature-card.active .cyber-corner {
  opacity: 1;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-box {
  width: 66px;
  height: 66px;
  border: 1px solid var(--color-primary-a30);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}
.icon-box img {
  width: 22px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(335deg) brightness(1.1);
}
.feature-card:hover .icon-box,
.feature-card.active .icon-box {
  background: var(--color-primary-a08);
  border-color: var(--color-primary);
  box-shadow: 0 0 14px var(--color-primary-a20) inset;
}
.card-meta {
  flex: 1;
  min-width: 0;
}
.card-label {
  font-size: 12px;
  color: var(--color-primary);
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.feature-card h3 {
  color: var(--color-text-warm);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feature-card:hover h3,
.feature-card.active h3 {
  color: var(--color-white-hex);
}

.card-chevron {
  color: var(--color-primary-a20);
  font-size: 18px;
  transition:
    transform 0.35s,
    color 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.feature-card.active .card-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.feature-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin 0.35s;
}
.feature-card.active .feature-desc {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
}
.feature-desc-inner {
  border-top: 1px solid var(--color-primary-a12);
  padding-top: 14px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--color-text-feature-list);
  font-size: 12px;
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid var(--color-primary-a07);
}
.feature-list li:last-child {
  border-bottom: none;
}
.cyber-bullet {
  flex-shrink: 0;
  margin-top: 6px;
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 0 5px var(--color-primary);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features-section {
    padding: 70px 28px;
  }
  .small-heading {
    font-size: 11px;
    letter-spacing: 5px;
  }
  .main-heading {
    font-size: 30px;
  }
  .cyber-divider {
    width: 70px;
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .feature-card {
    padding: 24px 20px 20px;
  }
  .icon-box {
    width: 52px;
    height: 52px;
  }
  .icon-box img {
    width: 25px;
  }
  .card-label {
    font-size: 10px;
  }
  .feature-card h3 {
    font-size: 14px;
    white-space: normal;
  }
  .feature-list li {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .features-section {
    padding: 100px 20px;
  }
  .small-heading {
    font-size: 11px;
    letter-spacing: 5px;
  }
  .main-heading {
    font-size: 36px;
  }
  .cyber-divider {
    width: 80px;
    margin-bottom: 44px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: start;
  }
  .feature-card {
    padding: 28px 22px 22px;
  }
  .icon-box {
    width: 54px;
    height: 54px;
  }
  .icon-box img {
    width: 26px;
  }
  .card-label {
    font-size: 10px;
  }
  .feature-card h3 {
    font-size: 15px;
    white-space: normal;
  }
  .feature-list li {
    font-size: 13px;
  }
}

/* ===== OFFER SECTION ===== */
.offer-section {
  background: var(--color-black);
  padding: 80px 20px;
}
.offer-container {
  max-width: 1200px;
  margin: auto;
}
.offer-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 60px;
}
.offer-heading .white {
  color: var(--color-white);
}
.offer-heading .orange {
  color: var(--color-primary);
  font-weight: 800;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.offer-card {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  cursor: pointer;
}
.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}
.offer-card:hover img {
  transform: scale(1.1);
}
.offer-grid .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-black), var(--color-black-40), var(--color-transparent));
}
.skew-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-black);
  transform: skewY(-3deg);
}
.content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}
.content p {
  color: var(--color-primary);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}
.content h3 {
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .offer-heading {
    font-size: 40px;
  }
  .offer-card img {
    height: 300px;
  }
  .content h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .offer-section {
    padding: 90px 30px;
  }
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .offer-card img {
    height: 260px;
  }
  .center-card {
    grid-column: auto;
    width: 100%;
  }
  .content h3 {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .offer-section {
    padding: 120px 20px;
  }
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .offer-card img {
    height: 320px;
  }
  .center-card {
    grid-column: auto;
    width: 100%;
  }
  .content h3 {
    font-size: 24px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-black-70);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.cta-top-text {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--color-white-70);
  margin-bottom: 10px;
}
.cta-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.cta-title span {
  color: var(--color-primary);
}
.cta-sub-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white-60);
  font-size: 20px;
  margin-bottom: 15px;
}
.cta-highlight {
  color: var(--color-primary);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 45px;
  }
  .cta-highlight {
    font-size: 16px;
  }
  .cta-btn {
    padding: 14px 40px;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cta-section {
    height: 75vh;
  }
  .cta-title {
    font-size: 50px;
  }
  .cta-content {
    text-align: center;
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    height: 80vh;
  }
  .cta-bg {
    object-position: center;
  }
  .cta-content {
    text-align: left;
    padding: 0 80px;
  }
  .cta-title {
    font-size: 60px;
  }
  .cta-btn-wrapper {
    justify-content: flex-start;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--color-black);
  padding: 80px 20px;
  text-align: center;
}
.pricing-container {
  max-width: 1200px;
  margin: auto;
}
.pricing-subtitle {
  color: var(--color-primary);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.pricing-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}
.pricing-grid {
  display: grid;
  gap: 20px;
}
/* ============================================================
     SERVICE CAROUSEL — themed entirely off :root variables
     ============================================================ */
  .pricing-title .side-letter{
    color: var(--color-accent-orange);
  }
  .services-section {
    background: var(--color-bg-deep);
    padding: 50px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .service-carousel {
    position: relative;
    max-width: 480px;
    margin: 40px auto 0;
  }
 
  /* ── Progress bar ── */
  .sc-progress-track {
    width: 100%;
    height: 3px;
    background: var(--color-white-08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 28px;
  }
  .sc-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary-a55);
    border-radius: 999px;
    transition: width linear;
  }
 
  /* ── Stage: arrows + slide track ── */
  .sc-stage {
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .sc-arrow {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-primary-a30);
    background: var(--color-card-dark);
    color: var(--color-white-70);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.15s;
    z-index: 2;
  }
  .sc-arrow:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-card-dark-hover);
  }
  .sc-arrow:active {
    transform: scale(0.92);
  }
 
  .sc-track {
    position: relative;
    flex: 1;
    min-height: 340px;
  }
 
  /* ── Slide: absolutely stacked, cross-fade + scale ── */
  .sc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.94) translateY(6px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.4,0,.2,1), transform 0.5s cubic-bezier(.4,0,.2,1);
  }
  .sc-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }
 
  .sc-slide-inner {
  position: relative;
  background: var(--color-card-dark);
  border: 1px solid var(--color-primary-a18);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color 0.3s;
}
.sc-slide.active .sc-slide-inner {
  border-color: var(--color-primary-a55);
}

.sc-slide .cyber-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--color-primary);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 3;
}
.sc-slide.active .cyber-corner { opacity: 1; }
.sc-slide .cyber-corner.tl { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; }
.sc-slide .cyber-corner.br { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; }

/* ── Full-bleed rectangular image filling the whole slide ── */
.sc-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.sc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: none;
  background: var(--color-surface-charcoal);
  position: relative;
  z-index: 1;
}
/* Gradient scrim so text stays legible over the photo */
.sc-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 25%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,.35) 75%,
    rgba(0,0,0,.55) 100%
  );
  z-index: 2;
}
.sc-image-ring { display: none; }

/* ── Text overlaid on top of the image, anchored to the bottom ── */
.sc-index {
  position: relative;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 0 8px;
  padding: 0 26px;
}

.sc-title {
  position: relative;
  z-index: 3;
  color: var(--color-accent-orange);
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 4px 0 12px;
  padding: 0 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 12px var(--color-primary-a55), 0 0 24px var(--color-primary-a20);
}
.sc-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  margin: 10px auto 0;
}
.sc-desc {
  position: relative;
  z-index: 3;
  color: var(--color-white-70);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.5px;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 26px 26px;
}
 
  /* ── Dots ── */
  .sc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
  }
  .sc-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-white-15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s;
  }
  .sc-dot.active {
    background: var(--color-primary);
    width: 22px;
  }
 
  /* ===== Responsive ===== */
  @media (min-width: 768px) {
    .service-carousel { max-width: 620px; }
    .sc-track { min-height: 380px; }
    .sc-arrow { width: 48px; height: 48px; }
    .sc-title { font-size: 1.6rem; letter-spacing: 2.5px; }
    .sc-desc { font-size: 1rem; max-width: 400px; }
  }
 
  @media (max-width: 480px) {
    .sc-stage { gap: 4px; }
    .sc-arrow { width: 36px; height: 36px; }
    .sc-track { min-height: 300px; }
    .sc-slide-inner { padding: 26px 16px 22px; }
    .sc-title { font-size: 1.05rem; letter-spacing: 1.5px; }
    .sc-desc { font-size: 0.85rem; }
  }

/* ===== EQUIPMENT BRANDS SECTION — auto-scrolling marquee ===== */
.brands-section {
  background: var(--color-black-hex);
  padding: 70px 0;
  text-align: center;
  overflow: hidden;
}

.brands-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 18px;
}
.brands-mark span {
  display: block;
  width: 18px;
  background: var(--color-primary);
  clip-path: polygon(60% 0%, 100% 0%, 40% 100%, 0% 100%);
}
.brands-mark span:nth-child(1) { height: 8px; }
.brands-mark span:nth-child(2) { height: 8px; }
.brands-mark span:nth-child(3) { height: 8px; }
.brands-mark span {
  display: block;
  width: 12px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: skewX(55deg);
}

.brands-heading {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.35;
  color: var(--color-white-hex);
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 0 20px;
}
.brands-heading .side-letter{
  font-size: 22px;
  color: var(--color-accent-orange);
}
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: brandsScroll 22s linear infinite;
  will-change: transform;
}
.brands-track:hover {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.brand-logo {
  width: 260px;
  height: 130px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.brand-logo:hover {
  opacity: 1;
}

@media (min-width: 640px) {
  .brands-heading { font-size: 32px; }
  .brand-logo { width: 290px; height: 145px; }
  .brands-track { gap: 80px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .brands-section { padding: 90px 0; }
  .brands-heading { font-size: 36px; }
  .brand-logo { width: 320px; height: 160px; }
  .brands-track { gap: 90px; animation-duration: 26s; }
}
@media (min-width: 1024px) {
  .brands-section { padding: 110px 0; }
  .brands-heading { font-size: 42px; }
  .brand-logo { width: 350px; height: 175px; }
  .brands-track { gap: 100px; animation-duration: 30s; }
}
.pricing-card {
  border: 1px solid var(--color-white-10);
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  min-height: auto;
}
.pricing-card:hover {
  border-color: var(--color-primary);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-black);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
}
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.price {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 800;
}
.duration {
  color: var(--color-white-60);
  margin-bottom: 20px;
}

.pricing-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s ease;
}
.pricing-card .pricing-desc {
  display: none;
}
.pricing-card.active .pricing-desc {
  max-height: 300px;
  opacity: 1;
  display: block;
}
.pricing-desc ul {
  margin-bottom: 20px;
}
.pricing-desc li {
  margin: 8px 0;
  color: var(--color-white-80);
}

.join-btn {
  display: block;
  background: var(--color-surface-muted);
  padding: 10px;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 600;
  transition: 0.3s;
}
.join-btn:hover {
  background: var(--color-primary);
  color: var(--color-black);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-section {
    padding: 90px 30px;
  }
  .pricing-title {
    font-size: 32px;
  }
  .price {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-title {
    font-size: 40px;
  }
  .price {
    font-size: 45px;
  }
}

/* ============================================================
   FOOTER — futuristic redesign, same CSS variables
   ============================================================ */
.footer {
  position: relative;
  background: var(--color-black-hex);
  color: var(--color-white-hex);
  font-family: "Inter", sans-serif;
  overflow: hidden;
  isolation: isolate;
}

/* ambient glow + circuit-line texture behind everything */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 0%, var(--color-primary) 0%, transparent 32%),
    radial-gradient(circle at 85% 100%, var(--color-primary) 0%, transparent 28%);
  opacity: 0.08;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--color-white-10) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-white-10) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5) 30%, transparent 90%);
  opacity: 0.15;
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  position: relative;
}

/* ---------- Top strip: contact info ---------- */

/* glowing gradient hairline instead of flat border */
.footer-top {
  position: relative;
  border-bottom: 1px solid transparent;
}
.footer-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary) 50%, transparent);
  opacity: 0.6;
}

.footer-top-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-contact p {
  color: var(--color-white-80);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.2px;
}

/* icon gets a rotating ring + glow instead of a flat circle */
.footer-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px var(--color-white-10), 0 0 24px -6px var(--color-primary);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.footer-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px dashed var(--color-primary);
  opacity: 0.5;
  animation: footer-ring-spin 14s linear infinite;
}
.footer-contact:hover .footer-icon {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--color-white-10), 0 0 32px -4px var(--color-primary);
}
.footer-icon img {
  width: 22px;
  filter: invert(1);
  z-index: 1;
}

@keyframes footer-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Main grid ---------- */

.footer-main {
  display: grid;
  gap: 40px;
  padding: 64px 0 56px;
  position: relative;
}

/* ---------- Brand heading: "GOLDEN" ghost outline + static "GYM" ---------- */
.brand-heading-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(90px, calc(var(--ghost-units, 438) * 0.32px), 260px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brand-heading-wrap {
    width: clamp(130px, calc(var(--ghost-units, 438) * 0.42px), 380px);
  }
}

@media (min-width: 1024px) {
  .brand-heading-wrap {
    width: clamp(150px, calc(var(--ghost-units, 438) * 0.5px), 460px);
  }
}

.brand-ghost-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--ghost-units, 438) / 120;
  overflow: visible;
  pointer-events: none;
}

.ghost-letter-path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 4.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 400 400;
  stroke-dashoffset: 400;
  filter: drop-shadow(0 0 6px var(--color-primary-a55));
  animation: ghost-hand-draw-path 9s linear infinite;
}

@keyframes ghost-hand-draw-path {
  0%   { stroke-dashoffset: 400; }
  45%  { stroke-dashoffset: 0; }
  75%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -400; }
}

.footer-brand h2 {
  position: relative;
  z-index: 1;
  margin-top:0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--color-gym-name);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transform: skewX(-8deg);
  display: inline-block;
}

.footer-brand p {
  margin: 16px 0 22px;
  color: var(--color-white-70);
  line-height: 1.7;
  font-size: 14.5px;
  max-width: 34ch;
}

/* ---------- Social icons ---------- */

/* outlined hex-ish chip with sweep-fill hover */
.footer-social {
  display: flex;
  gap: 14px;
}
.social-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--color-white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-primary);
  background: var(--color-white-10);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}
.social-icon:hover {
  color: var(--color-black-hex);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}
.social-icon:hover::before {
  transform: translateY(0%);
}

/* ---------- Link columns (Useful Links / Support / Opening Hours) ---------- */

.footer-links h3,
.footer-extra h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-white-hex);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.footer-links h3::after,
.footer-extra h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.footer-links ul,
.footer-extra ul {
  list-style: none;
}
.footer-links li,
.footer-extra li {
  margin-bottom: 11px;
}

/* links get an animated left-to-right underline + arrow-style shift */
.footer-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-white-70);
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  padding-left: 0;
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 14px;
  text-decoration: none;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.footer-links.support h3,
.footer-extra.hours h3,
.footer-links.useful h3 {
  color: var(--color-primary-hover);
}
.footer-links.support h3::after,
.footer-extra.hours h3::after {
  background: var(--color-primary-hover);
  box-shadow: 0 0 10px var(--color-primary-hover);
}
.footer-extra.hours ul {
  color: var(--color-white-70);
  font-size: 14px;
}
.footer-extra.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 220px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--color-white-10);
}
.footer-extra.hours li:first-child {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom-color: transparent;
}

/* ---------- Bottom bar ---------- */

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--color-white-10);
  text-align: center;
  padding: 18px 15px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--color-white-60);
  background: var(--color-white-10);
}
.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: text-shadow 0.3s ease;
}
.footer-bottom a:hover {
  text-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 60%, transparent);
}
.footer-bottom span {
  color: var(--color-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-top-inner {
    gap: 80px;
    justify-content: center;
    padding: 30px 20px;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 50px 20px;
  }
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  .footer-brand p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links.useful {
    grid-column: 1;
  }
  .footer-links.support {
    grid-column: 2;
  }
  .footer-extra.hours {
    grid-column: span 2;
    text-align: center;
  }
  .footer-extra.hours li {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-top-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-icon {
    width: 60px;
    height: 60px;
    margin-left: 6px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
  }
  .footer-contact p {
    font-size: 13px;
    margin-left: 10px;
  }
  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  .footer-brand p {
    max-width: none;
  }
  .footer-links.useful {
    grid-column: 1;
    text-align: center;
  }
  .footer-links.support {
    grid-column: 2;
    text-align: center;
  }
  .footer-links.useful h3,
  .footer-links.support h3 {
    padding-bottom: 10px;
  }
  .footer-links.useful h3::after,
  .footer-links.support h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links.useful li,
  .footer-links.support li {
    display: flex;
    justify-content: center;
  }
  .footer-links a:hover {
    padding-left: 0;
  }
  .footer-links a::before {
    display: none;
  }
  .footer-extra.hours {
    grid-column: span 2;
    text-align: center;
  }
  .footer-extra.hours h3 {
    display: block;
    width: 100%;
  }
  .footer-extra.hours h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-extra.hours ul {
    display: inline-block;
    width: auto;
    text-align: left;
  }
  .footer-extra.hours li {
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
  }
}
@media (max-width: 480px) {
  .brand-heading-wrap {
    height: clamp(46px, 15vw, 80px);
  }
}