@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange:        #f97316;
  --orange-light:  #fb923c;
  --orange-dark:   #ea580c;
  --dark:          #111111;
  --glass-bg:      rgba(255, 255, 255, 0.07);
  --glass-border:  rgba(255, 255, 255, 0.15);
  --glass-shadow:  0 8px 32px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--fg);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ═══════════════════════════════════════════
   FLOATING ORBS
═══════════════════════════════════════════ */
.orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: floatOrb linear infinite;
}

.orb-solid {
  filter: blur(6px);
  background: radial-gradient(circle, #f97316 0%, #ea580c 60%, transparent 100%);
}

.orb-ring {
  background: transparent;
  border: 6px solid var(--orange);
  filter: blur(2px);
  animation: floatOrb linear infinite, spinOrb linear infinite;
}

.orb1      { width:200px; height:200px; top:5%;  left:-5%;  animation-duration:18s,8s;  opacity:.85; }
.orb2      { width:260px; height:260px; top:60%; left:80%;  animation-duration:22s,0s;  opacity:.8;  }
.orb3      { width:140px; height:140px; top:30%; left:90%;  animation-duration:16s,0s;  opacity:.7;  }
.orb4      { width:180px; height:180px; top:80%; left:10%;  animation-duration:20s,0s;  opacity:.75; }
.orb5      { width:90px;  height:90px;  top:15%; left:55%;  animation-duration:14s,0s;  opacity:.6;  }
.orb-ring1 { width:120px; height:120px; top:20%; left:70%;  animation-duration:19s,12s; opacity:.9;  }
.orb-ring2 { width:160px; height:160px; top:70%; left:25%;  animation-duration:23s,9s;  opacity:.85; }
.orb-ring3 { width:80px;  height:80px;  top:45%; left:5%;   animation-duration:15s,7s;  opacity:.75; }
.orb-ring4 { width:200px; height:200px; top:5%;  left:40%;  animation-duration:25s,11s; opacity:.6;  }

@keyframes floatOrb {
  0%   { transform: translateY(0)     translateX(0);     }
  25%  { transform: translateY(-40px) translateX(20px);  }
  50%  { transform: translateY(-15px) translateX(-15px); }
  75%  { transform: translateY(30px)  translateX(10px);  }
  100% { transform: translateY(0)     translateX(0);     }
}

@keyframes spinOrb {
  from { border-color: var(--orange); }
  50%  { border-color: var(--orange-light); }
  to   { border-color: var(--orange); }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-lg {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: all .2s;
}

.btn-orange {
  background: var(--orange);
  border: none;
  color: #050505;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 245, 244, 0.4);
}

.btn-outline {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   GLASSMORPHISM CARD
═══════════════════════════════════════════ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hero-card {
  max-width: 1100px;
  width: 100%;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-title span { color: var(--orange); }

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   HERO SLIDER  (4 slides — 16 s cycle)
═══════════════════════════════════════════ */
.slider-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(249, 115, 22, .15);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 18px;
  animation: slide4 16s infinite both;
}

/* Each of the 4 hero slides — staggered by 4 s */
.s4-1 { animation-delay: 0s;  }
.s4-2 { animation-delay: 4s;  }
.s4-3 { animation-delay: 8s;  }
.s4-4 { animation-delay: 12s; }

@keyframes slide4 {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  23%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Slide inner layout */
.slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.slide-icon  { font-size: 4rem; }
.slide-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 2px;
}
.slide-sub {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: 1px;
}

/* Hero slide gradient backgrounds */
.slide-hero-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #e94560 100%); }
.slide-hero-2 { background: linear-gradient(135deg, #0d1b2a 0%, #1b4332 40%, #2d6a4f 70%, #52b788 100%); }
.slide-hero-3 { background: linear-gradient(135deg, #240046 0%, #3c096c 40%, #7b2d8b 70%, #c77dff 100%); }
.slide-hero-4 { background: linear-gradient(135deg, #1a0000 0%, #7f1d1d 40%, #b91c1c 70%, #f97316 100%); }

/* ═══════════════════════════════════════════
   HERO DOTS  (synced with slide4, 16 s)
═══════════════════════════════════════════ */
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  animation: dot4 16s infinite both;
}

.dot4-1 { animation-delay: 0s;  }
.dot4-2 { animation-delay: 4s;  }
.dot4-3 { animation-delay: 8s;  }
.dot4-4 { animation-delay: 12s; }

@keyframes dot4 {
  0%   { background: var(--orange);              transform: scale(1.3); }
  23%  { background: var(--orange);              transform: scale(1.3); }
  25%  { background: rgba(255, 255, 255, .3);    transform: scale(1);   }
  100% { background: rgba(255, 255, 255, .3);    transform: scale(1);   }
}

/* ═══════════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: rgba(249, 115, 22, .12);
  border: 1px solid rgba(249, 115, 22, .35);
  color: var(--orange-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title span { color: var(--orange); }

.section-tagline {
  font-size: .95rem;
  color: var(--orange-light);
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}

.section-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.section-grid.reverse { direction: rtl; }
.section-grid.reverse > * { direction: ltr; }

/* ═══════════════════════════════════════════
   BIG SLIDER (shared container)
═══════════════════════════════════════════ */
.big-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 40px rgba(249, 115, 22, .12);
  background: #111;
  aspect-ratio: 16 / 10;
}

.big-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.media-slide { background: #000; }

.big-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}

/* ═══════════════════════════════════════════
   SECTION 1 SLIDER  (3 slides — 12 s cycle)
═══════════════════════════════════════════ */
.s3-1 { animation: slide3 12s infinite both; animation-delay: 0s;  }
.s3-2 { animation: slide3 12s infinite both; animation-delay: 4s;  }
.s3-3 { animation: slide3 12s infinite both; animation-delay: 8s;  }

@keyframes slide3 {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  30%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Section 1 dots */
.dot3-1 { animation: dot3 12s infinite both; animation-delay: 0s;  }
.dot3-2 { animation: dot3 12s infinite both; animation-delay: 4s;  }
.dot3-3 { animation: dot3 12s infinite both; animation-delay: 8s;  }

@keyframes dot3 {
  0%   { background: var(--orange);           transform: scale(1.3); }
  30%  { background: var(--orange);           transform: scale(1.3); }
  33%  { background: rgba(255,255,255,.3);    transform: scale(1);   }
  100% { background: rgba(255,255,255,.3);    transform: scale(1);   }
}

/* ═══════════════════════════════════════════
   SECTION 2 SLIDER  (5 slides — 20 s cycle)
═══════════════════════════════════════════ */
.s5-1 { animation: slide5 20s infinite both; animation-delay: 0s;  }
.s5-2 { animation: slide5 20s infinite both; animation-delay: 4s;  }
.s5-3 { animation: slide5 20s infinite both; animation-delay: 8s;  }
.s5-4 { animation: slide5 20s infinite both; animation-delay: 12s; }
.s5-5 { animation: slide5 20s infinite both; animation-delay: 16s; }

@keyframes slide5 {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  18%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Section 2 dots */
.dot5-1 { animation: dot5 20s infinite both; animation-delay: 0s;  }
.dot5-2 { animation: dot5 20s infinite both; animation-delay: 4s;  }
.dot5-3 { animation: dot5 20s infinite both; animation-delay: 8s;  }
.dot5-4 { animation: dot5 20s infinite both; animation-delay: 12s; }
.dot5-5 { animation: dot5 20s infinite both; animation-delay: 16s; }

@keyframes dot5 {
  0%   { background: var(--orange);           transform: scale(1.3); }
  18%  { background: var(--orange);           transform: scale(1.3); }
  20%  { background: rgba(255,255,255,.3);    transform: scale(1);   }
  100% { background: rgba(255,255,255,.3);    transform: scale(1);   }
}

/* ═══════════════════════════════════════════
   FEATURE LIST
═══════════════════════════════════════════ */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(249, 115, 22, .15);
  border: 1px solid rgba(249, 115, 22, .3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.section-cta {
  margin-top: 32px;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  transition: all .2s;
}

/* ═══════════════════════════════════════════
   DIVIDER & FOOTER
═══════════════════════════════════════════ */
.divider {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, .4), transparent);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 48px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

footer span { color: var(--orange); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero        { padding: 20px; }
  .hero-card   { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .hero-title  { font-size: 2rem; }
  .section     { padding: 70px 20px; }
  .section-grid          { grid-template-columns: 1fr; }
  .section-grid.reverse  { direction: ltr; }
  .section-title { font-size: 1.8rem; }
}
.section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  overflow: hidden; /* IMPORTANT */
}

/* HERO-LIKE GLASS BACKGROUND */
.section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.04); /* soft glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  z-index: -1;
}