/* Color Palette - Based on Flutter App Design System */
:root {
  /* Spacing & Layout */
  --radius: 18px;
  --radius-sm: 14px;
  --radius-lg: 24px;
  --max-width: 1150px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadow-sm: 0 10px 40px rgba(0,0,0,0.20);
}

/* Dark Mode (Default) - Matching Dashboard */
:root, :root[data-theme="dark"] {
  /* Neutral Surface */
  --surface-subtle: var(--grey-950);
  --surface-default: var(--grey-900);
  --surface-disable: var(--grey-800);
  
  /* Neutral Border */
  --border-default: rgba(255, 255, 255, 0.08);
  --border-disabled: var(--grey-700);
  --border-darker: var(--grey-300);
  
  /* Neutral Text */
  --text-title: var(--white);
  --text-body: var(--grey-200);
  --text-subtitle: var(--grey-400);
  --text-caption: var(--grey-500);
  --text-negative: var(--white);
  --text-disabled: var(--grey-400);
  
  /* Neutral Icon */
  --icon-default: var(--grey-200);
  --icon-disabled: var(--grey-400);
  --icon-negative: var(--white);
  
  /* Primary */
  --primary-surface-subtle: rgba(197, 229, 251, 0.08);
  --primary-surface-lighter: var(--brand-300);
  --primary-surface-default: var(--brand-500);
  --primary-surface-darker: var(--brand-700);
  --primary-border-subtle: var(--brand-100);
  --primary-border-lighter: var(--brand-300);
  --primary-border-default: var(--brand-300);
  --primary-border-darker: var(--brand-700);
  --primary-text: var(--brand-300);
  --primary-icon: var(--brand-500);
  
  /* Success */
  --success-surface-subtle: rgba(228, 252, 237, 0.08);
  --success-surface-default: var(--green-500);
  --success-border-default: var(--green-400);
  --success-text: var(--green-400);
  --success-icon: var(--green-500);
  
  /* Warning */
  --warning-surface-subtle: rgba(255, 247, 204, 0.08);
  --warning-surface-default: var(--orange-500);
  --warning-border-default: var(--orange-500);
  --warning-text: var(--orange-500);
  --warning-icon: var(--orange-500);
  
  /* Error */
  --error-surface-subtle: rgba(249, 210, 213, 0.08);
  --error-surface-default: var(--red-500);
  --error-border-default: var(--red-300);
  --error-text: var(--red-400);
  --error-icon: var(--red-600);
  
  /* Overlay */
  --overlay: rgba(29, 34, 37, 0.72);
  
  /* Background */
  --bg-base: #0F0F0F;
  --bg-gradient-1: rgba(82, 177, 244, 0.03);
  --bg-gradient-2: rgba(25, 151, 241, 0.02);
  --bg-gradient-3: rgba(12, 117, 192, 0.015);
}

/* Light Mode */
:root[data-theme="light"] {
  /* Neutral Surface */
  --surface-subtle: var(--grey-50);
  --surface-default: var(--white);
  --surface-disable: var(--grey-200);
  
  /* Neutral Border */
  --border-default: var(--grey-200);
  --border-disabled: var(--grey-300);
  --border-darker: var(--grey-700);
  
  /* Neutral Text */
  --text-title: var(--grey-900);
  --text-body: var(--grey-800);
  --text-subtitle: var(--grey-600);
  --text-caption: var(--grey-500);
  --text-negative: var(--white);
  --text-disabled: var(--grey-700);
  
  /* Neutral Icon */
  --icon-default: var(--grey-800);
  --icon-disabled: var(--grey-700);
  --icon-negative: var(--white);
  
  /* Primary */
  --primary-surface-subtle: var(--brand-50);
  --primary-surface-lighter: var(--brand-300);
  --primary-surface-default: var(--brand-500);
  --primary-surface-darker: var(--brand-700);
  --primary-border-subtle: var(--brand-100);
  --primary-border-lighter: var(--brand-300);
  --primary-border-default: var(--brand-500);
  --primary-border-darker: var(--brand-700);
  --primary-text: var(--brand-500);
  --primary-icon: var(--brand-500);
  
  /* Success */
  --success-surface-subtle: var(--green-50);
  --success-surface-default: var(--green-500);
  --success-border-default: var(--green-500);
  --success-text: var(--green-700);
  --success-icon: var(--green-500);
  
  /* Warning */
  --warning-surface-subtle: var(--orange-100);
  --warning-surface-default: var(--orange-500);
  --warning-border-default: var(--orange-500);
  --warning-text: var(--orange-800);
  --warning-icon: var(--orange-800);
  
  /* Error */
  --error-surface-subtle: var(--red-50);
  --error-surface-default: var(--red-500);
  --error-border-default: var(--red-500);
  --error-text: var(--red-600);
  --error-icon: var(--red-500);
  
  /* Overlay */
  --overlay: rgba(29, 24, 24, 0.72);
  
  /* Background */
  --bg-base: var(--white);
  --bg-gradient-1: rgba(82, 177, 244, 0.08);
  --bg-gradient-2: rgba(25, 151, 241, 0.06);
  --bg-gradient-3: rgba(12, 117, 192, 0.04);
}

/* Base Styles */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin: 0;
  padding-top: 60px;
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-base);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
section{ overflow-x: hidden; }

a{ color: inherit; text-decoration:none; cursor: pointer; }
img{ max-width:100%; display:block; }
button, input, textarea{
  font: inherit;
  color: inherit;
}

.container{
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

/* Language Selector */
.language-selector{
  position: relative;
}
.lang-btn{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-default);
  background: var(--surface-default);
  cursor: pointer;
  transition: .18s ease;
  font-weight: 600;
  font-size: 13px;
}
.lang-btn:hover{
  background: var(--surface-subtle);
  border-color: var(--border-darker);
}
.lang-icon{
  font-size: 16px;
}
.lang-flag-btn{
  font-size: 18px;
  display: none;
}
.lang-current{
  min-width: 22px;
  text-align: center;
}
.lang-arrow{
  font-size: 10px;
  transition: transform 0.2s;
}
.lang-btn.open .lang-arrow{
  transform: rotate(180deg);
}
.lang-dropdown{
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--surface-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  overflow: hidden;
}
.lang-dropdown.open{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: .15s ease;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  color: var(--text-body);
}
.lang-option:hover{
  background: var(--surface-subtle);
}
.lang-option.active{
  background: var(--surface-subtle);
  color: var(--text-title);
}
.lang-option.active::before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: var(--brand-500);
  border-radius: 0 2px 2px 0;
}
.lang-flag{
  font-size: 18px;
}
.lang-abbr{
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-caption);
  background: var(--surface-subtle);
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.lang-option:hover .lang-abbr{
  background: var(--surface-default);
}
.lang-option.active .lang-abbr{
  background: rgba(12, 117, 192, 0.15);
  color: var(--brand-400);
}

/* RTL Support */
html[dir="rtl"] body{
  direction: rtl;
  font-family: var(--font-arabic);
}
html[dir="rtl"] .nav-inner,
html[dir="rtl"] .hero-grid,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-cta,
html[dir="rtl"] .brand,
html[dir="rtl"] .list li,
html[dir="rtl"] .foot-links{
  direction: rtl;
}
html[dir="rtl"] .lang-dropdown{
  right: auto;
  left: 0;
}

/* Theme Toggle Switch */
.theme-toggle{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  cursor: pointer;
}
.mobile-theme-switch{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 32px;
  cursor: pointer;
}
.theme-toggle input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.mobile-theme-switch input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.theme-toggle__track{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--surface-disable);
  border: 1px solid var(--border-default);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.theme-toggle__thumb{
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-default);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.theme-toggle input:checked + .theme-toggle__track,
.mobile-theme-switch input:checked + .theme-toggle__track{
  background: var(--primary-surface-default);
  border-color: var(--primary-border-default);
}
.theme-toggle input:checked + .theme-toggle__track .theme-toggle__thumb{
  transform: translateX(24px);
}
.mobile-theme-switch input:checked + .theme-toggle__track .theme-toggle__thumb{
  transform: translateX(30px);
}
.theme-toggle input:focus-visible + .theme-toggle__track,
.mobile-theme-switch input:focus-visible + .theme-toggle__track{
  box-shadow: 0 0 0 3px rgba(12, 117, 192, 0.35);
}
.theme-toggle input:disabled + .theme-toggle__track,
.mobile-theme-switch input:disabled + .theme-toggle__track{
  background: var(--surface-disable);
  border-color: var(--border-disabled);
  cursor: not-allowed;
}
.theme-toggle__icon{
  position: absolute;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.theme-toggle__icon--track-sun{
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.theme-toggle__icon--track-moon{
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.theme-toggle__icon--sun{
  inset: 0;
  opacity: 1;
}
.theme-toggle__icon--moon{
  inset: 0;
  opacity: 0;
}
.theme-toggle input:checked + .theme-toggle__track .theme-toggle__icon--sun,
.mobile-theme-switch input:checked + .theme-toggle__track .theme-toggle__icon--sun{
  opacity: 0;
}
.theme-toggle input:checked + .theme-toggle__track .theme-toggle__icon--moon,
.mobile-theme-switch input:checked + .theme-toggle__track .theme-toggle__icon--moon{
  opacity: 1;
}
.theme-toggle input:checked + .theme-toggle__track .theme-toggle__icon--track-sun,
.mobile-theme-switch input:checked + .theme-toggle__track .theme-toggle__icon--track-sun{
  opacity: 1;
}
.theme-toggle input:checked + .theme-toggle__track .theme-toggle__icon--track-moon,
.mobile-theme-switch input:checked + .theme-toggle__track .theme-toggle__icon--track-moon{
  opacity: 0;
}

:root[data-theme="light"] .theme-toggle__icon--moon,
:root[data-theme="light"] .theme-toggle__icon--track-moon{
  filter: grayscale(1) brightness(0.35);
}

/* Top nav */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}
:root[data-theme="light"] .nav{
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border-default);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .3px;
  white-space: nowrap;
  color: var(--text-title);
  font-size: 15px;
}
.logo{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(255,255,255,0.25), transparent 60%),
    linear-gradient(135deg, var(--brand-500), var(--brand-300));
  box-shadow: 0 10px 30px rgba(12, 117, 192, 0.25);
  border: 1px solid var(--primary-border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand small{
  display:block;
  font-weight: 600;
  color: var(--text-subtitle);
  letter-spacing: 0;
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
}
.nav-links a{
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.15s ease;
  color: var(--text-subtitle);
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.nav-links a:hover{
  background: var(--primary-surface-subtle);
  color: var(--primary-text);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
}

.btn{
  position: relative;
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-body);
  overflow: hidden;
}
.btn:hover{
  background: rgba(40, 40, 40, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}
:root[data-theme="light"] .btn{
  background: var(--surface-default);
}
:root[data-theme="light"] .btn:hover{
  background: var(--surface-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.btn-primary{
  background: var(--brand-500);
  border: none;
  color: white;
}
.btn-primary:hover{
  background: var(--brand-600);
}

.hamburger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-default);
  background: var(--surface-subtle);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap: 5px;
  flex-direction: column;
  transition: all 0.2s ease;
}
.hamburger:hover{
  background: var(--surface-default);
}
.hamburger span{
  width: 18px;
  height: 2px;
  background: var(--icon-default);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger[aria-expanded="true"]{
  background: var(--primary-surface-subtle);
  border-color: var(--primary-border-default);
}
.hamburger[aria-expanded="true"] span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
  transform: scale(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero{
  padding: 58px 0 26px;
  position: relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.8);
  border-radius: 999px;
  color: var(--text-subtitle);
  font-weight: 700;
  font-size: 13px;
}
:root[data-theme="light"] .badge{
  background: var(--primary-surface-subtle);
}
.badge i{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success-icon);
  box-shadow: 0 0 0 6px var(--success-surface-subtle);
}

h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 16px 0 14px;
  letter-spacing: -0.6px;
  color: var(--text-title);
}
.lead{
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  /* max-width: 58ch; */
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}
.hero-meta{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  margin-top: 18px;
  color: var(--text-caption);
  font-weight: 600;
  font-size: 13px;
}
.hero-meta .pill{
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.8);
}
:root[data-theme="light"] .hero-meta .pill{
  background: var(--surface-subtle);
}

.hero-card{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow:hidden;
  position: relative;
}
:root[data-theme="light"] .hero-card{
  background: var(--surface-default);
  box-shadow: var(--shadow);
}
.hero-card header{
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--border-default);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.dots{
  display:flex;
  gap: 7px;
  align-items:center;
}
.dots span{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--border-default);
}
.dots span:nth-child(1){ background: var(--error-icon); }
.dots span:nth-child(2){ background: var(--warning-icon); }
.dots span:nth-child(3){ background: var(--success-icon); }

.mini-title{
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--text-title);
}

.hero-card .body{
  padding: 18px;
}

.kpi-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.kpi{
  border: 1px solid var(--border-default);
  background: rgba(20, 20, 20, 0.8);
  border-radius: 16px;
  padding: 14px 16px;
}
:root[data-theme="light"] .kpi{
  background: var(--surface-subtle);
}
.kpi .num{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--text-title);
}
.kpi .lbl{
  margin-top: 5px;
  font-size: 12px;
  color: var(--text-caption);
  font-weight: 700;
}

.chart{
  border-radius: var(--radius);
  border: 1px solid var(--border-default);
  background: rgba(20, 20, 20, 0.8);
  height: 170px;
  position: relative;
  overflow:hidden;
  padding: 12px;
}
:root[data-theme="light"] .chart{
  background: var(--surface-subtle);
}
.chart svg{ width:100%; height:100%; }
.chart .hint{
  position:absolute;
  top: 10px;
  right: 12px;
  font-size: 12px;
  color: var(--text-caption);
  font-weight: 700;
  background: var(--surface-default);
  border: 1px solid var(--border-default);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Sections */
section{
  padding: 42px 0;
}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-title h2{
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.5px;
  color: var(--text-title);
  position: relative;
}
.section-title h2::after{
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--brand-500);
  margin-top: 12px;
  border-radius: 1px;
}
.section-title-center h2::after{
  margin: 12px auto 0;
}
.section-title p{
  margin: 0;
  color: var(--text-subtitle);
  line-height: 1.7;
  font-weight: 600;
  font-size: 15px;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}
.card{
  position: relative;
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover{
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(30, 30, 30, 0.7);
}
.card p{
  flex-grow: 1;
}
.card > div:last-child{
  margin-top: auto;
}
:root[data-theme="light"] .card{
  background: var(--surface-default);
}
:root[data-theme="light"] .card:hover{
  border-color: var(--brand-200);
}
.icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(12, 117, 192, 0.2);
  background: rgba(12, 117, 192, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.card h3{
  margin: 12px 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--text-title);
}
.card p{
  margin: 0;
  color: var(--text-subtitle);
  line-height: 1.6;
  font-weight: 600;
  font-size: 13px;
}

.list{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 8px;
  color: var(--text-subtitle);
  font-weight: 650;
  font-size: 13px;
}
.list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
}
.check{
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--primary-border-default);
}

/* Split */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.panel{
  position: relative;
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s ease;
  overflow: hidden;
}
.panel:hover{
  border-color: rgba(255, 255, 255, 0.12);
}
:root[data-theme="light"] .panel{
  background: var(--surface-default);
}
:root[data-theme="light"] .panel:hover{
  border-color: var(--border-darker);
}
.panel h3{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--text-title);
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel p{
  margin: 0 0 14px;
  color: var(--text-subtitle);
  font-weight: 600;
  line-height: 1.7;
  font-size: 14px;
}

/* CTA */
.cta{
  padding: 60px 0 70px;
  position: relative;
}
.cta-box{
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 22, 26, 0.95);
  backdrop-filter: blur(40px);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
:root[data-theme="light"] .cta-box{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-color: var(--border-default);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}
.cta-box h2{
  margin: 0 0 14px;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--text-title);
  position: relative;
  z-index: 1;
}
.cta-box p{
  margin: 0;
  color: var(--text-subtitle);
  line-height: 1.8;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* Contact Quote Box */
.contact-quote{
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(12, 117, 192, 0.12);
  border-left: 3px solid var(--brand-400);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-body);
}
:root[data-theme="light"] .contact-quote{
  background: var(--brand-50);
  border-left-color: var(--brand-500);
  color: var(--brand-800);
}

/* CTA Panel in Dark Mode */
.cta-box .panel{
  background: rgba(30, 34, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}
:root[data-theme="light"] .cta-box .panel{
  background: var(--surface-default);
  border-color: var(--border-default);
}

/* Form */
form{
  display: grid;
  gap: 14px;
  align-content: start;
  margin-top: 16px;
}
.field{
  display: grid;
  gap: 8px;
}
.field label{
  font-size: 12px;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field input, .field textarea{
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 24, 28, 0.8);
  padding: 13px 14px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--text-title);
  font-size: 14px;
}
.field input::placeholder, .field textarea::placeholder{
  color: var(--text-caption);
}
:root[data-theme="light"] .field input,
:root[data-theme="light"] .field textarea{
  background: var(--surface-default);
  border-color: var(--border-default);
}
.field textarea{
  min-height: 90px;
  resize: vertical;
}
.field input:hover, .field textarea:hover{
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(25, 30, 35, 0.9);
}
:root[data-theme="light"] .field input:hover,
:root[data-theme="light"] .field textarea:hover{
  border-color: var(--border-darker);
  background: var(--surface-subtle);
}
.field input:focus, .field textarea:focus{
  border-color: var(--brand-400);
  background: rgba(30, 35, 42, 0.95);
  box-shadow: 0 0 0 4px rgba(12, 117, 192, 0.15);
}
:root[data-theme="light"] .field input:focus,
:root[data-theme="light"] .field textarea:focus{
  background: var(--surface-default);
  box-shadow: 0 0 0 4px rgba(12, 117, 192, 0.1);
}
.toast{
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(22, 175, 81, 0.3);
  background: rgba(22, 175, 81, 0.12);
  color: var(--green-400);
  font-weight: 700;
  font-size: 13px;
  display: none;
}
:root[data-theme="light"] .toast{
  background: var(--green-50);
  border-color: var(--green-200);
  color: var(--green-700);
}
.toast.error{
  background: rgba(224, 42, 54, 0.12);
  border-color: rgba(224, 42, 54, 0.3);
  color: var(--red-400);
}
:root[data-theme="light"] .toast.error{
  background: var(--red-50);
  border-color: var(--red-200);
  color: var(--red-600);
}

/* Footer */
footer{
  padding: 40px 0 48px;
  border-top: 1px solid var(--border-default);
  background: rgba(10, 10, 10, 0.95);
}
:root[data-theme="light"] footer{
  background: var(--surface-subtle);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.foot-col{
  display:grid;
  gap: 10px;
  min-width: 240px;
}
.foot-col p{
  margin:0;
  color: var(--text-subtitle);
  line-height: 1.65;
  font-weight: 600;
  font-size: 13px;
}
.foot-links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-subtitle);
  font-weight: 700;
  font-size: 13px;
}
.foot-links a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-default);
  background: var(--surface-default);
  transition: .18s ease;
}
.foot-links a:hover{
  background: var(--surface-disable);
  border-color: var(--border-darker);
  color: var(--text-title);
}

.mobile-menu { display: none !important; }

/* Mobile */
@media (max-width: 980px){
  .hero-grid{ 
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-box{ 
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .section-title{ 
    flex-direction: column; 
    align-items:flex-start;
    gap: 16px;
  }
  .hero h1{
    font-size: 44px;
    line-height: 1.15;
  }
  .hero p{
    font-size: 18px;
  }
  .card, .panel{
    padding: 28px 24px;
  }
}
@media (max-width: 820px){
  .container{
    width: min(var(--max-width), calc(100% - 32px));
  }
  .grid-3{ 
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-2{ 
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .split{ 
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nav-links{ display:none; }
  .theme-toggle{ display:none; }
  .hamburger{ 
    display:flex;
    position: relative;
    z-index: 1000;
  }
  .nav-cta .btn:not(.btn-primary){ display:none; }
  .nav{
    padding: 12px 0;
  }
  /* Mobile Language Selector - Show flag instead of globe */
  .lang-icon{
    display: none;
  }
  .lang-current{
    display: none;
  }
  .lang-flag-btn{
    display: block;
  }
  .mobile-menu{
    display: flex !important;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface-default);
    border-bottom: 1px solid var(--border-default);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 998;
    padding: 20px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu.open{ 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-menu.open::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  body.menu-open{
    overflow: hidden;
  }
  .mobile-menu a,
  .mobile-menu .mobile-menu-item{
    display: block;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: var(--text-title);
    font-weight: 650;
    font-size: 16px;
    background: var(--surface-subtle);
    border: 1px solid var(--border-default);
    transition: all 0.2s ease;
    text-align: center;
    flex-shrink: 0;
    width: 100%;
    appearance: none;
    cursor: pointer;
  }
  .mobile-menu .mobile-menu-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: default;
  }
  .mobile-menu .mobile-menu-label{
    text-align: left;
  }
  .mobile-menu a:hover,
  .mobile-menu a:active,
  .mobile-menu .mobile-menu-item:hover{
    background: var(--primary-surface-subtle);
    border-color: var(--primary-border-subtle);
    color: var(--primary-text);
    transform: scale(0.98);
  }
  .hero{
    padding: 40px 0 32px;
  }
  .hero h1{
    font-size: 36px;
    line-height: 1.2;
  }
  .hero p{
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-actions{
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }
  section{
    padding: 48px 0;
  }
  .section-title h2{
    font-size: 32px;
  }
  .section-title p{
    font-size: 16px;
  }
  .card, .panel{
    padding: 24px 20px;
  }
  .icon{
    font-size: 32px;
    width: 52px;
    height: 52px;
  }
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lang-switcher{
    top: 16px;
    right: 16px;
    scale: 0.9;
  }
  .theme-toggle{
    top: 16px;
    left: 16px;
    scale: 0.9;
  }
}

@media (max-width: 480px){
  .container{
    width: min(var(--max-width), calc(100% - 24px));
  }
  .hero h1{
    font-size: 28px;
    line-height: 1.25;
  }
  .hero p{
    font-size: 15px;
  }
  .section-title h2{
    font-size: 26px;
  }
  .section-title p{
    font-size: 15px;
  }
  .card, .panel{
    padding: 20px 16px;
  }
  .btn{
    padding: 12px 16px;
    font-size: 14px;
  }
  section{
    padding: 40px 0;
  }
  .nav{
    padding: 10px 0;
  }
  .nav .brand{
    font-size: 16px;
  }
  .nav .brand > div:last-child{
    display: none;
  }
  .logo{
    width: 36px;
    height: 36px;
  }
  .hero-actions .btn{
    padding: 14px 20px;
    font-size: 15px;
  }
  .pill{
    padding: 6px 12px;
    font-size: 12px;
  }
  .lang-switcher{
    scale: 0.85;
  }
  .theme-toggle{
    scale: 0.85;
  }
}
/* Platforms Section */

.platforms-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.platform-card{
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.platform-card:hover{
  border-color: rgba(12, 117, 192, 0.3);
  background: rgba(30, 30, 30, 0.6);
}
:root[data-theme="light"] .platform-card{
  background: var(--surface-default);
}
:root[data-theme="light"] .platform-card:hover{
  background: var(--surface-default);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.platform-icon{
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(12, 117, 192, 0.1);
  border: 1px solid rgba(12, 117, 192, 0.2);
}
.platform-icon svg{
  width: 26px;
  height: 26px;
  fill: var(--brand-400);
}
.platform-card h4{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-title);
}
.platform-card p{
  margin: 0;
  font-size: 12px;
  color: var(--text-subtitle);
  font-weight: 600;
}
.platform-badge{
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(22, 175, 81, 0.15), rgba(22, 175, 81, 0.1));
  color: var(--green-400);
  border: 1px solid rgba(22, 175, 81, 0.3);
  border-radius: 999px;
}

/* Industries Section */
.industries-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry-card{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  font-weight: 650;
  font-size: 14px;
  color: var(--text-body);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.industry-card:hover{
  border-color: rgba(212, 160, 23, 0.3);
  background: rgba(30, 30, 30, 0.6);
}
:root[data-theme="light"] .industry-card{
  background: var(--surface-default);
}
:root[data-theme="light"] .industry-card:hover{
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.industry-icon{
  font-size: 26px;
  position: relative;
  z-index: 1;
}

/* Comparison Table */
.comparison-table-wrapper{
  overflow-x: auto;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-default);
  background: rgba(26, 26, 26, 0.6);
}
:root[data-theme="light"] .comparison-table-wrapper{
  background: var(--surface-subtle);
}
.comparison-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th,
.comparison-table td{
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
}
.comparison-table th{
  font-weight: 700;
  color: var(--text-title);
  background: rgba(20, 20, 20, 0.8);
}
:root[data-theme="light"] .comparison-table th{
  background: var(--surface-default);
}
.comparison-table td{
  color: var(--text-body);
  font-weight: 600;
}
.comparison-table tr:last-child td{
  border-bottom: none;
}
.comparison-table th.highlight,
.comparison-table td.highlight{
  background: var(--primary-surface-subtle);
  color: var(--primary-text);
}
.comparison-table .yes{
  color: var(--success-text);
  font-weight: 800;
  margin-right: 6px;
}
.comparison-table .no{
  color: var(--error-text);
  font-weight: 800;
  margin-right: 6px;
}
.comparison-table .partial{
  color: var(--warning-text);
  font-weight: 800;
  margin-right: 6px;
}

/* Comparison Cards (Mobile) */
.comparison-cards{
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.comparison-card{
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  padding: 16px;
}
:root[data-theme="light"] .comparison-card{
  background: var(--surface-subtle);
}
.comparison-card__feature{
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-default);
}
.comparison-card__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.comparison-card__row:first-of-type{
  padding-top: 0;
}
.comparison-card__label{
  color: var(--text-subtitle);
  font-weight: 600;
}
.comparison-card__value{
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.comparison-card__value.mse{
  color: var(--primary-text);
}
.comparison-card__value .yes{
  color: var(--success-text);
}
.comparison-card__value .no{
  color: var(--error-text);
}
.comparison-card__value .partial{
  color: var(--warning-text);
}

/* Responsive for new sections */
@media (max-width: 980px){
  .platforms-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .industries-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px){
  .comparison-table-wrapper{
    display: none;
  }
  .comparison-cards{
    display: flex;
  }
  .platforms-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .platform-card{
    padding: 16px 12px;
  }
  .platform-icon{
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .platform-icon svg{
    width: 20px;
    height: 20px;
  }
  .platform-card h4{
    font-size: 13px;
  }
  .platform-card p{
    font-size: 11px;
  }
  .platform-badge{
    font-size: 10px;
    padding: 3px 8px;
    margin-top: 10px;
  }
}
@media (max-width: 600px){
  .industries-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px){
  .platforms-grid{
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 8px;
  }
  .platform-card{
    padding: 14px 10px;
    min-width: 0;
  }
  .platform-icon{
    width: 36px;
    height: 36px;
  }
  .platform-icon svg{
    width: 18px;
    height: 18px;
  }
  .platform-card h4{
    font-size: 12px;
  }
  .platform-card p{
    font-size: 10px;
  }
  .platform-badge{
    font-size: 9px;
    padding: 2px 6px;
  }
}
/* Page Load Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation-name: fadeSlideUp;
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

/* Staggered load delays */
.fade-in-up.load-delay-1 { animation-delay: 0.15s; }
.fade-in-up.load-delay-2 { animation-delay: 0.3s; }
.fade-in-up.load-delay-3 { animation-delay: 0.45s; }
.fade-in-up.load-delay-4 { animation-delay: 0.6s; }
.fade-in-up.load-delay-5 { animation-delay: 0.75s; }
.fade-in-up.load-delay-6 { animation-delay: 0.9s; }
.fade-in-up.load-delay-7 { animation-delay: 1.05s; }
.fade-in-up.load-delay-8 { animation-delay: 1.2s; }

/* Simple Scroll Animations */
.animate-on-scroll{
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grid items */
.animate-on-scroll.delay-1{ transition-delay: 0.1s; }
.animate-on-scroll.delay-2{ transition-delay: 0.15s; }
.animate-on-scroll.delay-3{ transition-delay: 0.2s; }
.animate-on-scroll.delay-4{ transition-delay: 0.25s; }
.animate-on-scroll.delay-5{ transition-delay: 0.3s; }
.animate-on-scroll.delay-6{ transition-delay: 0.35s; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .fade-in-up,
  .animate-on-scroll{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Tiny utility */
.muted{ color: var(--text-subtitle); }
.sep{ height: 1px; background: var(--border-default); margin: 24px 0; }
.anchor{
  scroll-margin-top: 90px;
}

/* ===== LUXURY HERO STYLES ===== */
.hero-luxury{
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-effects{
  display: none;
}

.hero-orb,
.hero-grid-pattern{
  display: none;
}

.hero-content{
  position: relative;
  z-index: 2;
}

.badge-luxury{
  position: relative;
  background: transparent;
  border: 1px solid var(--border-default);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.badge-luxury .badge-glow{
  display: none;
}

:root[data-theme="light"] .badge-luxury{
  background: transparent;
  border-color: var(--border-default);
  color: var(--gold-600);
}

.hero-luxury h1{
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin: 24px 0 20px;
  letter-spacing: -1px;
}

.hero-gradient-text{
  display: block;
  color: var(--brand-400);
}

.lead-luxury{
  font-size: 17px;
  line-height: 1.8;
  max-width: 600px;
  color: var(--text-body);
}

/* Premium Buttons */
.btn-premium{
  position: relative;
  background: var(--brand-500);
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.btn-premium:hover{
  background: var(--brand-600);
}

.btn-premium .btn-shine{
  display: none;
}

.btn-glass{
  background: transparent;
  border: 1px solid var(--border-default);
  padding: 13px 28px;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-glass:hover{
  background: var(--surface-subtle);
  border-color: var(--text-caption);
}

:root[data-theme="light"] .btn-glass{
  background: transparent;
  border-color: var(--border-default);
}

:root[data-theme="light"] .btn-glass:hover{
  background: var(--surface-subtle);
}

/* Hero Stats */
.hero-stats{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  width: fit-content;
}

:root[data-theme="light"] .hero-stats{
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--border-default);
}

.hero-stat{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number{
  font-size: 26px;
  font-weight: 800;
  color: var(--gold-500);
  letter-spacing: -0.5px;
}

.hero-stat-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider{
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border-default), transparent);
}

/* Luxury Hero Card */
.hero-card-luxury{
  position: relative;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: visible;
}

.hero-card-luxury .hero-card-glow{
  display: none;
}

:root[data-theme="light"] .hero-card-luxury{
  background: rgba(255, 255, 255, 0.95);
}

/* Ecosystem Visual */
.ecosystem-visual{
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-center{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.ecosystem-logo{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-300));
  padding: 8px;
}

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

.ecosystem-center span{
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ecosystem-nodes{
  position: absolute;
  inset: 0;
}

.ecosystem-node{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ecosystem-node .node-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ecosystem-node .node-icon svg{
  width: 22px;
  height: 22px;
}

.ecosystem-node span{
  font-size: 10px;
  font-weight: 700;
  color: var(--text-caption);
}

.ecosystem-node .node-pulse{
  display: none;
}

.node-suppliers{
  top: 10px;
  left: 20px;
}
.node-suppliers .node-icon{
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.node-suppliers .node-icon svg{ stroke: var(--deep-blue-400); }
.node-suppliers .node-pulse{ background: var(--deep-blue-500); }

.node-manufacturing{
  top: 10px;
  right: 20px;
}
.node-manufacturing .node-icon{
  background: rgba(12, 117, 192, 0.15);
  border: 1px solid rgba(12, 117, 192, 0.3);
}
.node-manufacturing .node-icon svg{ stroke: var(--brand-400); }
.node-manufacturing .node-pulse{ background: var(--brand-500); }

.node-stores{
  bottom: 30px;
  left: 20px;
}
.node-stores .node-icon{
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
}
.node-stores .node-icon svg{ stroke: var(--gold-400); }
.node-stores .node-pulse{ background: var(--gold-500); }

.node-customers{
  bottom: 30px;
  right: 20px;
}
.node-customers .node-icon{
  background: rgba(22, 175, 81, 0.15);
  border: 1px solid rgba(22, 175, 81, 0.3);
}
.node-customers .node-icon svg{ stroke: var(--green-400); }
.node-customers .node-pulse{ background: var(--green-500); }

.ecosystem-connections{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-line{
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  opacity: 0.4;
}

.ecosystem-features{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  background: rgba(20, 20, 20, 0.5);
  border-top: 1px solid var(--border-default);
  margin: 0 -18px -18px;
  border-radius: 0 0 24px 24px;
}

:root[data-theme="light"] .ecosystem-features{
  background: var(--surface-subtle);
}

.ecosystem-feature{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-subtitle);
}

.feature-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feature-dot-blue{ background: var(--brand-400); }
.feature-dot-gold{ background: var(--gold-400); }
.feature-dot-green{ background: var(--green-400); }

/* ===== TRUSTED SECTION ===== */
.trusted-section{
  padding: 40px 0;
  border-bottom: 1px solid var(--border-default);
}

.trusted-label{
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 24px;
}

.trusted-logos{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trusted-logo-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtitle);
  transition: all 0.2s ease;
}

.trusted-logo-item:hover{
  background: rgba(26, 26, 26, 0.5);
  border-color: var(--border-darker);
}

:root[data-theme="light"] .trusted-logo-item{
  background: var(--surface-default);
}

.trusted-industry-icon{
  font-size: 20px;
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section{
  padding: 80px 0;
}

.section-title-center{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title-center h2{
  margin: 12px 0 16px;
}

.section-title-center .section-subtitle{
  text-align: center;
  margin: 0;
}

.section-badge{
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-subtitle{
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-subtitle);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* Ecosystem Flow */
.ecosystem-flow{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 60px 0 50px;
  flex-wrap: wrap;
}

.flow-step{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  max-width: 180px;
}

.flow-icon{
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.flow-icon svg{
  width: 32px;
  height: 32px;
}

.flow-icon-purple{
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.flow-icon-purple svg{ stroke: var(--deep-blue-400); }

.flow-icon-blue{
  background: rgba(12, 117, 192, 0.08);
  border: 1px solid rgba(12, 117, 192, 0.2);
}
.flow-icon-blue svg{ stroke: var(--brand-400); }

.flow-icon-gold{
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.2);
}
.flow-icon-gold svg{ stroke: var(--gold-400); }

.flow-icon-green{
  background: rgba(22, 175, 81, 0.08);
  border: 1px solid rgba(22, 175, 81, 0.2);
}
.flow-icon-green svg{ stroke: var(--green-400); }

.flow-step h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-title);
}

.flow-step p{
  margin: 0;
  font-size: 13px;
  color: var(--text-subtitle);
  line-height: 1.5;
}

.flow-connector{
  display: flex;
  align-items: center;
  padding-top: 36px;
  width: 60px;
}

.flow-connector svg{
  width: 100%;
  height: 20px;
}

/* Benefit Cards */
.benefit-card{
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.2s ease;
}

.benefit-card:hover{
  border-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="light"] .benefit-card{
  background: var(--surface-default);
}

.benefit-icon{
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 117, 192, 0.08);
  border: 1px solid rgba(12, 117, 192, 0.15);
}

.benefit-icon svg{
  width: 28px;
  height: 28px;
  stroke: var(--brand-400);
}

.benefit-card h4{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-title);
}

.benefit-card p{
  margin: 0;
  font-size: 14px;
  color: var(--text-subtitle);
  line-height: 1.6;
}

/* ===== RESPONSIVE FOR LUXURY SECTIONS ===== */
@media (max-width: 1024px){
  .hero-luxury{
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-stats{
    flex-wrap: wrap;
    justify-content: center;
  }

  .ecosystem-flow{
    gap: 10px;
  }

  .flow-step{
    padding: 16px;
    max-width: 150px;
  }

  .flow-connector{
    width: 40px;
  }
}

@media (max-width: 820px){
  .hero-luxury h1{
    font-size: 36px;
  }

  .hero-stats{
    width: 100%;
    justify-content: space-around;
  }

  .hero-stat-divider{
    display: none;
  }

  .ecosystem-flow{
    flex-direction: column;
    align-items: center;
  }

  .flow-connector{
    transform: rotate(90deg);
    width: 40px;
    padding: 0;
  }

  .flow-step{
    max-width: 280px;
  }

  .trusted-logos{
    gap: 16px;
  }

  .trusted-logo-item{
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px){
  .hero-luxury{
    padding: 40px 0 30px;
  }

  .hero-luxury h1{
    font-size: 28px;
  }

  .hero-gradient-text{
    font-size: inherit;
  }

  .lead-luxury{
    font-size: 15px;
  }

  .hero-stats{
    padding: 16px;
    gap: 16px;
  }

  .hero-stat-number{
    font-size: 22px;
  }

  .ecosystem-features{
    flex-direction: column;
    gap: 10px;
  }

  .trusted-logo-item{
    padding: 8px 12px;
  }

  .trusted-industry-icon{
    font-size: 16px;
  }

  .flow-icon{
    width: 60px;
    height: 60px;
  }

  .flow-icon svg{
    width: 26px;
    height: 26px;
  }
}