/* ===== INDEX PAGE ===== */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0D0D0D;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.75) 60%, rgba(20,20,20,0.9) 100%);
  z-index: 1;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(240,192,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,192,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(245,245,245,0.65);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(240,192,0,0.6), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

/* INTRO STRIP */
.intro-strip {
  background: var(--gray);
  border-top: 1px solid rgba(240,192,0,0.12);
  border-bottom: 1px solid rgba(240,192,0,0.12);
  padding: 1.5rem 5vw;
}

.strip-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.strip-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.1em;
}

.strip-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.strip-sep {
  width: 1px;
  height: 24px;
  background: rgba(245,245,245,0.15);
}

/* ABOUT BLOCK */
.about-block {
  padding: 8rem 5vw;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-text p {
  color: rgba(245,245,245,0.65);
  margin-bottom: 2rem;
  font-size: 15px;
  line-height: 1.9;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-frame {
  position: relative;
  width: 340px;
  height: 260px;
  border: 1px solid rgba(240,192,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-frame-inner {
  text-align: center;
}

.frame-icon svg {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 1rem;
}

.frame-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
}

.frame-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--yellow);
  border-style: solid;
}

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

/* SERVICES PREVIEW */
.services-preview {
  padding: 6rem 5vw;
  background: var(--gray);
}

.sp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sp-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--white);
}

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.sp-card {
  background: var(--black);
  padding: 2.5rem;
  border: 1px solid rgba(245,245,245,0.06);
  transition: border-color 0.3s;
}

.sp-card:hover {
  border-color: rgba(240,192,0,0.3);
}

.sp-card--accent {
  background: var(--yellow);
}

.sp-card--accent h3,
.sp-card--accent p { color: var(--black); }

.sp-card-icon {
  margin-bottom: 1.5rem;
}

.sp-card-icon svg {
  width: 48px;
  height: 48px;
}

.sp-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.sp-card p {
  font-size: 13.5px;
  color: rgba(245,245,245,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sp-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}

.sp-link:hover { letter-spacing: 0.2em; }
.sp-link--dark { color: var(--black); }

/* CTA BAND */
.cta-band {
  padding: 6rem 5vw;
  border-top: 1px solid rgba(240,192,0,0.12);
  border-bottom: 1px solid rgba(240,192,0,0.12);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-inner p {
  color: rgba(245,245,245,0.55);
  margin-bottom: 2rem;
  font-size: 15px;
}

/* BRANDS */
.brands-section {
  padding: 5rem 5vw;
  background: var(--gray);
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

.brands-grid span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.25);
  transition: color 0.2s;
}

.brands-grid span:hover { color: rgba(245,245,245,0.7); }

/* FOOTER specific */
.footer-logo-img { height: 32px; opacity: 0.75; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .sp-cards { grid-template-columns: 1fr; }
  .strip-sep { display: none; }
  .strip-items { gap: 1rem 2rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; }
  .about-block { padding: 5rem 5vw; }
}
