/* ================================================================
   BELL SPORTS — styles.css
  Theme: Futuristic Dark with Darker Gold Accent
   Stack: Pure CSS3 (no framework)
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg: #0a0a0f; /* Deep near-black */
  --color-bg-2: #0f0f1a; /* Slightly lighter dark */
  --color-bg-card: #13131f; /* Card background */
  --color-bg-card-2: #1a1a2e; /* Alt card background */
  --color-accent: #b89600; /* Primary deeper gold accent */
  --color-accent-light: #d1ae32; /* Lighter deep gold */
  --color-accent-glow: rgba(184, 150, 0, 0.25); /* Glow effect */
  --color-text: #e8e8f0; /* Primary text */
  --color-text-muted: #8a8ab0; /* Secondary / muted text */
  --color-text-faint: #4a4a6a; /* Very faint text */
  --color-border: rgba(184, 150, 0, 0.15); /* Subtle borders */
  --color-border-bright: rgba(184, 150, 0, 0.5); /* Visible borders */
  --color-white: #ffffff;

  /* Typography */
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

/* Utility: Accent colored text */
.accent-text {
  color: var(--color-accent);
}

/* ----------------------------------------------------------------
   3. LAYOUT HELPERS
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Standard section vertical spacing */
.section {
  padding: var(--space-xxl) 0;
}

/* ----------------------------------------------------------------
   4. REUSABLE BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

/* Filled primary button */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  box-shadow: 0 0 24px var(--color-accent-glow);
  transform: translateY(-2px);
}

/* Outlined button */
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 0 24px var(--color-accent-glow);
  transform: translateY(-2px);
}

/* Large size modifier */
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   5. SECTION HEADER (reused across sections)
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.35rem 1rem;
  border: 1px solid var(--color-border-bright);
  border-radius: 100px;
  margin-bottom: 1rem;
  background: rgba(184, 150, 0, 0.08);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   6. REVEAL ANIMATIONS (triggered by JS IntersectionObserver)
   ---------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   7. NAVBAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

/* Add glass blur when scrolled (class added by JS) */
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo image in nav */
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* Glow on hover */
  transition: filter var(--transition-base);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 8px var(--color-accent));
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(184, 150, 0, 0.1);
}

.nav-cta {
  margin-left: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-height) 1.5rem 4rem;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(184, 150, 0, 0.12) 0%,
      transparent 70%
    ),
    var(--color-bg);
}

/* Animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  /* Fade out from top */
  mask-image: radial-gradient(
    ellipse 90% 75% at 50% 40%,
    black 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 75% at 50% 40%,
    black 30%,
    transparent 100%
  );
}

/* Animated speed lines */
.speed-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.speed-lines span {
  position: absolute;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 50%,
    transparent 100%
  );
  opacity: 0;
  animation: speedLine 3s ease-in-out infinite;
}

.speed-lines span:nth-child(1) {
  top: 20%;
  width: 40%;
  animation-delay: 0s;
  animation-duration: 2.5s;
}
.speed-lines span:nth-child(2) {
  top: 40%;
  width: 60%;
  animation-delay: 0.5s;
  animation-duration: 3s;
}
.speed-lines span:nth-child(3) {
  top: 60%;
  width: 35%;
  animation-delay: 1s;
  animation-duration: 2.8s;
}
.speed-lines span:nth-child(4) {
  top: 30%;
  width: 55%;
  animation-delay: 1.5s;
  animation-duration: 3.2s;
}
.speed-lines span:nth-child(5) {
  top: 70%;
  width: 45%;
  animation-delay: 0.8s;
  animation-duration: 2.6s;
}
.speed-lines span:nth-child(6) {
  top: 80%;
  width: 30%;
  animation-delay: 1.8s;
  animation-duration: 3.5s;
}

@keyframes speedLine {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateX(120vw);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--color-border-bright);
  border-radius: 100px;
  background: rgba(184, 150, 0, 0.08);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px var(--color-accent-glow));
  animation: fadeInDown 0.8s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-white);
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .line-1 {
  display: block;
}

.hero-title .line-2 {
  display: block;
  /* Subtle gradient on the accent word */
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.5s ease both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-border-bright);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(14px);
    opacity: 0.3;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ----------------------------------------------------------------
   9. STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--color-bg-card-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
}

/* ----------------------------------------------------------------
   10. ABOUT SECTION
   ---------------------------------------------------------------- */
.about {
  background: var(--color-bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* Visual frame with corner decorators */
.about-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.about-logo-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

/* Corner accent brackets */
.frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--color-accent);
  border-style: solid;
}

.frame-corner.tl {
  top: 14px;
  left: 14px;
  border-width: 2px 0 0 2px;
}
.frame-corner.tr {
  top: 14px;
  right: 14px;
  border-width: 2px 2px 0 0;
}
.frame-corner.bl {
  bottom: 14px;
  left: 14px;
  border-width: 0 0 2px 2px;
}
.frame-corner.br {
  bottom: 14px;
  right: 14px;
  border-width: 0 2px 2px 0;
}

/* Floating "trusted" badge */
.about-badge-float {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 32px var(--color-accent-glow);
}

/* About text side */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

.about-highlights li i {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   11. PRODUCTS SECTION
   ---------------------------------------------------------------- */
.products {
  background: var(--color-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Base product card */
.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition:
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  overflow: hidden;
}

/* Top yellow line on hover */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-accent-light)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.product-card:hover {
  border-color: var(--color-border-bright);
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--color-border-bright);
}

.product-card:hover::before {
  transform: scaleX(1);
}

/* Featured card (cycles) */
.product-card.featured {
  border-color: rgba(184, 150, 0, 0.4);
  background: linear-gradient(
    135deg,
    var(--color-bg-card) 0%,
    rgba(184, 150, 0, 0.05) 100%
  );
  grid-column: span 1;
}

.product-card.featured::before {
  transform: scaleX(1);
}

.product-featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 0, 0.12);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.product-card:hover .product-icon {
  background: rgba(184, 150, 0, 0.2);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.product-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-list li i {
  color: var(--color-accent);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   12. BRANDS SECTION (ticker)
   ---------------------------------------------------------------- */
.brands {
  background: var(--color-bg-2);
}

.brands-ticker-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

/* Fade edges */
.brands-ticker-wrapper::before,
.brands-ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}

.brands-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-2) 0%, transparent 100%);
}

.brands-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg-2) 0%, transparent 100%);
}

.brands-ticker {
  overflow: hidden;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-faint);
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
}

.brand-name:hover {
  color: var(--color-accent);
}

.brand-sep {
  color: var(--color-accent);
  font-size: 0.7rem;
  opacity: 0.5;
}

/* ----------------------------------------------------------------
   13. WHY CHOOSE US
   ---------------------------------------------------------------- */
.why-us {
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition:
    border-color var(--transition-base),
    transform var(--transition-base);
}

.why-card:hover {
  border-color: var(--color-border-bright);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 0, 0.1);
  border: 1px solid var(--color-border-bright);
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--color-accent);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.why-card:hover .why-icon-wrap {
  background: rgba(184, 150, 0, 0.2);
  box-shadow: 0 0 28px var(--color-accent-glow);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   13. MEET THE FOUNDER
   ---------------------------------------------------------------- */
.founder {
  background: var(--color-bg-2);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border: 1px solid var(--color-border);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 2px);
  transition: transform var(--transition-slow);
}

.founder-image-frame:hover .founder-img {
  transform: scale(1.04);
}

.founder-overlay-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  color: var(--color-white);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.founder-overlay-badge i {
  color: var(--color-accent);
  font-size: 1.3rem;
}

.founder-story {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.founder-story .section-tag {
  align-self: flex-start;
}

.founder-story .section-title {
  margin-bottom: 0.75rem;
}

.founder-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0.5rem 0;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(184, 150, 0, 0.05);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.highlight-item:hover {
  background: rgba(184, 150, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.highlight-item i {
  color: var(--color-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.highlight-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.highlight-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.founder-mission {
  font-style: italic;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(184, 150, 0, 0.08);
  border-radius: var(--radius-sm);
}

.founder-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------
   14. CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(184, 150, 0, 0.15) 0%,
    rgba(184, 150, 0, 0.05) 100%
  );
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  padding: 5rem 1.5rem;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(184, 150, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   15. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact {
  background: var(--color-bg-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition-base);
}

.contact-card:hover {
  border-color: var(--color-border-bright);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 0, 0.12);
  border: 1px solid var(--color-border-bright);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-card-body h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-card-body address {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
}

.contact-link {
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

/* Store timings */
.store-timings {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.store-timings h4 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-timings h4 i {
  color: var(--color-accent);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.timing-row:last-child {
  border-bottom: none;
}

/* Map embed */
.contact-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-wrapper {
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-cta {
  align-self: flex-start;
}

/* ----------------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer-top {
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-lg);
}

/* Brand column */
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.footer-about-short {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(184, 150, 0, 0.1);
  box-shadow: 0 0 14px var(--color-accent-glow);
}

/* Link columns */
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links ul a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition:
    color var(--transition-fast),
    padding-left var(--transition-fast);
}

.footer-links ul a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

/* Footer contact column */
.footer-contact address {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact address p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-contact address i {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact address a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-contact address a:hover {
  color: var(--color-accent);
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--color-text-faint);
}

.footer-bottom-inner .accent-text i {
  font-size: 0.7rem;
}

/* ----------------------------------------------------------------
   17. BACK TO TOP BUTTON
   ---------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent-light);
  transform: translateY(-4px);
}

/* ----------------------------------------------------------------
   18. RESPONSIVE — TABLET (≤ 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Nav: hide links + CTA, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav drawer */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  /* Products / why grid: 2 columns on tablet */
  .products-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About: stack */
  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Founder: stack */
  .founder-grid {
    grid-template-columns: 1fr;
  }

  /* Contact: stack */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer: 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA: stack */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
   19. RESPONSIVE — MOBILE (≤ 600px)
   ---------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --space-xxl: 4rem;
  }

  /* Hero */
  .hero-logo {
    height: 90px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats: 2 per row */
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stat-divider {
    display: none;
  }

  /* Products / Why: 1 column */
  .products-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer: stack all */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Map height */
  .map-wrapper {
    height: 260px;
  }

  /* Founder image height on mobile */
  .founder-image-frame {
    min-height: 280px;
  }

  /* Back to top */
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
