/* =========================================
   HOME PAGE STYLES
   ========================================= */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 60%,
    rgba(140,0,0,0.1) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,168,0,0.4);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-title-accent {
  display: block;
  font-size: clamp(28px, 4vw, 52px);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.hero-title-main {
  display: block;
  font-size: clamp(64px, 10vw, 140px);
  color: var(--white);
}

.hero-title-main em {
  font-style: normal;
  color: var(--silver);
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-accent-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transform: rotate(90deg);
  transform-origin: center;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* TICKER */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.ticker-dot {
  font-size: 8px !important;
  opacity: 0.6;
}

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

/* SERVICES OVERVIEW */
.services-overview {
  background: var(--black-light);
}

.section-intro {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.section-intro .section-label {
  grid-column: 1 / -1;
}

.section-intro .section-title {
  align-self: start;
}

.section-intro .section-body {
  align-self: center;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  background: var(--black-light);
  padding: 40px 32px;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 20px rgba(204,0,0,0.12);
  transform: translateY(-2px);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.service-card-icon {
  color: var(--red);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
}

.service-card-link:hover {
  color: var(--white);
}

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

/* FEATURE BANNER */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.feature-banner-img {
  overflow: hidden;
  position: relative;
}

.feature-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-banner-img:hover img {
  transform: scale(1.04);
}

.feature-banner-content {
  background: var(--black-mid);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* STATS BAR */
.stats-bar {
  background: var(--red);
  padding: 40px 80px;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* FEATURED PRODUCTS */
.featured-products {
  background: var(--black-charcoal);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(204,0,0,0.1);
  transform: translateY(-3px);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--black-mid);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  margin-bottom: 20px;
}

.btn-sm {
  padding: 10px 22px !important;
  font-size: 12px !important;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(204,0,0,0.35);
  box-shadow: 0 10px 36px rgba(0,0,0,0.5), 0 0 18px rgba(204,0,0,0.1);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 80px;
  color: rgba(204,0,0,0.2);
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

/* SECTION LABEL GOLD OVERRIDE */
.section-label[style*="--gold"] {
  background: var(--gradient-accent-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

/* CTA STRIP */
.cta-strip {
  position: relative;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2);
}

.cta-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9), rgba(140,0,0,0.3));
}

.cta-strip-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
}

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-content {
    padding: 0 40px;
    padding-top: var(--nav-height);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-banner {
    grid-template-columns: 1fr;
  }
  .feature-banner-content {
    padding: 60px 40px;
  }
  .stats-bar {
    padding: 40px;
  }
  .cta-strip {
    padding: 80px 40px;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
}

/* WHY AOG SECTION */
.why-aog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-aog-text .section-body {
  max-width: 100%;
}

.why-aog-checklist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-aog-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}

.why-aog-item:hover {
  border-color: rgba(204,0,0,0.3);
}

.why-check {
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.why-aog-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.why-aog-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .why-aog-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px;
    padding-top: var(--nav-height);
  }
  .hero-scroll-hint {
    display: none;
  }
  .section-intro {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .products-row {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    padding: 32px 24px;
  }
  .stats-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .stat-divider {
    display: none;
  }
  .cta-strip {
    padding: 64px 24px;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
