/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #744B93;
  --secondary: #736EAE;
  --accent-pink: #C889B5;
  --accent-mauve: #D0ADC4;
  --warm-cream: #FCE5CC;
  --light-gray: #F0F0F0;
  --dark: #1a1a2e;
  --text: #2d2d3f;
  --text-light: #6b6b80;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-warm: linear-gradient(135deg, var(--warm-cream), var(--accent-mauve));
  --gradient-hero: linear-gradient(160deg, #1a1a2e 0%, #2d1b4e 40%, #744B93 100%);
  --shadow-sm: 0 2px 8px rgba(116, 75, 147, 0.08);
  --shadow-md: 0 8px 30px rgba(116, 75, 147, 0.12);
  --shadow-lg: 0 20px 60px rgba(116, 75, 147, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.15);
  border: 2px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  overflow: hidden;
}

.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar.scrolled .nav-logo-img {
  background: rgba(116, 75, 147, 0.08);
  border-color: rgba(116, 75, 147, 0.2);
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-pink);
  transition: var(--transition);
}

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

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

.navbar.scrolled .nav-links a {
  color: var(--text-light);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white) !important;
  transition: var(--transition);
  cursor: pointer;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 137, 181, 0.15), transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 110, 174, 0.12), transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-pink);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-pink), var(--warm-cream));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(116, 75, 147, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(116, 75, 147, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

.hero-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-image-placeholder .placeholder-icon {
  font-size: 2rem;
}

.hero-image-placeholder .placeholder-text {
  font-weight: 500;
}

.hero-image-placeholder .placeholder-hint {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Floating stat cards on hero */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  animation: float-card 6s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
  top: 10%;
  right: -10%;
  animation-delay: -2s;
}

.hero-float-card:nth-child(3) {
  bottom: 15%;
  left: -5%;
  animation-delay: -4s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-float-card .card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-float-card .card-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--white);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--dark);
  line-height: 1.4;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--primary);
}

.problem-quote span {
  color: var(--primary);
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  padding: 24px 28px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.problem-card:hover {
  border-color: var(--accent-mauve);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.problem-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.problem-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.problem-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats .section-label {
  color: var(--accent-pink);
}

.stats .section-label::before {
  background: var(--accent-pink);
}

.stats .section-title {
  color: var(--white);
}

.stats .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.stats-header {
  text-align: center;
  margin-bottom: 64px;
}

.stats-header .section-subtitle {
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ===== PRODUCT SECTION ===== */
.product {
  background: var(--light-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-visual {
  position: relative;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--light-gray), var(--warm-cream));
  border: 2px dashed var(--accent-mauve);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.85rem;
  overflow: hidden;
  position: relative;
}

.product-image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.product-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(116, 75, 147, 0.08), rgba(115, 110, 174, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.product-feature h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== PROGRESS SECTION ===== */
.progress-section {
  background: var(--white);
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.progress-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(116, 75, 147, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.progress-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.progress-card:hover::before {
  transform: scaleX(1);
}

.progress-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.progress-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(116, 75, 147, 0.1), rgba(200, 137, 181, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.progress-card h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.progress-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== WHY WE WIN ===== */
.why-win {
  background: var(--white);
}

.why-win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-win-card {
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.why-win-card:hover {
  border-color: var(--accent-mauve);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.why-win-card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-mauve), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.why-win-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-win-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== MARKET SECTION ===== */
.market {
  background: var(--light-gray);
  position: relative;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.market-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.market-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.market-card:hover::after {
  opacity: 1;
}

.market-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.market-label {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.market-year {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 12px;
  background: rgba(116, 75, 147, 0.08);
  border-radius: 100px;
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--light-gray);
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header .section-subtitle {
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.team-card:hover {
  border-color: var(--accent-mauve);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* PLACEHOLDER: Team member photo */
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-mauve), var(--accent-pink));
  border: 2px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.team-info h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.team-credentials {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-credentials li {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.team-credentials li::before {
  content: '✦';
  color: var(--accent-pink);
  font-size: 0.65rem;
  margin-top: 3px;
}

/* ===== VISION / CTA SECTION ===== */
.vision {
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 137, 181, 0.1), transparent 70%);
}

.vision .container {
  position: relative;
  z-index: 1;
}

.vision .section-label {
  color: var(--accent-pink);
}

.vision .section-label::before {
  background: var(--accent-pink);
}

.vision .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 24px;
}

.vision .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 20px;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: left;
}

.vision-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.vision-point-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 137, 181, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--accent-pink);
  flex-shrink: 0;
}

.vision .btn-primary {
  font-size: 1rem;
  padding: 18px 40px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-pink);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
    padding-top: 100px;
    /* Prevent overlap with fixed navbar */
  }

  .hero-visual {
    order: 2;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-float-card {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-win-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 24px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .nav-links a:hover {
    color: var(--white) !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-credentials li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

/* ===== PRODUCT SECTION UPDATES ===== */

.product-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Slideshow Styles */
.product-slideshow {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Mask edges for smooth fade out effect */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 20px 0;
}

.slideshow-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideshow-scroll 40s linear infinite;
}

.slideshow-track:hover {
  animation-play-state: paused;
}

.slide {
  width: 300px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background: white;
  /* Ensure slide has background */
  box-shadow: var(--shadow-sm);
}

.slide:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.slide-content.placeholder-slide {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-gray), #e8e8f0);
  border: 1px solid rgba(116, 75, 147, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
}

.slide-content .placeholder-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.slide-content .placeholder-text {
  font-weight: 500;
  font-size: 0.9rem;
}

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

  100% {
    /* Translate by half the track width (assuming duplicated slides) 
       Formula: -(single_slide_width * num_unique_slides) - (gap * num_unique_slides)
       Here: 5 unique slides. Width 300px, Gap 24px.
       Total width of unique set = (300 * 5) + (24 * 5) = 1500 + 120 = 1620px
    */
    transform: translateX(-1620px);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .product-top-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}