:root {
  --aurora-1: #6ee7f7;
  --aurora-2: #a78bfa;
  --aurora-3: #34d399;
  --aurora-4: #818cf8;
  --aurora-5: #f0abfc;
  --primary: #1e1b4b;
  --primary-light: #312e81;
  --secondary: #6ee7f7;
  --accent: #a78bfa;
  --accent-green: #34d399;
  --text-dark: #1a1a2e;
  --text-mid: #374151;
  --text-light: #6b7280;
  --text-white: #f8fafc;
  --surface-white: rgba(255,255,255,0.92);
  --surface-frost: rgba(255,255,255,0.75);
  --surface-dark: rgba(30,27,75,0.85);
  --border-light: rgba(167,139,250,0.2);
  --border-mid: rgba(167,139,250,0.35);
  --shadow-sm: 0 1px 3px rgba(30,27,75,0.08), 0 1px 2px rgba(30,27,75,0.06);
  --shadow-md: 0 4px 16px rgba(30,27,75,0.10), 0 2px 8px rgba(110,231,247,0.08);
  --shadow-lg: 0 10px 40px rgba(30,27,75,0.15), 0 4px 16px rgba(110,231,247,0.10), 0 1px 4px rgba(167,139,250,0.12);
  --shadow-xl: 0 20px 60px rgba(30,27,75,0.20), 0 8px 24px rgba(110,231,247,0.12), 0 2px 8px rgba(167,139,250,0.15);
  --shadow-glow: 0 0 30px rgba(167,139,250,0.25), 0 0 60px rgba(110,231,247,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --font-main: 'Figtree', sans-serif;
  --transition-fast: 0.18s ease;
  --transition-mid: 0.32s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #0d0b1e;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ===== AURORA BACKGROUND ===== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

.aurora-layer:nth-child(1) {
  width: 70vw; height: 60vh;
  background: radial-gradient(ellipse, #6ee7f7 0%, transparent 70%);
  top: -20%; left: -15%;
  animation-duration: 20s;
}
.aurora-layer:nth-child(2) {
  width: 55vw; height: 55vh;
  background: radial-gradient(ellipse, #a78bfa 0%, transparent 70%);
  top: 10%; right: -10%;
  animation-duration: 26s;
  animation-delay: -8s;
}
.aurora-layer:nth-child(3) {
  width: 50vw; height: 45vh;
  background: radial-gradient(ellipse, #34d399 0%, transparent 70%);
  bottom: 5%; left: 20%;
  animation-duration: 22s;
  animation-delay: -14s;
  opacity: 0.3;
}
.aurora-layer:nth-child(4) {
  width: 40vw; height: 40vh;
  background: radial-gradient(ellipse, #818cf8 0%, transparent 70%);
  bottom: -10%; right: 15%;
  animation-duration: 30s;
  animation-delay: -5s;
  opacity: 0.35;
}

@keyframes auroraDrift {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(3vw,-4vh) scale(1.05); }
  66% { transform: translate(-2vw,3vh) scale(0.97); }
  100% { transform: translate(4vw,2vh) scale(1.03); }
}

/* ===== LAYOUT ===== */
.site-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition-mid), box-shadow var(--transition-mid);
}

.site-header.scrolled {
  background: rgba(13,11,30,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(30,27,75,0.25), 0 1px 4px rgba(110,231,247,0.08);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-right { justify-content: flex-end; }

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-logo img, .nav-logo svg {
  height: 40px;
  width: auto;
}

.nav-link {
  color: rgba(248,250,252,0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  transition: right var(--transition-mid);
  border-radius: var(--radius-full);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--aurora-2), var(--aurora-4));
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 2px 12px rgba(167,139,250,0.35);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(167,139,250,0.5);
  filter: brightness(1.1);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.6rem;
  backdrop-filter: blur(8px);
}

.lang-btn {
  color: rgba(248,250,252,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color var(--transition-fast);
  padding: 0.1rem 0.2rem;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { color: var(--aurora-1); }

.lang-divider {
  color: rgba(248,250,252,0.25);
  font-size: 0.7rem;
}

/* ===== MOBILE MENU ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition-mid), opacity var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(13,11,30,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-mid);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
}
.mobile-menu .nav-cta {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  margin-top: var(--space-sm);
}
.mobile-menu .lang-switcher {
  margin-top: var(--space-sm);
  padding: 0.4rem 1rem;
}
.mobile-menu .lang-btn { font-size: 0.9rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-3xl) + 2rem) 0 var(--space-2xl);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(110,231,247,0.12);
  border: 1px solid rgba(110,231,247,0.3);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--aurora-1);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(248,250,252,0.72);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--aurora-2), var(--aurora-4));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  box-shadow: 0 4px 20px rgba(167,139,250,0.4), 0 1px 4px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(167,139,250,0.55), 0 2px 8px rgba(0,0,0,0.2);
  filter: brightness(1.08);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: rgba(248,250,252,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(110,231,247,0.4);
  transform: translateY(-2px);
  color: #fff;
}

/* Hero cards stack */
.hero-cards {
  position: relative;
  height: 460px;
}

.hero-card {
  position: absolute;
  background: var(--surface-frost);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-card:nth-child(1) {
  width: 85%;
  top: 0; right: 0;
  transform: rotate(3deg) translateY(0);
  z-index: 1;
  background: rgba(167,139,250,0.15);
  border-color: rgba(167,139,250,0.4);
}
.hero-card:nth-child(2) {
  width: 85%;
  top: 130px; right: 20px;
  transform: rotate(-1.5deg);
  z-index: 2;
  background: rgba(110,231,247,0.12);
  border-color: rgba(110,231,247,0.35);
}
.hero-card:nth-child(3) {
  width: 85%;
  top: 260px; right: 5px;
  transform: rotate(1deg);
  z-index: 3;
  background: rgba(52,211,153,0.12);
  border-color: rgba(52,211,153,0.35);
}

.hero-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  z-index: 10;
}

.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.hero-card:nth-child(1) .hero-card-icon { background: rgba(167,139,250,0.25); color: var(--aurora-2); }
.hero-card:nth-child(2) .hero-card-icon { background: rgba(110,231,247,0.25); color: var(--aurora-1); }
.hero-card:nth-child(3) .hero-card-icon { background: rgba(52,211,153,0.25); color: var(--aurora-3); }

.hero-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.hero-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-dark {
  background: rgba(13,11,30,0.6);
  backdrop-filter: blur(4px);
}

.section-frost {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(2px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aurora-1);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.section-title .accent { color: var(--aurora-2); }

.section-desc {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.65);
  line-height: 1.75;
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-xl);
}

/* ===== ACCORDION ===== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--surface-frost);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.accordion-item:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
}

.accordion-item.open {
  border-color: rgba(167,139,250,0.4);
  box-shadow: var(--shadow-lg);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--space-sm);
  text-align: left;
  transition: background var(--transition-fast);
}

.accordion-trigger:hover { background: rgba(255,255,255,0.04); }

.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(110,231,247,0.2));
  color: var(--aurora-2);
  border: 1px solid rgba(167,139,250,0.25);
}

.accordion-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.accordion-subtitle {
  font-size: 0.8rem;
  color: rgba(248,250,252,0.5);
  margin-top: 0.15rem;
}

.accordion-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-2);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform var(--transition-mid), background var(--transition-fast);
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
  background: rgba(167,139,250,0.2);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.accordion-item.open .accordion-body { max-height: 800px; }

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.accordion-content p {
  color: rgba(248,250,252,0.72);
  line-height: 1.75;
  font-size: 0.95rem;
}

.accordion-content ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(248,250,252,0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.accordion-content li::before {
  content: '→';
  color: var(--aurora-3);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.bento-card {
  background: var(--surface-frost);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(167,139,250,0.06));
  border-radius: inherit;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }

.bento-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.bento-card p {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.62);
  line-height: 1.65;
}

.bento-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.bento-card.tall .bento-card-img { height: 200px; }

/* ===== VALUES SECTION ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--surface-frost);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-mid);
}

.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto var(--space-sm);
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.62);
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(167,139,250,0.2), rgba(110,231,247,0.15));
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(167,139,250,0.1);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.cta-box p {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.72);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SIMULATORS ===== */
.simulator-card {
  background: var(--surface-frost);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.simulator-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sim-form {
  display: grid;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(248,250,252,0.7);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,250,252,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--aurora-2);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.15);
}

.form-group select option { background: #1e1b4b; color: #fff; }

.sim-result {
  background: linear-gradient(135deg, rgba(52,211,153,0.12), rgba(110,231,247,0.1));
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-sm);
  display: none;
}

.sim-result.visible { display: block; }

.sim-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}

.sim-result-row:last-child { border-bottom: none; }
.sim-result-row span:first-child { color: rgba(248,250,252,0.65); }
.sim-result-row span:last-child { color: #fff; font-weight: 600; }
.sim-result-row.total span { color: var(--aurora-3); font-weight: 700; font-size: 1rem; }

.sim-disclaimer {
  font-size: 0.75rem;
  color: rgba(248,250,252,0.45);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.contact-info p {
  color: rgba(248,250,252,0.65);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--space-sm);
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(167,139,250,0.15);
  border: 1px solid rgba(167,139,250,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-2);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-detail-text span,
.contact-detail-text a {
  color: rgba(248,250,252,0.62);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-detail-text a:hover { color: var(--aurora-1); }

.contact-form-card {
  background: var(--surface-frost);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--aurora-2);
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}

.privacy-check span {
  font-size: 0.82rem;
  color: rgba(248,250,252,0.55);
  line-height: 1.55;
}

.privacy-check a {
  color: var(--aurora-1);
  text-decoration: none;
}
.privacy-check a:hover { text-decoration: underline; }

.map-wrapper {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ===== THANKS PAGE ===== */
.thanks-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
}

.thanks-card {
  background: var(--surface-frost);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-xl);
}

.thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52,211,153,0.2), rgba(110,231,247,0.2));
  border: 2px solid rgba(52,211,153,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--aurora-3);
  margin: 0 auto var(--space-md);
}

.thanks-card h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.thanks-card p {
  color: rgba(248,250,252,0.65);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

/* ===== LEGAL PAGES ===== */
.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--space-3xl) + 2rem) var(--space-md) var(--space-2xl);
}

.legal-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.legal-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.85rem;
  color: rgba(248,250,252,0.45);
}

.legal-section {
  margin-bottom: var(--space-lg);
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--aurora-1);
  margin-bottom: 0.75rem;
}

.legal-section p, .legal-section li {
  color: rgba(248,250,252,0.65);
  line-height: 1.8;
  font-size: 0.92rem;
}

.legal-section ul {
  margin: 0.5rem 0 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(10,8,20,0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-light);
  padding: var(--space-2xl) 0 var(--space-md);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.5);
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aurora-1);
  margin-bottom: var(--space-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(248,250,252,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(248,250,252,0.9);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(248,250,252,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: rgba(248,250,252,0.7); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,11,30,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border-light);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cookie-text p {
  color: rgba(248,250,252,0.55);
  font-size: 0.8rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--aurora-1);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  font-family: var(--font-main);
}
.cookie-btn:hover { transform: translateY(-2px); }

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--aurora-2), var(--aurora-4));
  color: #fff;
  box-shadow: 0 2px 10px rgba(167,139,250,0.35);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.06);
  color: rgba(248,250,252,0.7);
  border: 1px solid var(--border-light);
}

.cookie-btn-customize {
  background: rgba(110,231,247,0.1);
  color: var(--aurora-1);
  border: 1px solid rgba(110,231,247,0.25);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
}

.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-inner {
  background: #1a1730;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}

.cookie-modal-inner h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-category-info h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.cookie-category-info p { color: rgba(248,250,252,0.5); font-size: 0.78rem; line-height: 1.5; }

.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--aurora-3); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: var(--space-md);
  justify-content: flex-end;
}

/* ===== IMAGE STYLES ===== */
.img-rounded { border-radius: var(--radius-lg); }
.img-cover { object-fit: cover; width: 100%; }
.img-glow { box-shadow: var(--shadow-lg), 0 0 30px rgba(167,139,250,0.15); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--space-3xl) + 2rem) 0 var(--space-xl);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(248,250,252,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== ENTRANCE ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ===== UTILITY ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aurora-3);
  box-shadow: 0 0 8px var(--aurora-3);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 6px var(--aurora-3); opacity: 1; }
  50% { box-shadow: 0 0 16px var(--aurora-3); opacity: 0.7; }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--aurora-2);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin: var(--space-xl) 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
  .hero-inner { gap: var(--space-lg); }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }

  .nav-inner { grid-template-columns: 1fr auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .hero-cards {
    height: 300px;
    margin-top: var(--space-lg);
  }

  .hero-card { width: 90%; }
  .hero-card:nth-child(1) { top: 0; right: 5%; }
  .hero-card:nth-child(2) { top: 80px; right: 2%; }
  .hero-card:nth-child(3) { top: 160px; right: 5%; }

  .values-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
  .bento-card.tall { grid-row: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  .form-row { grid-template-columns: 1fr; }

  .cta-box { padding: var(--space-xl) var(--space-md); }

  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }

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

  .section { padding: var(--space-xl) 0; }
  .space-2xl { padding: var(--space-xl) 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
  .contact-form-card { padding: var(--space-md); }
  .thanks-card { padding: var(--space-xl) var(--space-md); }
  .legal-wrapper { padding-top: calc(var(--space-2xl) + 2rem); }
}

/* ===== INTL TEL INPUT OVERRIDE ===== */
.iti, #phone { width: 100%; }
.iti__flag-container { z-index: 10; }
.iti__selected-flag { background: rgba(255,255,255,0.06) !important; border-right: 1px solid var(--border-light) !important; }
.iti__country-list { background: #1a1730; border: 1px solid var(--border-mid); color: #fff; }
.iti__country:hover { background: rgba(167,139,250,0.15); }