@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #0d1117;
  --ink-soft: #1a2233;
  --surface: #f0f4ff;
  --surface-alt: #e8eef8;
  --primary: #2d6cfc;
  --primary-dark: #1a5ce8;
  --primary-glow: rgba(45,108,252,0.35);
  --secondary: #7c3aed;
  --secondary-glow: rgba(124,58,237,0.3);
  --accent: #00d4b4;
  --accent-glow: rgba(0,212,180,0.3);
  --text-main: #1a2233;
  --text-soft: #4a5568;
  --text-muted: #718096;
  --card-bg: rgba(255,255,255,0.95);
  --nav-bg: #0d1117;
  --nav-text: #e8edf5;
  --dark-bg: #0a0f1e;
  --dark-surface: #111827;
  --dark-card: rgba(255,255,255,0.05);
  --dark-border: rgba(255,255,255,0.08);
  --border-subtle: rgba(45,108,252,0.15);
  --shadow-primary: 0 4px 24px rgba(45,108,252,0.18), 0 1px 4px rgba(45,108,252,0.08);
  --shadow-card: 0 2px 12px rgba(13,17,23,0.06), 0 8px 32px rgba(45,108,252,0.05);
  --shadow-hover: 0 8px 40px rgba(45,108,252,0.25), 0 2px 8px rgba(45,108,252,0.12);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --section-pad: clamp(60px,8vw,120px);
  --container-max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.canvas { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); transition: color 0.25s; }
a:hover { color: var(--primary-dark); }


::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }


nav.drawer-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  transition: box-shadow 0.4s ease;
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--nav-text); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.nav-cta {
  background: var(--primary); color: #fff; padding: 9px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 18px var(--primary-glow), 0 2px 8px rgba(45,108,252,0.3);
}
.nav-links a.nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 28px var(--primary-glow), 0 4px 16px rgba(45,108,252,0.4);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; color: #fff; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}


.drawer-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: linear-gradient(135deg, #050a1a 0%, #0d1a3a 60%, #0a1628 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: all; }
.drawer-overlay-inner { padding: 24px; min-height: 100vh; display: flex; flex-direction: column; }
.drawer-overlay-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.drawer-close {
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.2); }
.drawer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  flex: 1; align-content: center;
}
.drawer-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px 16px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05); color: #e8edf5; text-decoration: none;
  font-size: 0.95rem; font-weight: 600; min-height: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.drawer-item i { font-size: 1.6rem; color: var(--primary); }
.drawer-item:hover {
  background: rgba(45,108,252,0.15); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,108,252,0.2);
}
.drawer-item-cta {
  background: var(--primary); color: #fff;
  box-shadow: 0 0 24px var(--primary-glow);
}
.drawer-item-cta i { color: #fff; }
.drawer-item-cta:hover { background: var(--primary-dark); }


.stage-curtain {
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark-bg); opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}


.section-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }


.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(45,108,252,0.08); padding: 6px 14px;
  border-radius: var(--radius-full); border: 1px solid rgba(45,108,252,0.2);
  margin-bottom: 16px;
}
.section-label-light {
  color: var(--accent); background: rgba(0,212,180,0.1);
  border-color: rgba(0,212,180,0.25);
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--text-main); letter-spacing: -0.03em; line-height: 1.2;
  margin-bottom: 20px;
}
.section-heading-light { color: #fff; }
.body-text {
  font-size: 1.05rem; color: var(--text-soft); line-height: 1.75;
  margin-bottom: 16px;
}
.inline-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; text-decoration: none;
  font-size: 1rem; transition: gap 0.25s, color 0.25s;
  margin-top: 8px;
}
.inline-link:hover { gap: 12px; color: var(--primary-dark); }


.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 1rem; padding: 14px 28px;
  border-radius: var(--radius-md); border: none; cursor: pointer;
  box-shadow: 0 0 24px var(--primary-glow), 0 4px 12px rgba(45,108,252,0.25);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--primary-glow), 0 8px 24px rgba(45,108,252,0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.85); text-decoration: none;
  font-weight: 600; font-size: 1rem; padding: 13px 28px;
  border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4);
  color: #fff; transform: translateY(-2px);
}


.stage {
  min-height: 100vh;
  background: linear-gradient(135deg, #050a1a 0%, #0d1a3a 40%, #0a1628 70%, #060c1e 100%);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 68px;
}
.stage-bg-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
}
.orb-1 {
  width: 600px; height: 600px; top: -150px; left: -200px;
  background: radial-gradient(circle, rgba(45,108,252,0.4) 0%, transparent 70%);
  animation: orb-drift-1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; top: 20%; right: -150px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  animation: orb-drift-2 15s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px; bottom: 10%; left: 40%;
  background: radial-gradient(circle, rgba(0,212,180,0.2) 0%, transparent 70%);
  animation: orb-drift-3 18s ease-in-out infinite;
}
@keyframes orb-drift-1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
@keyframes orb-drift-2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,40px)} }
@keyframes orb-drift-3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-50px)} }

.stage-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1; width: 100%;
}
.stage-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,108,252,0.15); border: 1px solid rgba(45,108,252,0.3);
  color: #8fb4ff; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius-full); margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.stage-badge i { color: var(--accent); }
.stage-heading {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 700;
  color: #fff; line-height: 1.1; letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.stage-heading-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stage-subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.stage-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.stage-img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 60px rgba(45,108,252,0.3), 0 0 120px rgba(45,108,252,0.15), 0 24px 80px rgba(13,17,23,0.5);
  border: 1px solid rgba(45,108,252,0.2);
}
.stage-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.stage-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,108,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.stage-float-card {
  position: absolute; background: rgba(13,17,23,0.85);
  backdrop-filter: blur(20px); border: 1px solid rgba(45,108,252,0.25);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; color: #fff;
  box-shadow: 0 8px 32px rgba(13,17,23,0.4), 0 0 24px rgba(45,108,252,0.15);
  z-index: 10;
}
.stage-float-card-1 { bottom: -20px; left: -20px; }
.stage-float-card-2 { top: -20px; right: -20px; }
.stage-float-card i { font-size: 1.5rem; color: var(--primary); }
.stage-float-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.stage-float-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.stage-visual { position: relative; }


[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }


.section-intro {
  padding: var(--section-pad) 0;
  background: #fff;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.intro-text-col { padding-right: 20px; }
.intro-img-frame {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 48px rgba(45,108,252,0.15), 0 0 96px rgba(45,108,252,0.08), 0 16px 64px rgba(13,17,23,0.12);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.intro-img { width: 100%; height: 420px; object-fit: cover; }
.intro-img-col { position: relative; }
.intro-badge-float {
  position: absolute; bottom: -16px; left: 24px;
  background: var(--primary); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(45,108,252,0.35);
}
.intro-badge-float i { font-size: 1.1rem; }


.section-services-scroll {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #0a0f1e 0%, #111827 100%);
  overflow: hidden;
}
.services-scroll-header {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px 40px;
}
.services-scroll-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  margin-top: 8px; display: flex; align-items: center; gap: 8px;
}
.services-scroll-sub::before { content: '←'; font-size: 1rem; }
.shelf {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--primary) transparent;
  padding: 20px 0 32px;
  cursor: grab;
}
.shelf::-webkit-scrollbar { height: 4px; }
.shelf::-webkit-scrollbar-track { background: transparent; }
.shelf::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }
.shelf.is-grabbing { cursor: grabbing; }
.shelf-track {
  display: flex; gap: 24px;
  padding: 8px 24px;
  width: max-content;
  max-width: none;
}
.shelf-card {
  width: 320px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px;
  color: #e8edf5; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.shelf-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,108,252,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.shelf-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(45,108,252,0.3);
  box-shadow: 0 20px 60px rgba(13,17,23,0.4), 0 0 40px var(--primary-glow);
}
.shelf-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(var(--card-color,45,108,252),0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px var(--card-glow,rgba(45,108,252,0.2));
  border: 1px solid rgba(255,255,255,0.1);
}
.shelf-card-icon i { font-size: 1.5rem; color: var(--card-color, #2d6cfc); }
.shelf-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.shelf-card p { font-size: 0.92rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 20px; }
.shelf-card-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(45,108,252,0.12); color: #8fb4ff;
  padding: 4px 12px; border-radius: var(--radius-full);
  border: 1px solid rgba(45,108,252,0.2);
}


.section-features {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.features-header { text-align: center; margin-bottom: 72px; }
.features-sub {
  font-size: 1.05rem; color: var(--text-soft); max-width: 600px; margin: 0 auto;
}
.features-zigzag { display: flex; flex-direction: column; gap: 80px; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 48px rgba(45,108,252,0.12), 0 16px 64px rgba(13,17,23,0.1);
  border: 1px solid var(--border-subtle);
}
.feature-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.feature-icon-badge {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 24px var(--fg,rgba(45,108,252,0.25));
  border: 1px solid var(--border-subtle);
}
.feature-icon-badge i { font-size: 1.4rem; color: var(--fc, #2d6cfc); }
.feature-title { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; margin-bottom: 16px; color: var(--text-main); letter-spacing: -0.02em; }
.feature-desc { font-size: 1rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }


.section-timeline-preview {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #0a0f1e 0%, #0d1a3a 50%, #0a0f1e 100%);
}
.timeline-preview-header { text-align: center; margin-bottom: 64px; }
.timeline-preview-track {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline-preview-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(45,108,252,0.4);
}
.timeline-preview-item {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
  align-items: start; margin-bottom: 48px; position: relative;
}
.tpi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 8px 32px rgba(13,17,23,0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,17,23,0.4), 0 0 32px var(--primary-glow);
  border-color: rgba(45,108,252,0.3);
}
.tpi-card h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tpi-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.tpi-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  box-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(45,108,252,0.2);
  flex-shrink: 0; z-index: 1; position: relative;
}
.tpi-connector { opacity: 0; }
.tpi-right .tpi-connector { order: 1; }
.tpi-right .tpi-dot { order: 2; }
.tpi-right .tpi-card { order: 3; }
.timeline-preview-cta { text-align: center; margin-top: 48px; }


.section-areas {
  padding: var(--section-pad) 0;
  background: #fff;
}
.areas-header { text-align: center; margin-bottom: 56px; }
.areas-sub { font-size: 1rem; color: var(--text-soft); max-width: 560px; margin: 16px auto 0; }
.areas-gallery {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.area-card {
  background: var(--card-bg); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 24px;
  box-shadow: var(--shadow-card); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.area-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity 0.3s;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(45,108,252,0.15), 0 16px 48px rgba(13,17,23,0.1);
  border-color: rgba(45,108,252,0.3);
}
.area-card:hover::after { opacity: 1; }
.area-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(45,108,252,0.1), rgba(124,58,237,0.1));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.area-icon i { font-size: 1.4rem; color: var(--primary); }
.area-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.area-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.area-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(45,108,252,0.08); color: var(--primary);
  padding: 4px 10px; border-radius: var(--radius-full);
  border: 1px solid rgba(45,108,252,0.2);
}


.section-tools {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #0a0f1e 0%, #111827 100%);
}
.tools-header { text-align: center; margin-bottom: 56px; }
.tools-sub { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 500px; margin: 12px auto 0; }
.tools-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.tool-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.tool-item i { font-size: 2rem; color: var(--primary); transition: color 0.3s; }
.tool-item:hover {
  background: rgba(45,108,252,0.1); border-color: rgba(45,108,252,0.3);
  transform: translateY(-4px); color: #fff;
  box-shadow: 0 8px 32px rgba(45,108,252,0.2);
}
.tool-item:hover i { color: var(--accent); }


.section-contact-preview {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
}
.contact-preview-header { text-align: center; margin-bottom: 48px; }
.contact-preview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-bottom: 40px;
}
.contact-card {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card); text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cc,#2d6cfc), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--cg,rgba(45,108,252,0.15)), 0 12px 40px rgba(13,17,23,0.08);
}
.contact-card:hover::before { opacity: 1; }
.contact-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px var(--cg,rgba(45,108,252,0.2));
  border: 1px solid var(--border-subtle);
}
.contact-card-icon i { font-size: 1.4rem; color: var(--cc, #2d6cfc); }
.contact-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.contact-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; }
.contact-card p a { color: var(--primary); text-decoration: none; }
.contact-card p a:hover { color: var(--primary-dark); }
.contact-card-note { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }
.contact-preview-cta { text-align: center; }


.section-dark {
  background: linear-gradient(180deg, #0a0f1e 0%, #111827 100%);
}


.gallery { display: grid; }


.site-footer {
  background: var(--nav-bg);
  padding: 60px 24px 32px;
  margin-top: auto;
}
.footer-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo img { height: 36px; }
.footer-logo-text { font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.footer-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.5); max-width: 440px; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.25s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
}
.footer-contact-row span {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px;
}
.footer-contact-row span i { color: var(--primary); font-size: 0.8rem; }
.footer-contact-row a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.25s; }
.footer-contact-row a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.8rem;
  transition: color 0.25s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }


.cookie-trigger-wrap {
  position: fixed; bottom: 20px; left: 20px; z-index: 900;
}
.cookie-trigger-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(13,17,23,0.9); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full);
  padding: 8px 14px; font-size: 0.78rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; backdrop-filter: blur(10px);
}
.cookie-trigger-btn i { color: #f59e0b; font-size: 0.9rem; }
.cookie-trigger-btn:hover {
  background: rgba(45,108,252,0.2); color: #fff;
  border-color: rgba(45,108,252,0.4);
  box-shadow: 0 4px 16px rgba(45,108,252,0.2);
}
.cookie-trigger-btn.pulse { animation: cookie-pulse 2s ease-in-out 3; }
@keyframes cookie-pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(45,108,252,0.4)}
  50%{box-shadow:0 0 0 8px rgba(45,108,252,0)}
}
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cookie-modal-overlay.is-open { opacity: 1; pointer-events: all; }
.cookie-modal {
  background: #1a2233; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 36px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(45,108,252,0.1);
  transform: scale(0.95); transition: transform 0.3s;
}
.cookie-modal-overlay.is-open .cookie-modal { transform: scale(1); }
.cookie-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.cookie-modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.cookie-modal h3 { color: #fff; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cookie-modal h3 i { color: #f59e0b; }
.cookie-modal-intro { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; line-height: 1.6; }
.cookie-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-info { display: flex; flex-direction: column; gap: 2px; }
.cookie-option-info strong { color: #fff; font-size: 0.9rem; }
.cookie-option-info span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.cookie-toggle-locked {
  color: rgba(255,255,255,0.3); font-size: 0.85rem;
  padding: 4px 8px;
}
.cookie-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: rgba(255,255,255,0.15); border-radius: 24px;
  transition: background 0.3s;
}
.cookie-slider::before {
  content: ''; position: absolute; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background: #fff; border-radius: 50%;
  transition: transform 0.3s;
}
.cookie-toggle-switch input:checked + .cookie-slider { background: var(--primary); }
.cookie-toggle-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-modal-actions {
  display: flex; gap: 12px; margin-top: 24px;
}
.btn-cookie-save {
  flex: 1; padding: 12px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md);
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
}
.btn-cookie-save:hover { background: rgba(255,255,255,0.15); color: #fff; }
.btn-cookie-accept-all {
  flex: 1; padding: 12px; background: var(--primary);
  border: none; border-radius: var(--radius-md);
  color: #fff; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 0 16px var(--primary-glow);
}
.btn-cookie-accept-all:hover { background: var(--primary-dark); }
.cookie-modal-policy { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 16px; text-align: center; }
.cookie-modal-policy a { color: rgba(255,255,255,0.5); }
.cookie-modal-policy a:hover { color: #fff; }


.spotlight {
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}


.page-hero { padding: 80px 0; }
.page-hero-dark {
  background: linear-gradient(135deg, #050a1a 0%, #0d1a3a 50%, #060c1e 100%);
}
.page-hero-content { max-width: 700px; }
.page-hero-title {
  font-size: clamp(2.4rem,5vw,4rem); font-weight: 700;
  color: #fff; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 20px;
}
.page-hero-sub {
  font-size: clamp(1rem,1.8vw,1.15rem); color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 600px;
}
.page-hero-img { margin-top: 40px; }
.page-hero-img-el {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 0 60px rgba(45,108,252,0.25), 0 24px 80px rgba(13,17,23,0.4);
  border: 1px solid rgba(45,108,252,0.2);
}


.section-team-intro { padding: var(--section-pad) 0; background: var(--surface); }
.team-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.team-intro-values { display: flex; flex-direction: column; gap: 24px; }
.team-value-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; padding: 20px; border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(13,17,23,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-value-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(45,108,252,0.1); }
.team-value-item i { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.team-value-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.team-value-item p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.team-gallery { grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,108,252,0.3);
  box-shadow: 0 0 48px rgba(45,108,252,0.2), 0 20px 60px rgba(13,17,23,0.4);
}
.team-card-img-wrap { overflow: hidden; height: 280px; }
.team-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-card-img { transform: scale(1.04); }
.team-card-body { padding: 24px; }
.team-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 16px; }
.team-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-card-tags span {
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px;
  background: rgba(45,108,252,0.1); color: #8fb4ff;
  border-radius: var(--radius-full); border: 1px solid rgba(45,108,252,0.2);
}
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-team-approach { padding: var(--section-pad) 0; background: var(--surface-alt); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.approach-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 0 48px rgba(45,108,252,0.12), 0 16px 64px rgba(13,17,23,0.1); border: 1px solid var(--border-subtle); }
.approach-img { width: 100%; height: 440px; object-fit: cover; }


.section-timeline-full { padding: var(--section-pad) 0; background: var(--surface); }
.timeline-full-intro {
max-width: 700px; margin: 0 auto 64px; text-align: center; }
.timeline-full-track {
  position: relative; max-width: 960px; margin: 0 auto;
}
.timeline-full-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 40%, var(--accent) 70%, var(--primary) 100%);
  box-shadow: 0 0 16px rgba(45,108,252,0.4);
}
.tl-item {
  display: grid; align-items: start; margin-bottom: 56px; position: relative;
}
.tl-left {
  grid-template-columns: 1fr 60px 1fr;
  grid-template-areas: "content dot empty";
}
.tl-right {
  grid-template-columns: 1fr 60px 1fr;
  grid-template-areas: "empty dot content";
}
.tl-left .tl-content { grid-area: content; }
.tl-right .tl-content { grid-area: content; }
.tl-left .tl-dot { grid-area: dot; }
.tl-right .tl-dot { grid-area: dot; }
.tl-content {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.tl-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(45,108,252,0.12), 0 16px 48px rgba(13,17,23,0.08);
  border-color: rgba(45,108,252,0.3);
}
.tl-phase-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--pg, rgba(45,108,252,0.08));
  color: var(--pc, #2d6cfc);
  padding: 4px 12px; border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid var(--pc, rgba(45,108,252,0.2));
}
.tl-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(45,108,252,0.15);
  border: 1px solid var(--border-subtle);
}
.tl-icon i { font-size: 1.2rem; color: var(--tc, #2d6cfc); }
.tl-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.tl-duration {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.tl-content p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }
.tl-deliverables { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tl-deliverables li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-soft);
}
.tl-deliverables li i { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }
.tl-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dc, #2d6cfc), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  box-shadow: 0 0 24px rgba(45,108,252,0.4), 0 0 48px rgba(45,108,252,0.15);
  z-index: 1; position: relative; align-self: start; margin-top: 32px;
  justify-self: center;
}
.section-timeline-note { padding: var(--section-pad) 0; }
.timeline-note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.timeline-note-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 0 60px rgba(45,108,252,0.2), 0 24px 80px rgba(13,17,23,0.4); border: 1px solid rgba(45,108,252,0.15); }
.timeline-note-img-el { width: 100%; height: 400px; object-fit: cover; display: block; }


.section-faq { padding: var(--section-pad) 0; background: var(--surface); }
.faq-categories-grid { display: flex; flex-direction: column; gap: 48px; margin-bottom: 56px; }
.faq-category {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-category-header {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 32px; border-bottom: 1px solid var(--border-subtle);
  background: rgba(45,108,252,0.02);
}
.faq-category-header i { font-size: 1.5rem; }
.faq-category-header h2 { font-size: 1.15rem; font-weight: 700; color: var(--text-main); }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 32px; background: none; border: none;
  cursor: pointer; text-align: left; font-family: inherit;
  font-size: 0.98rem; font-weight: 600; color: var(--text-main);
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
}
.faq-question:hover { background: rgba(45,108,252,0.03); color: var(--primary); }
.faq-question i {
  flex-shrink: 0; font-size: 0.85rem; color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
}
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 32px;
}
.faq-answer.is-open { max-height: 400px; padding: 0 32px 24px; }
.faq-answer p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-cta-block {
  background: linear-gradient(135deg, #0a0f1e, #0d1a3a);
  border: 1px solid rgba(45,108,252,0.2); border-radius: var(--radius-xl);
  padding: 48px; text-align: center;
  box-shadow: 0 0 60px rgba(45,108,252,0.1);
}
.faq-cta-block i { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; }
.faq-cta-block h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.faq-cta-block p { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 24px; line-height: 1.7; }


.section-contact-form-hero { padding: var(--section-pad) 0; }
.contact-form-header { text-align: center; margin-bottom: 48px; }
.contact-form-wrap {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 48px;
  box-shadow: 0 0 60px rgba(45,108,252,0.1), 0 24px 80px rgba(13,17,23,0.3);
}
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block; font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.85); margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  padding: 14px 18px; color: #fff; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  background: rgba(45,108,252,0.06);
  box-shadow: 0 0 0 3px rgba(45,108,252,0.15), 0 0 20px rgba(45,108,252,0.1);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-helper { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 6px; }
.form-error { display: block; font-size: 0.78rem; color: #fc6b6b; margin-top: 4px; min-height: 16px; }
.form-field-checkbox { display: flex; flex-direction: column; gap: 6px; }
.form-privacy-label {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.form-privacy-label input[type="checkbox"] { display: none; }
.form-checkbox-custom {
  width: 20px; height: 20px; min-width: 20px; border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s; margin-top: 1px;
}
.form-privacy-label input:checked + .form-checkbox-custom {
  background: var(--primary); border-color: var(--primary);
}
.form-privacy-label input:checked + .form-checkbox-custom::after {
  content: '✓'; color: #fff; font-size: 0.75rem; font-weight: 700;
}
.form-privacy-label a { color: var(--accent); }
.form-privacy-label a:hover { color: #fff; }
.btn-form-submit {
  width: 100%; padding: 16px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius-md); font-family: inherit;
  font-size: 1.05rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 0 32px var(--primary-glow), 0 8px 24px rgba(45,108,252,0.3);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  margin-top: 8px;
}
.btn-form-submit:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 0 48px var(--primary-glow), 0 12px 32px rgba(45,108,252,0.4);
}
.section-contact-team { padding: var(--section-pad) 0; background: var(--surface); }
.contact-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact-team-details { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.ctd-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(13,17,23,0.04);
}
.ctd-item i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.ctd-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; }
.ctd-item span { font-size: 0.88rem; color: var(--text-soft); }
.ctd-item a { color: var(--primary); text-decoration: none; }
.ctd-item a:hover { color: var(--primary-dark); }
.contact-team-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 0 48px rgba(45,108,252,0.12), 0 16px 64px rgba(13,17,23,0.1); border: 1px solid var(--border-subtle); }
.contact-team-img { width: 100%; height: 460px; object-fit: cover; display: block; }
.section-map { padding: var(--section-pad) 0; background: var(--surface-alt); }
.map-header { text-align: center; margin-bottom: 32px; }
.map-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 40px rgba(45,108,252,0.1), 0 12px 48px rgba(13,17,23,0.08);
  border: 1px solid var(--border-subtle);
}


.section-thanks { padding: var(--section-pad) 0; width: 100%; }
.thanks-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.thanks-top { margin-bottom: 56px; }
.thanks-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--primary-glow), 0 0 80px rgba(45,108,252,0.2);
}
.thanks-icon i { font-size: 2rem; color: #fff; }
.thanks-heading { font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--text-main); letter-spacing: -0.03em; margin-bottom: 16px; }
.thanks-sub { font-size: 1.05rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 32px; }
.thanks-timeline { text-align: left; }
.thanks-tl-item {
  display: grid; grid-template-columns: 48px 2px 1fr; gap: 0 20px;
  align-items: start; margin-bottom: 0;
}
.thanks-tl-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(45,108,252,0.1); border: 2px solid rgba(45,108,252,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; flex-shrink: 0;
  transition: all 0.3s;
}
.thanks-tl-dot-active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary); color: #fff;
  box-shadow: 0 0 24px var(--primary-glow);
}
.thanks-tl-dot-upcoming {
  background: rgba(255,255,255,0.5); border: 2px dashed rgba(13,17,23,0.2);
  color: var(--text-muted);
}
.thanks-tl-line {
  width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary));
  min-height: 40px; justify-self: center; margin: 4px 0;
}
.thanks-tl-content { padding: 12px 0 32px; }
.thanks-tl-content strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.thanks-tl-content span { font-size: 0.88rem; color: var(--text-soft); line-height: 1.6; }
.thanks-tl-done .thanks-tl-dot { background: rgba(0,212,180,0.1); border-color: var(--accent); color: var(--accent); }
.thanks-tl-upcoming .thanks-tl-content strong { color: var(--text-muted); }


.section-legal { padding: var(--section-pad) 0; background: var(--surface); }
.section-legal-alt { background: #fff; }
.section-legal-cookies { background: var(--surface-alt); }
.legal-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.legal-header { margin-bottom: 48px; }
.legal-header-alt {
  border-bottom: 3px solid var(--primary); padding-bottom: 28px; margin-bottom: 40px;
}
.legal-title { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 700; color: var(--text-main); letter-spacing: -0.03em; margin-bottom: 8px; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.legal-intro { font-size: 1rem; color: var(--text-soft); line-height: 1.75; background: rgba(45,108,252,0.05); padding: 20px 24px; border-radius: var(--radius-md); border-left: 3px solid var(--primary); }
.legal-body { display: flex; flex-direction: column; gap: 0; }
.legal-body-alt .legal-section { background: rgba(45,108,252,0.02); border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px; border: 1px solid var(--border-subtle); }
.legal-section { padding: 28px 0; border-bottom: 1px solid var(--border-subtle); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.legal-section p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--primary); }
.legal-section a:hover { color: var(--primary-dark); }
.legal-info-box {
  background: rgba(45,108,252,0.05); border: 1px solid rgba(45,108,252,0.15);
  border-radius: var(--radius-md); padding: 16px 20px; margin: 12px 0;
}
.legal-info-box p { font-size: 0.9rem; margin-bottom: 4px; }


.cookies-hero { text-align: center; margin-bottom: 48px; }
.cookies-hero-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,158,11,0.3);
  box-shadow: 0 0 32px rgba(245,158,11,0.15);
}
.cookies-hero-icon i { font-size: 2rem; color: #f59e0b; }
.cookies-hero-intro { font-size: 1rem; color: var(--text-soft); max-width: 600px; margin: 12px auto 0; line-height: 1.7; }
.cookies-what-block { background: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 32px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card); }
.cookies-what-block h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.cookies-what-block p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 10px; }
.cookies-what-block p:last-child { margin-bottom: 0; }
.cookies-table-section { margin-bottom: 32px; }
.cookies-table-section h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 20px; }
.cookies-category-block { background: #fff; border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-card); }
.cookies-cat-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-subtle);
}
.cookies-cat-necessary { background: rgba(0,212,180,0.05); border-bottom-color: rgba(0,212,180,0.2); }
.cookies-cat-necessary i { color: var(--accent); }
.cookies-cat-analytics { background: rgba(45,108,252,0.05); border-bottom-color: rgba(45,108,252,0.15); }
.cookies-cat-analytics i { color: var(--primary); }
.cookies-cat-marketing { background: rgba(124,58,237,0.05); border-bottom-color: rgba(124,58,237,0.15); }
.cookies-cat-marketing i { color: var(--secondary); }
.cookies-cat-header i { font-size: 1.3rem; }
.cookies-cat-header strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-main); }
.cookies-cat-header span { font-size: 0.78rem; color: var(--text-muted); }
.cookies-cat-body { padding: 20px 24px; }
.cookies-cat-body p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }
.cookie-row { display: flex; gap: 16px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--border-subtle); }
.cookie-row-name code { font-family: monospace; font-size: 0.85rem; background: rgba(45,108,252,0.07); color: var(--primary); padding: 2px 8px; border-radius: 4px; white-space: nowrap; }
.cookie-row-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }
.cookies-manage-block { background: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 32px; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-card); }
.cookies-manage-block h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.cookies-manage-block p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 14px; }
.cookies-browsers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.cookies-browser-item { background: var(--surface); border-radius: var(--radius-md); padding: 14px 16px; border: 1px solid var(--border-subtle); }
.cookies-browser-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.cookies-browser-item span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.cookies-contact-block { background: linear-gradient(135deg, rgba(45,108,252,0.05), rgba(124,58,237,0.05)); border: 1px solid rgba(45,108,252,0.15); border-radius: var(--radius-lg); padding: 32px; }
.cookies-contact-block h2 { font-size: 1.2rem; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.cookies-contact-block p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 10px; }
.cookies-contact-block a { color: var(--primary); }
.cookies-contact-block a:hover { color: var(--primary-dark); }


@media (max-width: 1024px) {
  .areas-gallery { grid-template-columns: repeat(2,1fr); }
  .tools-grid { grid-template-columns: repeat(4,1fr); }
  .team-gallery { grid-template-columns: repeat(2,1fr); }
  .intro-grid { gap: 48px; }
  .feature-row { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(48px,8vw,80px); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stage-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .stage-visual { display: none; }
  .stage-heading { font-size: clamp(2.2rem,8vw,3.2rem); }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-text-col { padding-right: 0; }
  .intro-img { height: 300px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row-reverse { direction: ltr; }
  .feature-img { height: 280px; }
  .areas-gallery { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .timeline-preview-track::before { left: 24px; }
  .timeline-preview-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .tpi-connector { display: none; }
  .tpi-right .tpi-connector { display: none; }
  .tpi-right .tpi-dot { order: 0; }
  .tpi-right .tpi-card { order: 1; }
  .timeline-full-track::before { left: 20px; }
  .tl-item { grid-template-columns: 40px 1fr; grid-template-rows: auto; }
  .tl-left { grid-template-areas: "dot content"; }
  .tl-right { grid-template-areas: "dot content"; }
  .tl-dot { width: 40px; height: 40px; font-size: 0.9rem; margin-top: 24px; }
  .team-gallery { grid-template-columns: 1fr; }
  .team-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-img { height: 300px; }
  .timeline-note-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-team-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-team-img { height: 300px; }
  .cookies-browsers-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
  .shelf-card { width: 280px; }
  .shelf-track { padding: 8px 16px; }
  .thanks-tl-item { grid-template-columns: 44px 2px 1fr; }
  .faq-question { padding: 16px 20px; }
  .faq-answer { padding: 0 20px; }
  .faq-answer.is-open { padding: 0 20px 20px; }
  .faq-category-header { padding: 18px 20px; }
  .legal-body-alt .legal-section { padding: 20px; }
}

@media (max-width: 480px) {
  .stage-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .areas-gallery { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .drawer-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cookie-modal { padding: 24px 20px; }
  .cookie-modal-actions { flex-direction: column; }
  .section-contact-form-hero .page-hero-title { font-size: 2rem; }
  .timeline-preview-item { grid-template-columns: 40px 1fr; }
  .tpi-dot { width: 40px; height: 40px; font-size: 0.85rem; }
  .tpi-card { padding: 20px; }
  .thanks-tl-item { gap: 0 12px; }
}