/* ══════════════════════════════════════════════
   TOWER FOOTWEAR — main.css
   Tower Rubber Pvt. Ltd.
   Colors: #ED0606 (Red) | #E7C500 (Yellow)
   Fonts:  Barlow Condensed (display) | Barlow (body)
══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --red:        #C00404;
  --red-dark:   #c00404;
  --red-light:  rgba(237,6,6,0.06);
  --yellow:     #E7C500;
  --yellow-dark:#d4b300;
  --black:      #111111;
  --off-white:  #F8F6F3;
  --mid-grey:   #6B6B6B;
  --light-grey: #EBEBEB;
  --white:      #ffffff;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-accent:  'Playfair Display', serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm:  0 2px 8px  rgba(0,0,0,0.07);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.12);
  --shadow-red: 0 6px 20px rgba(237,6,6,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 68px;
}
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
section[id], div[id] {
  scroll-margin-top: 80px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-outline {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-solid {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-solid:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-weight: 800;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231,197,0,0.4);
}
.btn-lg { padding: 15px 36px; font-size: 14px; }

/* ── SECTION LABELS ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--light-grey);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  padding: 5px 16px 5px 12px;
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
  line-height: 1;
  transition: background 0.2s ease;
}
.logo-badge span { color: var(--yellow); }
.logo:hover .logo-badge { background: var(--red-dark); }
.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease-out);
}
.nav a:hover,
.nav a.active { color: var(--red); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  transition: color 0.2s ease;
}
.mobile-nav nav a:hover { color: var(--red); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.mobile-nav-actions .btn { justify-content: center; padding: 14px; font-size: 14px; }

/* ════════════════════════════════════════════
   HERO CAROUSEL
════════════════════════════════════════════ */
.hero {
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 68px);
  min-height: 540px;
  max-height: 860px;
}
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.75s var(--ease-out);
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1.04); }
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
}

/* Slide BGs — swap with real product images in production */
.slide-1 .slide-bg { background-color: #1a0202; background-image: url('../images/hero-slider/slider-1.webp'); }
.slide-2 .slide-bg { background-color: #062018; background-image: url('../images/hero-slider/slider-2.webp'); }
.slide-3 .slide-bg { background-color: #0d0d2a; background-image: url('../images/hero-slider/slider-3.webp'); }

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out) 0.1s, transform 0.5s var(--ease-out) 0.1s;
}
.slide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--yellow);
}
.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out) 0.22s, transform 0.55s var(--ease-out) 0.22s;
}
.slide-headline em {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--yellow);
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0;
}
.slide-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out) 0.34s, transform 0.5s var(--ease-out) 0.34s;
}
.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease-out) 0.44s, transform 0.5s var(--ease-out) 0.44s;
}
/* Activate when slide is active */
.slide.active .slide-eyebrow,
.slide.active .slide-headline,
.slide.active .slide-sub,
.slide.active .slide-actions {
  opacity: 1;
  transform: none;
}

/* Carousel Controls */
.carousel-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dot.active {
  background: var(--yellow);
  width: 28px;
  border-radius: 4px;
}
.carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}
.carousel-arrow {
  pointer-events: all;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--black);
  overflow: hidden;
  padding: 0;
}
.trust-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.trust-ticker:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.trust-item .dot {
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(237,6,6,0.035);
  letter-spacing: -8px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 4px;
}
.about-stat-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--red);
  color: var(--white);
  padding: 28px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(237,6,6,0.3);
  min-width: 140px;
}
.about-stat-badge .num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.about-stat-badge .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  opacity: 0.85;
  line-height: 1.4;
}
.about-desc {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 3px;
  border-left: 3px solid var(--yellow);
}
.pillar-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.pillar-text strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.pillar-text span { font-size: 12px; color: var(--mid-grey); line-height: 1.4; }

/* ════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════ */
.products { background: var(--white); }

/* ════════════════════════════════════════════
   PRODUCTS — shared across home & products page
════════════════════════════════════════════ */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Filter bar ── */
.products-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 2px solid var(--light-grey);
  background: var(--white);
  color: var(--mid-grey);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* ── Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Card ── */
.product-card {
  background: var(--off-white);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--light-grey);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ── Badge ── */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Image ── */
.product-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e5e5e5;
  position: relative;
  flex-shrink: 0;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-cat-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

/* ── Info block ── */
.product-info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-number,
.product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  line-height: 1.05;
}

/* ── Variants ── */
.product-variants {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.variant-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.variant-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  width: 38px;
  flex-shrink: 0;
}

/* Color swatches */
.color-swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  transition: outline-color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.swatch.active,
.swatch:hover {
  outline-color: var(--black);
  transform: scale(1.15);
}

/* Size chips */
.size-chips { display: flex; gap: 4px; flex-wrap: wrap; }
.size-chip {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  border: 1.5px solid var(--light-grey);
  cursor: pointer;
  color: var(--mid-grey);
  background: transparent;
  transition: all 0.15s ease;
  line-height: 1;
}
.size-chip.active,
.size-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* Qty control */
.qty-control {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: 3px;
  overflow: hidden;
}
.qty-btn {
  width: 30px; height: 30px;
  border: none;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--light-grey); }
.qty-display {
  width: 34px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  border: none;
  background: transparent;
  pointer-events: none;
  user-select: none;
}

/* ── Price row ── */
.product-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  border-top: 1px solid var(--light-grey);
  margin-top: auto;
}
.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.product-price-locked {
  font-size: 12px;
  font-weight: 700;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-price-locked i { color: var(--red); }

/* ── Footer row ── */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--light-grey);
  margin-top: 4px;
  gap: 8px;
}
.product-art {
  font-size: 10px;
  color: var(--mid-grey);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.product-art span {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0;
}

/* ── Cart button ── */
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cart:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-cart--login { background: var(--black); }
.btn-cart--login:hover { background: #333; }
.btn-cart.added {
  background: #22c55e !important;
  pointer-events: none;
}

/* ── Cart badge in header ── */
.cart-btn { position: relative; padding: 10px 16px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.show { display: flex; }

/* ── CTA below grid ── */
.products-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--light-grey);
}
.products-cta p {
  font-size: 14px;
  color: var(--mid-grey);
  margin-bottom: 18px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-cart { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════ */
.why {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-glow {
  position: absolute;
  top: -240px; right: -240px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(237,6,6,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-title { color: var(--white); }
.why-left .section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--yellow);
  font-size: 0.8em;
  font-weight: 700;
}
.why-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  margin-bottom: 32px;
}
.why-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.why-stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.why-stat .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.45s var(--ease-out),
    background 0.2s ease,
    border-color 0.2s ease;
}
.why-card.visible { opacity: 1; transform: none; }
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}
.why-card:hover::after { width: 100%; }
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.why-card-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
/* Stagger delays */
.why-card:nth-child(1) { transition-delay: 0.05s; }
.why-card:nth-child(2) { transition-delay: 0.14s; }
.why-card:nth-child(3) { transition-delay: 0.23s; }
.why-card:nth-child(4) { transition-delay: 0.32s; }
.why-card:nth-child(5) { transition-delay: 0.41s; }
.why-card:nth-child(6) { transition-delay: 0.50s; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 72px;
  align-items: start;
}
.faq-sticky { position: sticky; top: 96px; }
.faq-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.faq-sticky p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.2s ease;
}
.faq-item.visible { opacity: 1; transform: none; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-item:nth-child(1) { transition-delay: 0.04s; }
.faq-item:nth-child(2) { transition-delay: 0.10s; }
.faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-item:nth-child(4) { transition-delay: 0.22s; }
.faq-item:nth-child(5) { transition-delay: 0.28s; }
.faq-item:nth-child(6) { transition-delay: 0.34s; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: background 0.2s ease, color 0.2s ease;
}
.faq-q:hover { background: rgba(237,6,6,0.03); }
.faq-item.open .faq-q { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  transition: all 0.25s ease;
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.8;
  padding: 0 24px 22px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */footer { background: #0A0A0A; }
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .logo-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 30px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a,
.footer-bottom-inner a {
  color: rgba(255,255,255,0.28);
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover,
.footer-bottom-inner a:hover { color: var(--yellow); }

footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom-inner span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .trust-ticker { animation: none; }
  .slide-eyebrow, .slide-headline, .slide-sub, .slide-actions,
  .why-card, .faq-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stat-badge { bottom: 16px; right: 16px; }
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-sticky { position: static; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero { height: 85vh; max-height: 620px; }
  .slide-content { padding: 0 24px; }
  .carousel-arrows { display: none; }
  .why-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-stats { gap: 20px; }
  .slide-actions { flex-direction: column; align-items: flex-start; }
}

/* Login page design */

.login-page {
  min-height: 100vh;
  display: flex;
}
.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

/* ── Left Brand Panel ── */
.login-brand {
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.login-brand::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(237,6,6,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.login-brand::after {
  content: 'TOWER';
  position: absolute;
  bottom: -40px; left: -20px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -6px;
  pointer-events: none;
  white-space: nowrap;
}
.login-brand-inner {
  position: relative;
  z-index: 2;
  max-width: 380px;
}
.login-logo {
  height: 48px;
  margin-bottom: 48px;
  filter: brightness(0) invert(1);
}
.login-brand-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.login-brand-title span { color: var(--yellow); }
.login-brand-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 300px;
}
.login-brand-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.login-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.login-stat .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.login-brand-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
}

/* ── Right Form Panel ── */
.login-form-wrap {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.login-box {
  width: 100%;
  max-width: 420px;
}
.login-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--red);
}
.login-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.login-subtitle {
  font-size: 14px;
  color: var(--mid-grey);
  margin-bottom: 28px;
}

/* Toggle */
.user-type-toggle {
  display: flex;
  gap: 0;
  background: var(--light-grey);
  border-radius: 4px;
  padding: 4px;
  margin-bottom: 28px;
}
.user-type-btn {
  flex: 1;
  padding: 11px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  background: transparent;
  color: var(--mid-grey);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.user-type-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(237,6,6,0.3);
}
.type-icon { font-size: 16px; }

/* Form fields */
.login-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--mid-grey);
  pointer-events: none;
  flex-shrink: 0;
}
.input-wrap input {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 2px solid var(--light-grey);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.input-wrap input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,6,6,0.08);
}
.toggle-pw {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.15s ease;
}
.toggle-pw:hover { color: var(--black); }

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -4px;
}
.remember-me {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--mid-grey);
  cursor: pointer;
}
.remember-me input[type="checkbox"] {
  accent-color: var(--red);
  width: 15px; height: 15px;
}
.forgot-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: opacity 0.15s ease;
}
.forgot-link:hover { opacity: 0.75; }

.btn-login {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 4px;
  gap: 10px;
}
.login-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}
.login-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--light-grey);
}
.login-divider span {
  position: relative;
  background: var(--off-white);
  padding: 0 14px;
  font-size: 12px;
  color: var(--mid-grey);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-login-secondary {
  width: 100%;
  justify-content: center;
  padding: 13px;
}
.login-help {
  text-align: center;
  font-size: 13px;
  color: var(--mid-grey);
  margin-top: 20px;
}
.login-help a {
  color: var(--red);
  font-weight: 600;
}
.login-help a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .login-split { grid-template-columns: 1fr; }
  .login-brand { display: none; }
  .login-form-wrap { padding: 40px 24px; min-height: 100vh; }
}