:root {
  --bg-dark: #0a0a0c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --primary: #ff4d00;
  --primary-gradient: linear-gradient(135deg, #ff4d00 0%, #ff8c00 100%);
  --secondary: #00d2ff;
  --text-main: #ffffff;
  --text-muted: #a0a0a5;
  --font-main: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Glassmorphism Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 12, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 30px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.cta-btn {
  background: var(--primary-gradient);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 77, 0, 0.3);
}

.cta-btn.outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.cta-btn.outline:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 60px;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10,10,12,0.2) 0%, rgba(10,10,12,1) 100%);
  z-index: -1;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.hero h1 span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Campaign Marquee */
.campaign-ticker {
  width: 100%;
  padding: 40px 0;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-title {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ticker-track {
  display: inline-flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
}

.campaign-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 300px;
}

.campaign-card img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.campaign-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.campaign-info p {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

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

/* Section Common */
.section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

/* Ladder Grid */
.ladder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ladder-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ladder-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

.step-num {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.ladder-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary);
}

.ladder-card ul {
  list-style: none;
  color: var(--text-muted);
}

.ladder-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ladder-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

/* Brand Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.solution-box {
  background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
  border-top: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 20px;
}

.solution-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 100px 5%;
  background: radial-gradient(circle at bottom, rgba(255,77,0,0.15) 0%, transparent 70%);
}

.footer-cta h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr !important;
  }
  
  nav ul {
    display: none;
  }

  header {
    padding: 15px 5%;
  }

  .logo img {
    height: 25px !important;
  }

  .header-cta .cta-btn {
    padding: 8px 15px;
    font-size: 13px;
  }

  .hero {
    padding: 100px 5% 50px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .cta-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .section {
    padding: 60px 5%;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .ladder-card {
    padding: 25px;
  }
  
  .step-num {
    font-size: 80px;
    top: -10px;
    right: -10px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }
}
