/* ══════════════════════════════════════
   BRAYMONT — HOME PAGE CSS
   home.css
══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,53,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,53,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,53,255,0.12), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,53,255,0.08), transparent 70%);
  bottom: 0; right: -50px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(43,53,255,0.06), transparent 70%);
  top: 40%; left: 50%;
  animation: orbFloat3 7s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,40px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,-60%)} }

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge { margin-bottom: 2rem; }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1.5rem 1rem;
  background: rgba(43,53,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  max-width: 860px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0.5rem 0.5rem; min-width: 0;
}
.hero-stat .count-up {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(43,53,255,0.12);
  border: 1px solid rgba(43,53,255,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue-glow);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-neon);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity:1; box-shadow:0 0 8px var(--blue-neon); }
  50%      { opacity:0.5; box-shadow:0 0 16px var(--blue-neon); }
}

/* Hero title */
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-bottom: 1.8rem;
  text-align: center;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(10,10,10,0.6);
}
.hero-title-gradient {
  background: linear-gradient(135deg, #6B73FF, #2B35FF, #2B35FF);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

/* Hero subtext */
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Hero actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(43,53,255,0.03);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 600px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0.5rem 0.5rem; min-width: 0;
}
.hero-stat .count-up {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--blue-neon));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { height:0; opacity:0; }
  50%  { height:50px; opacity:1; }
  100% { height:50px; opacity:0; }
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── TRUSTED BY ── */
.trusted-section {
  position: relative;
  z-index: 1;
  padding: 4rem 5%;
  border-bottom: 1px solid var(--border);
}
.trusted-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.trusted-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: none;
  border: none;
  transition: transform 0.3s;
}
.trusted-logo:hover { transform: translateY(-3px); }
.trusted-logo img {
  height: 52px;
  width: 100%;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s;
}
.trusted-logo:hover img { transform: scale(1.08); }

@media(max-width:900px) {
  .trusted-logos { grid-template-columns: repeat(4, 1fr); }
}
@media(max-width:600px) {
  .trusted-logos { grid-template-columns: repeat(2, 1fr); }
  .trusted-logo { padding: 1.2rem 0.8rem; }
}

/* ── MARQUEE ── */
.marquee-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(43,53,255,0.02);
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  
}
.marquee-dot {
  color: var(--blue-neon) !important;
  font-size: 0.6rem !important;
  letter-spacing: 0 !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES PREVIEW ── */
.services-preview {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
}
.sp-container { max-width: 1200px; margin: 0 auto; }
.sp-header { margin-bottom: 4rem; text-align: center; display: flex; flex-direction: column; align-items: center; }

.sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sp-card-wide { grid-column: span 2; }

.sp-card {
  position: relative;
  padding: 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-card-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.12);
  border: 1px solid rgba(43,53,255,0.25);
  border-radius: 12px;
  color: var(--blue-neon);
  flex-shrink: 0;
}

.sp-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
}

.sp-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.sp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--blue-glow);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
  margin-top: auto;
}
.sp-card-link:hover { color: var(--blue-neon); gap: 0.7rem; }

/* Hover glow on card */
.sp-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(43,53,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.sp-card:hover .sp-card-glow { opacity: 1; }

/* ── WHY SECTION ── */
.why-section {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  background: rgba(43,53,255,0.01);
  border-top: 1px solid var(--border);
}
/* Force why content visible regardless of JS */
.why-left, .why-right {
  opacity: 1 !important;
  transform: none !important;
}
.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
}
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(43,53,255,0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.why-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.4rem;
}
.why-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PROCESS SECTION ── */
.process-section {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  border-top: 1px solid var(--border);
}
.process-container { max-width: 1200px; margin: 0 auto; }
.process-header { margin-bottom: 4rem; text-align: center; display: flex; flex-direction: column; align-items: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 2rem 2.5rem 2.5rem;
  position: relative;
  border: 1px solid var(--border);
  border-right: none;
  background: rgba(43,53,255,0.02);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}
.process-step:last-child { border-right: 1px solid var(--border); }
.process-step:hover { background: rgba(43,53,255,0.05); }
.process-step:first-child { border-radius: 16px 0 0 16px; }
.process-step:last-child { border-radius: 0 16px 16px 0; }

.process-step-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blue-neon);
}
.process-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-bright), transparent);
}
.process-line-hidden {
  flex: 1;
  height: 1px;
  background: transparent;
}

.process-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.1);
  border: 1px solid rgba(43,53,255,0.2);
  border-radius: 12px;
  color: var(--blue-neon);
  margin-bottom: 1.5rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-icon {
  background: rgba(43,53,255,0.2);
  box-shadow: 0 0 20px rgba(43,53,255,0.2);
}

.process-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.8rem;
}
.process-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media(max-width:900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none; border-bottom: none; }
  .process-step:nth-child(2) { border-right: 1px solid var(--border); }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top: 1px solid var(--border); }
  .process-step:last-child { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .process-step:first-child { border-radius: 16px 0 0 0; }
  .process-step:nth-child(2) { border-radius: 0 16px 0 0; }
  .process-step:nth-child(3) { border-radius: 0 0 0 16px; }
  .process-step:last-child { border-radius: 0 0 16px 0; }
}
@media(max-width:500px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--border) !important; border-bottom: none !important; border-radius: 0 !important; }
  .process-step:first-child { border-radius: 16px 16px 0 0 !important; }
  .process-step:last-child { border-radius: 0 0 16px 16px !important; border-bottom: 1px solid var(--border) !important; }
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(43,53,255,0.18), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-band-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-band-title span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── INDIVIDUAL LOGO SIZES — edit these! ── */
.logo-aci     { height: 45px !important; }
.logo-brac    { height: 30px !important; }
.logo-gp      { height: 60px !important; }
.logo-yamaha  { height: 30px !important; }
.logo-stickon { height: 30px !important; }
.logo-shopup  { height: 30px !important; }
.logo-summit  { height: 40px !important; }
.logo-tivoli  { height: 30px !important; }
.logo-wraplab { height: 30px !important; }
.logo-kolom   { height: 30px !important; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-stats { max-width: 100%; }
  .hero-stat .count-up { font-size: 1.4rem; }
  .stat-label { font-size: 0.62rem; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-card-wide { grid-column: span 1; }
  .why-container { grid-template-columns: 1fr; gap: 3rem; }
  .services-preview, .why-section, .cta-band { padding: 5rem 5%; }
  .br-desk { display: none; }
}
@media(max-width:500px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

.sp-header .glow-line,
.process-header .glow-line { margin: 1.2rem auto 0; }