/* ===== CSS Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: "Inter", "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --primary-gradient: linear-gradient(135deg, #ff8c32, #ff7300);
  --purple-gradient: linear-gradient(135deg, #6122ff, #c32aff);
  --dark-bg: #0a1628;
  --darker-bg: #071424;
  --card-bg: rgba(18, 33, 54, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --text-tertiary: #8a9bb5;
  --accent-orange: #ff8c32;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 140, 50, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 18px; 
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== Typography System - Infloso.ai Inspired ===== */

/* Main Headings - Large & Bold */
h1 {
  font-size: clamp(3rem, 7vw, 5rem) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

h2 {
  font-size: clamp(2.5rem, 5.5vw, 4rem) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem) !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

/* Paragraph & Body Text - More Readable */
p, 
.hero-subtitle, 
.section-header p,
.dist-marketplace-desc {
  font-size: clamp(1.125rem, 2.2vw, 1.35rem) !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Card Descriptions - Slightly Smaller but Still Readable */
.ai-card p,
.dist-card-desc {
  font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
  line-height: 1.7 !important;
}

/* Button Text - Clear & Prominent */
.btn-primary,
.btn-orange,
.btn-nav,
.btn-white,
.btn-outline,
.cta-btn {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

/* Badge Text */
.badge {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

/* Navigation Links */
.nav-links a {
  font-size: clamp(1rem, 1.8vw, 1.125rem) !important;
  font-weight: 500 !important;
}

/* Stats - Large & Impactful */
.stat-card h3 {
  font-size: clamp(2.75rem, 6vw, 4rem) !important;
}

.stat-card p {
  font-size: clamp(1.1rem, 2.3vw, 1.35rem) !important;
}

/* FAQ Section */
.faq-question {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem) !important;
  font-weight: 600 !important;
}

.faq-answer {
  font-size: clamp(1rem, 2.1vw, 1.15rem) !important;
  line-height: 1.85 !important;
}

/* Distribution Section */
.dist-main-heading {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
}

.dist-subheading {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem) !important;
}

.dist-card-title {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Feature Tabs */
.feature-tab span {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem) !important;
  font-weight: 600 !important;
}

/* ===== Navbar ===== */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(7, 20, 36, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
  background: rgba(7, 20, 36, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem clamp(2rem, 6vw, 6rem);
  position: relative;
}

.container-centered {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.logo {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  z-index: 1001;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--primary-gradient);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 140, 50, 0.3);
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 140, 50, 0.4);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(7rem, 12vh, 9rem) clamp(1.5rem, 5vw, 3rem) clamp(2.5rem, 5vh, 3.5rem);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(10, 22, 40, 1), var(--dark-bg));
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bg-gradient {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(500px, 70vw, 1000px);
  height: clamp(500px, 70vw, 1000px);
  background: radial-gradient(circle, rgba(255, 140, 50, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.1);
  }
}

.badge {
  display: inline-block;
  border: 1.5px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  background: rgba(255, 140, 50, 0.08);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 140, 50, 0.15);
  transform: scale(1.05);
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}

.hero-subtitle {
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  padding: clamp(1rem, 2.5vw, 1.2rem) clamp(2.5rem, 5vw, 3rem);
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 140, 50, 0.4);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 140, 50, 0.5);
}

/* ===== Section Styles ===== */
section {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Dashboard Section ===== */
.dashboard-section {
  background: var(--dark-bg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.dashboard-preview {
  max-width: 1000px;
  margin: 0 auto clamp(2rem, 3vw, 3rem);
}

.dashboard-main {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.dashboard-main:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 70px rgba(255, 140, 50, 0.15);
}

.dashboard-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  transition: opacity 0.5s ease;
  display: block;
}

/* Feature Tabs */
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(0.8rem, 2vw, 1.2rem);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-tab {
  background: var(--card-bg);
  border-radius: 14px;
  padding: clamp(1rem, 2.5vw, 1.3rem);
  border: 1.5px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: inherit;
  color: var(--text-secondary);
}

.tab-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 50, 0.12);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-tab svg {
  color: var(--accent-orange);
  width: 22px;
  height: 22px;
}

.feature-tab:hover,
.feature-tab.active {
  background: rgba(255, 140, 50, 0.18);
  border-color: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 50, 0.25);
  color: var(--text-primary);
}

.feature-tab:hover .tab-icon,
.feature-tab.active .tab-icon {
  background: rgba(255, 140, 50, 0.25);
  transform: scale(1.1);
}


/* ===== AI Section ===== */
.ai-section {
  background: var(--darker-bg);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.ai-left {
  flex: 1;
  min-width: min(100%, 350px);
  max-width: 480px;
  background: var(--card-bg);
  border-radius: 24px;
  padding: clamp(2.5rem, 4vw, 3rem);
  text-align: left;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ai-left:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 50, 0.15);
}

.ai-left-content {
  flex-grow: 1;
}

.ai-left h2 {
  margin-bottom: 1.5rem;
}

.ai-left p {
  margin-bottom: 2.5rem;
}

.btn-white {
  background: #fff;
  color: var(--darker-bg);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  align-self: flex-start;
}

.btn-white:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 50, 0.35);
}

/* AI Cards Grid with Flip Effect */
.ai-right {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  min-width: min(100%, 350px);
  max-width: 650px;
}

.ai-card {
  background: transparent;
  border-radius: 24px;
  color: #fff;
  text-align: left;
  position: relative;
  min-height: 270px;
  perspective: 1000px;
}

.ai-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  text-align: left;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.ai-card:hover .ai-card-inner {
  transform: rotateY(180deg);
}

.ai-card-front,
.ai-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 270px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: clamp(1.8rem, 3.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ai-card-front {
  background: var(--primary-gradient);
  box-shadow: 0 10px 35px rgba(255, 140, 50, 0.35);
}

.ai-card-back {
  background: linear-gradient(135deg, #1a1f2e, #16213e);
  transform: rotateY(180deg);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 10px 35px rgba(255, 140, 50, 0.45);
  overflow: hidden;
}

.ai-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  margin-bottom: 1.3rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ai-card-front:hover .ai-icon {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.28);
}

.ai-card h3 {
  margin-bottom: 0.7rem;
}

.ai-card p {
  color: #f5f5f5;
}

/* Back side content */
.ai-card-back h4 {
  margin-bottom: 1.2rem;
  color: var(--accent-orange);
}

.back-content-scroll {
  flex: 1;
  overflow-y: auto;
  width: 100%;
  padding-right: 0.6rem;
}

.back-content-scroll::-webkit-scrollbar {
  width: 5px;
}

.back-content-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.back-content-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 3px;
}

.theme-preview {
  width: 100%;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 140, 50, 0.4);
}

.description-text {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: #d8d8d8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.coming-soon-badge {
  background: var(--primary-gradient);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  text-align: center;
  width: 100%;
  box-shadow: 0 6px 20px rgba(255, 140, 50, 0.35);
}

/* Before/After Image Comparison */
.before-after-container {
  width: 100%;
  margin-bottom: 1rem;
}

.before-after-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: clamp(0.75rem, 1.4vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.before-label {
  color: #ff6b6b;
}

.after-label {
  color: #51cf66;
}

.comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  position: relative;
  margin-bottom: 0.7rem;
}

.comparison-images::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  color: var(--accent-orange);
  background: rgba(0, 0, 0, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2.5px solid var(--accent-orange);
  z-index: 1;
}

.before-image,
.after-image {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.before-image {
  border: 2px solid #ff6b6b;
  filter: brightness(0.75) saturate(0.6);
}

.after-image {
  border: 2px solid #51cf66;
  filter: brightness(1.15) saturate(1.25);
}

.comparison-images:hover .before-image {
  transform: scale(0.97);
}

.comparison-images:hover .after-image {
  transform: scale(1.03);
}

/* ===== Process Section ===== */
.process-section {
  background: var(--dark-bg);
  text-align: center;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 1.3rem);
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  font-weight: 600;
}

.step {
  background: var(--primary-gradient);
  color: #fff;
  padding: clamp(0.6rem, 1.8vw, 0.75rem) clamp(1.5rem, 3vw, 1.8rem);
  border-radius: 30px;
  font-weight: 700;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  box-shadow: 0 6px 20px rgba(255, 140, 50, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 50, 0.45);
}

.arrow-text {
  font-size: clamp(1.5rem, 3.2vw, 1.8rem);
  color: var(--accent-orange);
  font-weight: 300;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  padding: clamp(1rem, 2.5vw, 1.15rem) clamp(2.5rem, 5vw, 3rem);
  border-radius: 35px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 140, 50, 0.35);
}

.cta-btn .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 140, 50, 0.45);
}

.cta-btn:hover .arrow {
  transform: translateX(6px);
}

/* ===== Brands Section ===== */
.brands-section {
  background: var(--darker-bg);
  text-align: center;
}

.brand-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  position: relative;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.brand-scroll {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  animation: scrollBrands 35s linear infinite;
}

.brand-logo {
  min-width: 220px;
  flex-shrink: 0;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  padding: 1rem;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.12);
  border-color: var(--border-hover);
}

.brand-logo:hover img {
  filter: brightness(1.25);
}

.brand-scroll:hover {
  animation-play-state: paused;
}

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

/* Stats */
.brand-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 950px;
  margin: 0 auto;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  padding: clamp(2.5rem, 5vw, 3rem) clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.stat-card:hover {
  background: rgba(255, 140, 50, 0.12);
  border-color: var(--border-hover);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 140, 50, 0.25);
}

.stat-card h3 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.stat-card p {
  color: #e0e0e0;
  font-weight: 600;
}

/* ===== DISTRIBUTION ENGINE SECTION ===== */

/* Main Distribution Section */
.dist-section {
  position: relative;
  background: #0a1628;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Full Width Container */
.dist-container-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 6vw, 8rem);
}

/* Top Badge */
.dist-badge {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(0.7rem, 1.3vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Rotating Header - Simple Fade Style */
.dist-rotating-header {
  text-align: center;
  margin-bottom: 1.5rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dist-rotating-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
}

.dist-fixed-text {
  color: #ffffff;
  font-weight: 700;
}

.dist-rotating-content {
  position: relative;
  display: inline-flex;
  min-width: 9em;
  justify-content: center;
}

.dist-rotate-item {
  position: absolute;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.dist-rotate-item.active {
  opacity: 1;
  position: relative;
}

.dist-number {
  color: #FF8C32;
  text-shadow: 0 0 20px rgba(255, 140, 50, 0.6);
  font-weight: 900;
}

.dist-role {
  color: #a855f7;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  font-weight: 700;
}

/* Main Heading */
.dist-main-heading {
  text-align: center;
  color: #FF6900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.dist-subheading {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  font-weight: 400;
}

/* Two Cards Grid */
.dist-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
  .dist-cards-grid {
    grid-template-columns: 1fr;
  }
}

.dist-card {
  background: rgba(20, 33, 54, 0.6);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.5rem);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.dist-card:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
  transform: translateY(-5px);
}

.dist-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: #a855f7;
  transition: all 0.3s ease;
}

.dist-card:hover .dist-card-icon {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.6);
  transform: scale(1.05);
}

.dist-card-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.dist-card-desc {
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 20px;
}

/* Explore button for dist cards */
.dist-card-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, #a855f7, #8b35d8);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.dist-card-explore:hover {
  background: linear-gradient(135deg, #9333ea, #7c28ca);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.dist-card-explore svg {
  transition: transform 0.3s ease;
}

.dist-card-explore:hover svg {
  transform: translateX(4px);
}

/* Marketplace Container - 3 Column Layout */
.dist-marketplace {
  background: rgba(10, 20, 36, 0.8);
  border: 2px solid rgba(255, 140, 50, 0.3);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  backdrop-filter: blur(15px);
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

/* Left Side - Heading and Description */
.dist-marketplace-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.dist-marketplace-heading {
  color: #ffffff;
  line-height: 1.2;
}

/* Marketplace Cards - Orange and Purple */
.dist-marketplace-card {
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.dist-card-orange {
  background: rgba(255, 140, 50, 0.08);
  border: 2px solid rgba(255, 140, 50, 0.3);
}

.dist-card-orange:hover {
  background: rgba(255, 140, 50, 0.12);
  border-color: rgba(255, 140, 50, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 50, 0.2);
}

.dist-card-purple {
  background: rgba(168, 85, 247, 0.08);
  border: 2px solid rgba(168, 85, 247, 0.3);
}

.dist-card-purple:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.dist-marketplace-card-title {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.dist-card-orange .dist-marketplace-card-title {
  color: #FF6900;
}

.dist-card-purple .dist-marketplace-card-title {
  color: #a855f7;
}

.dist-marketplace-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.dist-marketplace-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.dist-list-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.dist-card-pill {
  display: inline-block;
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(143, 0, 255, 0.15);
  color: #b86cff;
  border: 1px solid rgba(143, 0, 255, 0.4);
}

/* Style for image icons to match emoji size */
.dist-list-icon img,
img.dist-list-icon {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}

/* Pills Flow */
.dist-pills-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.dist-pill {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, #ff8c32, #ff7300);
  border-radius: 30px;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.9vw, 1.1rem);
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 4px 20px rgba(255, 140, 50, 0.3);
  transition: all 0.3s ease;
}

.dist-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 140, 50, 0.4);
}

.dist-arrow {
  color: #FF8C32;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Footer Text */
.dist-footer-text {
  text-align: center;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .dist-marketplace {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dist-marketplace-left {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dist-rotating-wrapper {
    flex-direction: column;
    gap: 0.3rem;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .dist-rotating-header {
    height: 120px;
  }
  
  .dist-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .dist-container-full {
    padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
  }
  
  .dist-pills-flow {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .dist-badge {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  
  .dist-marketplace {
    padding: 1.5rem;
  }
}

/* ===== Why Section ===== */
.why-section {
  background: var(--darker-bg);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

/* ===== FAQ Section ===== */
.faq-section {
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
}

.faq-section h3 {
  margin-bottom: clamp(2.5rem, 5vw, 3rem);
  text-align: center;
}

.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  background: none;
  color: #fff;
  border: none;
  padding: clamp(1.2rem, 3vw, 1.5rem) clamp(1.2rem, 3vw, 1.8rem);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 clamp(1.2rem, 3vw, 1.8rem);
  color: #d8d8d8;
}

.faq-item.active .faq-answer {
  padding: 0 clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 1.5rem);
}

.faq-answer strong {
  color: var(--accent-orange);
  font-weight: 700;
}

/* ===== CTA Final Section ===== */
.cta-final-section {
  background: var(--dark-bg);
  text-align: center;
}

.cta-final-section h2 {
  margin-bottom: 1.8rem;
}

.cta-final-section p {
  margin-bottom: 3.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  flex-wrap: wrap;
}

.btn-orange {
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  padding: clamp(1rem, 2.5vw, 1.15rem) clamp(2.5rem, 5vw, 3rem);
  border-radius: 35px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 140, 50, 0.35);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 140, 50, 0.45);
}

.btn-orange .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.btn-orange:hover .arrow {
  transform: translateX(6px);
}

.btn-outline {
  border: 2.5px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: clamp(1rem, 2.5vw, 1.15rem) clamp(2.5rem, 5vw, 3rem);
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 50, 0.35);
}

/* ===== Footer ===== */
.footer-new {
  background: #000000;
  color: #ffffff;
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 3.5rem);
}

.footer-simple-content {
  max-width: 1400px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.footer-left-new {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-container {
  margin-bottom: 25px;
}

.footer-logo {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: -0.5px;
}

.footer-tagline-new {
  font-size: clamp(1.05rem, 2.3vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon-link {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

.social-icon-link:hover {
  background: var(--accent-orange);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 140, 50, 0.35);
}

.footer-bottom-new {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-bottom-new p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.footer-bottom-links {
  display: flex;
  gap: clamp(1.2rem, 3.5vw, 2.5rem);
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

/* ===== Mobile Responsive (Max-width: 768px) ===== */
@media (max-width: 768px) {
  body {
    font-size: 17px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.3s ease;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.4);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .ai-section {
    flex-direction: column;
    align-items: center;
  }

  .ai-left,
  .ai-right {
    max-width: 100%;
  }

  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile specific feature tabs */
  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .feature-tab {
    padding: 0.9rem 0.7rem;
  }

  .tab-icon {
    width: 38px;
    height: 38px;
  }

  .tab-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== Small Mobile (Max-width: 480px) ===== */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  body {
    font-size: 16px;
  }

  .hero {
    min-height: 65vh;
  }

  .arrow-text {
    display: none;
  }

  .process-flow {
    flex-direction: column;
    gap: 1rem;
  }

  .brand-stats {
    grid-template-columns: 1fr;
  }

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

  .btn-orange,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Smaller feature tabs for mobile */
  .feature-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .feature-tab {
    padding: 0.7rem 0.5rem;
    gap: 0.5rem;
  }

  .tab-icon {
    width: 32px;
    height: 32px;
  }

  .tab-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Tablet (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .ai-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Large Screens (Min-width: 1400px) ===== */
@media (min-width: 1400px) {
  .nav-container,
  .section-header,
  .dashboard-preview,
  .brand-scroll-wrapper,
  .brand-stats,
  .faq-section {
    max-width: 1400px;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* AI Steps Visual Container */
.ai-steps-visual {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.step-visual-item {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 140, 50, 0.3);
  transition: all 0.3s ease;
}

.step-visual-item:hover {
  border-color: rgba(255, 140, 50, 0.6);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 140, 50, 0.2);
}

.step-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--accent-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.step-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 120px;
}

.step-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--accent-orange);
  font-weight: 700;
  margin: 0.3rem 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Improved scrollbar for steps */
.back-content-scroll::-webkit-scrollbar {
  width: 4px;
}

.back-content-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.back-content-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 10px;
}

.back-content-scroll::-webkit-scrollbar-thumb:hover {
  background: #ff7300;
}

/* Better contrast for text */
.text-secondary {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-tertiary {
  color: rgba(255, 255, 255, 0.7) !important;
}