:root {
  --color-bg: #0d0e1a;
  --color-surface: #13152a;
  --color-surface-2: #1a1d35;
  --color-surface-glass: rgba(26, 29, 53, 0.7);
  --color-primary: #6c63ff;
  --color-primary-light: #8b84ff;
  --color-secondary: #ff6b9d;
  --color-accent: #00d4aa;
  --color-accent-warm: #ffb347;
  --color-text: #e8eaf6;
  --color-text-muted: #9fa3c8;
  --color-text-dim: #6b6f96;
  --color-border: rgba(108, 99, 255, 0.2);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-glow: 0 0 40px rgba(108,99,255,0.25), 0 0 80px rgba(108,99,255,0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 7rem);
  --nav-h: 80px;
  --font-main: 'Instrument Sans', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

/* ── CHROMATIC BLUR BLOBS ── */
.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.blob-field::before,
.blob-field::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.blob-1::before {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, #6c63ff 0%, transparent 70%);
}
.blob-1::after {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
}
.blob-2::before {
  width: 600px; height: 600px;
  top: 10%; right: -150px;
  background: radial-gradient(circle, #00d4aa 0%, transparent 70%);
  opacity: 0.35;
}
.blob-2::after {
  width: 400px; height: 400px;
  bottom: 5%; left: 10%;
  background: radial-gradient(circle, #ffb347 0%, transparent 70%);
  opacity: 0.3;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}
.site-header.scrolled {
  padding: 0.5rem 1.5rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(1rem, 3vw, 2rem);
  transition: all 0.4s ease;
}
.site-header.scrolled .nav-inner {
  background: rgba(13, 14, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6c63ff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--color-text); }
.nav-links a.active::after { right: 0; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: clamp(0.5rem, 1.5vw, 1rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.6rem;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
  padding: 0.15rem 0.2rem;
}
.lang-btn.active { color: var(--color-primary-light); }
.lang-btn:hover { color: var(--color-text); }
.lang-divider { color: var(--color-text-dim); font-size: 0.75rem; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108,99,255,0.35);
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(108,99,255,0.5);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
}
.mobile-menu a:hover { color: var(--color-primary-light); }
.mobile-menu .lang-switcher {
  margin-left: 0;
  padding: 0.4rem 1rem;
}
.mobile-menu .lang-btn { font-size: 0.9rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-diagonal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(13,14,26,0.97) 0%,
    rgba(13,14,26,0.95) 38%,
    rgba(13,14,26,0.7) 55%,
    rgba(13,14,26,0.1) 75%,
    transparent 100%
  );
  z-index: 1;
}
.hero-blob {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, rgba(108,99,255,0.4) 0%, transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  bottom: 0; left: 200px;
  background: radial-gradient(circle, rgba(255,107,157,0.25) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: var(--space-xl);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-md);
}
.hero-eyebrow i { font-size: 0.7rem; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #6c63ff, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(108,99,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108,99,255,0.55);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 3px; height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── PROBLEM SECTION ── */
.problem-section {
  position: relative;
  background: var(--color-surface);
  overflow: hidden;
}
.problem-section .blob-field::before {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(255,107,157,0.2) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 1;
}
.problem-section .blob-field::after {
  width: 400px; height: 400px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%);
  filter: blur(90px);
  opacity: 1;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.problem-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--color-border);
}
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,107,157,0.1));
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── ALTERNATING FEATURES ── */
.features-section { position: relative; overflow: hidden; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: 2; }
.feature-row.reverse .feature-content { order: 1; }
.feature-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feature-visual:hover img { transform: scale(1.03); }
.feature-visual-badge {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: rgba(13,14,26,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
}
.feature-visual-badge i { font-size: 0.9rem; }
.feature-content { position: relative; }
.feature-number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,107,157,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -1rem;
  letter-spacing: -0.05em;
}
.feature-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.feature-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── METHOD SECTION (full-width colored) ── */
.method-section {
  position: relative;
  background: linear-gradient(135deg, #1a0a3d 0%, #0d1a35 40%, #0a2a1f 100%);
  overflow: hidden;
}
.method-section .blob-field::before {
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(108,99,255,0.35) 0%, transparent 65%);
  filter: blur(120px);
  opacity: 1;
}
.method-section .blob-field::after {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,170,0.25) 0%, transparent 65%);
  filter: blur(100px);
  opacity: 1;
}
.method-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.method-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}
.method-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(108,99,255,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.method-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.method-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.method-connector {
  display: none;
}

/* ── BENTO GRID ── */
.bento-section { position: relative; overflow: hidden; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.bento-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-12 { grid-column: span 12; }
.bento-card.accent-purple {
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(108,99,255,0.05));
  border-color: rgba(108,99,255,0.25);
}
.bento-card.accent-pink {
  background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(255,107,157,0.04));
  border-color: rgba(255,107,157,0.2);
}
.bento-card.accent-teal {
  background: linear-gradient(135deg, rgba(0,212,170,0.12), rgba(0,212,170,0.04));
  border-color: rgba(0,212,170,0.2);
}
.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}
.bento-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.bento-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}
.bento-icon.purple { color: var(--color-primary-light); }
.bento-icon.pink { color: var(--color-secondary); }
.bento-icon.teal { color: var(--color-accent); }
.bento-icon.warm { color: var(--color-accent-warm); }

/* ── LOCATION SECTION ── */
.location-section { position: relative; overflow: hidden; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}
.location-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.contact-item:hover {
  border-color: var(--color-border);
  background: rgba(108,99,255,0.06);
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,107,157,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-primary-light);
  flex-shrink: 0;
}
.contact-item-text { flex: 1; }
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--color-text);
  transition: color 0.25s ease;
}
.contact-item-value a:hover { color: var(--color-primary-light); }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  height: 380px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(200deg) saturate(0.5);
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #1a0a3d 0%, #0d1535 50%, #0a1a2a 100%);
  overflow: hidden;
  text-align: center;
}
.cta-section .blob-field::before {
  width: 600px; height: 600px;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(108,99,255,0.4) 0%, transparent 65%);
  filter: blur(120px);
  opacity: 1;
}
.cta-section .blob-field::after {
  width: 400px; height: 400px;
  bottom: -100px; right: 10%;
  background: radial-gradient(circle, rgba(255,107,157,0.3) 0%, transparent 65%);
  filter: blur(90px);
  opacity: 1;
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.cta-section h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-brand .nav-logo { margin-bottom: var(--space-md); }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: var(--space-md);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color 0.25s ease;
}
.footer-col ul li a:hover { color: var(--color-primary-light); }
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  transition: color 0.25s ease;
}
.footer-legal a:hover { color: var(--color-text-muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 var(--space-2xl);
  overflow: hidden;
  background: var(--color-surface);
}
.page-hero .blob-field::before {
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(108,99,255,0.3) 0%, transparent 65%);
  filter: blur(100px);
  opacity: 1;
}
.page-hero .blob-field::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(255,107,157,0.2) 0%, transparent 65%);
  filter: blur(90px);
  opacity: 1;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: var(--color-text-dim); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--color-primary-light); }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── CONTENT SECTIONS ── */
.content-section { position: relative; overflow: hidden; }
.prose {
  max-width: 760px;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-xl) 0 var(--space-md);
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin: var(--space-lg) 0 var(--space-sm);
}
.prose p { margin-bottom: var(--space-md); }
.prose ul { margin: var(--space-sm) 0 var(--space-md) var(--space-md); }
.prose ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.prose ul li::before {
  content: '›';
  position: absolute;
  left: -0.3rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: var(--space-xl);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.1rem;
  top: 0.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 12px rgba(108,99,255,0.5);
}
.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.timeline-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── PRICING SECTION ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.pricing-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: rgba(108,99,255,0.4);
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(255,107,157,0.05));
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  margin-bottom: var(--space-sm);
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: var(--space-lg);
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.pricing-includes li i {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  line-height: 1.6;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-form-wrap {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dim);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: rgba(108,99,255,0.06);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.form-check label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--color-primary-light); }
.form-check label a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(108,99,255,0.4);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(108,99,255,0.55);
}

/* ── THANKS PAGE ── */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thanks-content { position: relative; z-index: 1; max-width: 560px; }
.thanks-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,170,0.2), rgba(0,212,170,0.05));
  border: 2px solid rgba(0,212,170,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-accent);
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 40px rgba(0,212,170,0.2);
}
.thanks-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.thanks-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ── INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.info-card {
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
.info-card:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.info-card-icon {
  font-size: 1.5rem;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.info-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(255,107,157,0.06));
  border: 1px solid rgba(108,99,255,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}
.highlight-box p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  background: rgba(19, 21, 42, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.cookie-text a { color: var(--color-primary-light); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.cookie-btn.accept {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}
.cookie-btn.accept:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(108,99,255,0.4); }
.cookie-btn.reject {
  background: rgba(255,255,255,0.06);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
}
.cookie-btn.reject:hover { background: rgba(255,255,255,0.1); }
.cookie-btn.customize {
  background: transparent;
  color: var(--color-primary-light);
  border: 1px solid rgba(108,99,255,0.35);
}
.cookie-btn.customize:hover { background: rgba(108,99,255,0.08); }

/* Cookie modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}
#cookie-modal.visible { display: flex; }
.cookie-modal-box {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.25rem; }
.cookie-cat-info p { font-size: 0.8rem; color: var(--color-text-muted); line-height: 1.5; }
.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--color-primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.relative { position: relative; }
.z1 { position: relative; z-index: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-card.span-8 { grid-column: span 12; }
  .bento-card.span-4 { grid-column: span 12; }
  .bento-card.span-6 { grid-column: span 12; }
  .bento-card.span-5 { grid-column: span 12; }
  .bento-card.span-7 { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .feature-row { grid-template-columns: 1fr; gap: var(--space-lg); }
  .feature-row.reverse .feature-visual { order: 0; }
  .feature-row.reverse .feature-content { order: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-content { max-width: 100%; }
  .map-wrapper { height: 280px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; justify-content: center; }
  .method-steps { grid-template-columns: 1fr; }
}

/* ── INTL TEL INPUT OVERRIDES ── */
.iti { width: 100%; }
.iti__flag-container { z-index: 10; }
.iti__country-list {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
}
.iti__country:hover, .iti__country.iti__highlight {
  background: rgba(108,99,255,0.1);
}
.iti__dial-code { color: var(--color-text-muted); }
.iti__selected-flag {
  background: transparent !important;
}
.iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,0.04) !important;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

/* AOS overrides */
[data-aos] { will-change: transform, opacity; }