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

:root {
  --bg-primary: #0d0f14;
  --bg-secondary: #111520;
  --bg-card: #161b27;
  --bg-card-hover: #1a2133;
  --accent-cyan: #00e5ff;
  --accent-cyan-dim: rgba(0, 229, 255, 0.12);
  --accent-cyan-glow: rgba(0, 229, 255, 0.25);
  --accent-green: #39ff14;
  --accent-green-dim: rgba(57, 255, 20, 0.1);
  --accent-magenta: #ff2d78;
  --text-primary: #e8eaf2;
  --text-secondary: #8892a4;
  --text-muted: #4a5568;
  --nav-bg: #0a0c10;
  --border-color: #1e2535;
  --border-glow: rgba(0, 229, 255, 0.2);
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
  --shadow-card-hover: 0 4px 16px rgba(0,229,255,0.08), 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 24px rgba(0,229,255,0.15), 0 0 48px rgba(0,229,255,0.05);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
}

.page-wrapper {
  flex: 1;
  transition: transform 0.4s ease;
}

/* ============================
   NAVIGATION
   ============================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(16px, 2.5vw, 28px) 0;
  transition: padding var(--transition-slow), background var(--transition-slow), box-shadow var(--transition-slow);
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.nav--compact {
  padding: 10px 0;
  background: rgba(10, 12, 16, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(0, 229, 255, 0.12);
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--accent-cyan);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  transition: all var(--transition-slow);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.nav__logo span { color: var(--accent-green); }
.nav--compact .nav__logo { font-size: clamp(14px, 1.6vw, 17px); }

.nav__list {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  align-items: center;
}

.nav__link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-cyan);
  transition: width var(--transition-base);
}

.nav__link:hover { color: var(--accent-cyan); }
.nav__link:hover::after { width: 100%; }
.nav__link--active { color: var(--accent-cyan); }
.nav__link--active::after { width: 100%; }

.nav__cta {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

.nav__cta:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
  transition: all var(--transition-base);
}

.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 MENU (PUSH PATTERN)
   ============================ */

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: #0a0c10;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(0, 229, 255, 0.12);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
}

.mobile-menu--open { transform: translateX(0); }

.page-wrapper--pushed {
  transform: translateX(-300px) scale(0.95);
  transform-origin: left center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu__logo {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.mobile-menu__logo span { color: var(--accent-green); }

.mobile-menu__close {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu__close:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mobile-menu__link {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
  border-color: rgba(0, 229, 255, 0.15);
}

.mobile-menu__cta {
  display: block;
  text-align: center;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  transition: all var(--transition-base);
}

.mobile-menu__cta:hover {
  background: var(--accent-green);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.3);
}

/* ============================
   HERO
   ============================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/team-presentation-hero.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,15,20,0.97) 0%, rgba(0,229,255,0.03) 50%, rgba(57,255,20,0.02) 100%);
  z-index: 1;
}

.hero__grid-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(16px, 4vw, 48px);
  margin: 0 auto;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero__label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__label-text { text-transform: uppercase; }

.hero__title {
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero__title-accent {
  color: var(--accent-cyan);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.hero__title-cursor {
  display: inline-block;
}

.cursor-blink {
  color: var(--accent-green);
  animation: cursorBlink 1.1s step-end infinite;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 40px;
  font-weight: 400;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-cyan), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================
   BUTTONS
   ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.5vw, 14px) clamp(20px, 2.5vw, 28px);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.04em;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  line-height: 1;
}

.btn--primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 4px 16px rgba(0,229,255,0.2), 0 1px 4px rgba(0,0,0,0.4);
}

.btn--primary:hover {
  background: #33edff;
  box-shadow: 0 6px 24px rgba(0,229,255,0.35), 0 2px 8px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn--secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
}

.btn--outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.btn--outline:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0,229,255,0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn--ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.btn--large {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================
   SECTION BASE
   ============================ */

.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.section__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section__intro {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 48px;
}

.section__body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section__body:last-child { margin-bottom: 0; }

.section--dark-card { background: var(--bg-secondary); }

/* ============================
   GRADIENT BRIDGES
   ============================ */

.gradient-bridge {
  height: 120px;
  position: relative;
  pointer-events: none;
}

.gradient-bridge--1 {
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.gradient-bridge--2 {
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

/* ============================
   PROBLEM SECTION
   ============================ */

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.problem__text .section__title { margin-top: 16px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: gap var(--transition-base);
  margin-top: 24px;
}

.link-arrow:hover { gap: 14px; }

.terminal-block {
  background: #0a0d14;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 229, 255, 0.04);
}

.terminal-block__header {
  background: #111520;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.terminal-block__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.terminal-block__dot--red { background: #ff5f56; }
.terminal-block__dot--yellow { background: #ffbd2e; }
.terminal-block__dot--green { background: #27c93f; }

.terminal-block__title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-block__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terminal-block__line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
}

.terminal-block__line--gap { height: 8px; }

.terminal-block__line--error { color: var(--accent-magenta); }
.terminal-block__line--success { color: var(--accent-green); }

.terminal-block__prompt {
  color: var(--accent-cyan);
  min-width: 12px;
}

.terminal-block__cmd { color: var(--text-primary); }
.terminal-block__comment { color: var(--text-muted); }

/* ============================
   SERVICES
   ============================ */

.services__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-green));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.04);
}

.service-card--featured::before { opacity: 1; }

.service-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-card__icon-wrap {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

.service-card__icon {
  font-size: 20px;
  color: var(--accent-cyan);
}

.service-card__title {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================
   ABOUT PREVIEW
   ============================ */

.about-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-preview__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-preview__img {
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-preview__img-wrap:hover .about-preview__img { transform: scale(1.04); }

.about-preview__img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}

.about-preview__img-badge-text {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.about-preview__img-badge-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-preview__values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.about-preview__value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.about-preview__value-icon {
  color: var(--accent-green);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================
   HOW TEASER
   ============================ */

.how-teaser__header {
  margin-bottom: 56px;
}

.how-teaser__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.step-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,229,255,0.06), 0 2px 8px rgba(0,0,0,0.4);
}

.step-card__number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: rgba(0, 229, 255, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition-base);
}

.step-card:hover .step-card__number { color: rgba(0, 229, 255, 0.4); }

.step-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.how-teaser__cta { text-align: center; }

/* ============================
   IMAGE BREAK
   ============================ */

.image-break__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 4px;
}

.image-break__item {
  position: relative;
  overflow: hidden;
}

.image-break__item--large { grid-row: 1; }

.image-break__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-break__item:hover .image-break__img { transform: scale(1.06); }

.image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,20,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.image-break__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================
   CTA BLOCK
   ============================ */

.section--cta-block { background: var(--bg-secondary); }

.cta-block {
  text-align: center;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0,229,255,0.03) 0%, var(--bg-card) 100%);
}

.cta-block__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  color: rgba(0, 229, 255, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.cta-block .section__label { margin-bottom: 16px; }

.cta-block__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.cta-block__body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-block__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 24px;
}

.cta-block__contact-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-block__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.cta-block__contact-link:hover { color: var(--accent-cyan); }

/* ============================
   PAGE HERO
   ============================ */

.page-hero {
  padding: clamp(120px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.page-hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero__content {
  max-width: 800px;
}

.page-hero__title {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  margin-top: 16px;
}

.page-hero__accent {
  color: var(--accent-cyan);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
}

.page-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
}

/* ============================
   EXPERIENCE PAGE
   ============================ */

.exp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.exp-intro__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exp-intro__img {
  width: 100%;
  height: clamp(280px, 35vw, 480px);
  object-fit: cover;
}

.expertise-areas__header { margin-bottom: 48px; }

.expertise-areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.expertise-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.06);
}

.expertise-card__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: rgba(0, 229, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
  transition: color var(--transition-base);
}

.expertise-card:hover .expertise-card__num { color: rgba(0, 229, 255, 0.5); }

.expertise-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.expertise-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.approach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.approach-split__img {
  width: 100%;
  height: clamp(280px, 35vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.groups__header { margin-bottom: 48px; }

.groups__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.group-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.group-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,229,255,0.06);
}

.group-card__icon {
  font-size: 24px;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.group-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.group-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   PROCESS TIMELINE
   ============================ */

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
}

.process-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 24px;
}

.process-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-cyan-dim);
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(0,229,255,0.2);
}

.process-step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,229,255,0.3), rgba(0,229,255,0.05));
  margin: 8px 0;
  min-height: 40px;
}

.process-step__content {
  padding: 24px 0 48px;
}

.process-step__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-card);
}

.process-step__card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card-hover);
}

.process-step__card-featured {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.process-step__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.process-step__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-step__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.process-step__body:last-of-type { margin-bottom: 24px; }

.process-step__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.process-step__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.process-step__detail i { color: var(--accent-cyan); }

/* ============================
   FORMATS
   ============================ */

.formats__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }

.formats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.format-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.format-card--featured {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.03);
}

.format-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.format-card__icon { font-size: 24px; color: var(--accent-cyan); }

.format-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.format-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;margin-bottom: 20px;
}

.format-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.format-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.format-card__list li::before {
  content: '>';
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  font-size: 12px;
}

/* ============================
   FAQ
   ============================ */

.faq__header { margin-bottom: 48px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover { border-color: var(--border-glow); }

.faq-item--open { border-color: rgba(0,229,255,0.25); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq-item__question:hover { color: var(--accent-cyan); }

.faq-item__icon {
  color: var(--accent-cyan);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition-base);
}

.faq-item--open .faq-item__answer { max-height: 400px; }

.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================
   FIRST STEP PAGE
   ============================ */

.first-step__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.first-step__img {
  width: 100%;
  height: clamp(280px, 35vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.what-happens__header { margin-bottom: 48px; }

.what-happens__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.what-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.what-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,229,255,0.06);
}

.what-card__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,229,255,0.18);
  margin-bottom: 14px;
  line-height: 1;
  transition: color var(--transition-base);
}

.what-card:hover .what-card__num { color: rgba(0,229,255,0.45); }

.what-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.what-card__body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.signals__wrap { }

.signals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-base);
}

.signal-item:hover {
  border-color: rgba(255,45,120,0.3);
  background: rgba(255,45,120,0.03);
}

.signal-item__icon {
  color: var(--accent-magenta);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.signal-item__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   CONTACT PAGE
   ============================ */

.section--contact-main { padding-top: clamp(40px, 5vw, 80px); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}

.contact-form-wrap__header { margin-bottom: 32px; }

.contact-form-wrap__title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
  letter-spacing: -0.02em;
}


.wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.wizard-progress__step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wizard-progress__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-muted);
  transition: all var(--transition-base);
  background: var(--bg-secondary);
}

.wizard-progress__step--active .wizard-progress__dot {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: var(--accent-cyan-dim);
  box-shadow: 0 0 12px rgba(0,229,255,0.2);
}

.wizard-progress__step--done .wizard-progress__dot {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: var(--accent-green-dim);
}

.wizard-progress__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-base);
}

.wizard-progress__step--active .wizard-progress__label { color: var(--accent-cyan); }
.wizard-progress__step--done .wizard-progress__label { color: var(--accent-green); }

.wizard-progress__line {
  flex: 1;
  height: 1px;
  background: var(--border-color);
  margin: 0 8px;
  transition: background var(--transition-base);
}


.form-step {
  display: none;
  animation: stepSlideIn 0.35s ease;
}

.form-step--active { display: block; }

@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-group {
  margin-bottom: 20px;
}

.form-group__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group__required { color: var(--accent-magenta); }

.form-group__input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  transition: all var(--transition-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group__input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
  background: rgba(0,229,255,0.02);
}

.form-group__input::placeholder { color: var(--text-muted); }

.form-group__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group__select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-group--checkbox { margin-top: 8px; }

.form-group__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-group__checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.form-group__checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg-secondary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group__checkbox-label input:checked + .form-group__checkbox-custom {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.form-group__checkbox-label input:checked + .form-group__checkbox-custom::after {
  content: '✓';
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 700;
}

.form-group__checkbox-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-link {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0,229,255,0.3);
  transition: text-decoration-color var(--transition-base);
}

.form-link:hover { text-decoration-color: var(--accent-cyan); }

.form-step__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}


.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.contact-info-card__title {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.contact-info-card__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.contact-info-card__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-card__label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-card__value {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 500;
}

.contact-info-card__link {
  color: var(--accent-cyan);
  transition: color var(--transition-base);
}

.contact-info-card__link:hover { color: #33edff; }

.contact-info-card__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.contact-info-card__note i {
  color: var(--accent-cyan);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-card__note p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}


.section--map { padding-top: 0; }

.map-section { }

.map-section .section__title { margin-bottom: 24px; }

.map-section__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.map-section__embed iframe { display: block; }


.section--team-intro { background: var(--bg-secondary); }

.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.team-section__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-section__img {
  width: 100%;
  height: clamp(300px, 38vw, 500px);
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-section__img-wrap:hover .team-section__img { transform: scale(1.04); }

/* ============================
   THANKS PAGE
   ============================ */

.thanks-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0c10 0%, #0d1a2a 40%, #0a1a1a 100%);
  padding: clamp(120px, 14vw, 180px) 24px clamp(60px, 8vw, 100px);
}

.thanks-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.thanks-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.06) 0%, transparent 70%);
}

.thanks-hero__grid-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
}

.thanks-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
}

.thanks-hero__icon {
  font-size: clamp(48px, 8vw, 80px);
  color: var(--accent-green);
  margin-bottom: 28px;
  text-shadow: 0 0 32px rgba(57,255,20,0.4);
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.thanks-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.thanks-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.75;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.thanks-next {
  background: var(--bg-primary);
}

.thanks-next__inner {
  max-width: 720px;
  margin: 0 auto;
}

.thanks-next__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.thanks-next__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.thanks-next__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.thanks-next__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.thanks-next__step-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-cyan-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.thanks-next__step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.thanks-next__step-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.thanks-next__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   LEGAL PAGES
   ============================ */

.legal-hero {
  padding: clamp(120px, 14vw, 180px) 0 clamp(48px, 6vw, 80px);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.legal-hero__content { position: relative; max-width: 800px; }

.legal-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 12px;
}

.legal-hero__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.legal-hero__intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
}

.legal-content { background: var(--bg-primary); }

.legal-layout { max-width: 800px; }

.legal-layout__main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.legal-section { }

.legal-section__title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  letter-spacing: -0.02em;
}

.legal-section__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-section__body:last-child { margin-bottom: 0; }

.legal-term {
  color: var(--accent-cyan);
  font-weight: 600;
  cursor: help;
}

.legal-definition {
  background: rgba(0,229,255,0.04);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 16px 0 20px;
}

.legal-definition__term {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.legal-definition {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}


.legal-section--clause .legal-section__title { border-bottom-color: rgba(0,229,255,0.15); }

.legal-clause {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.legal-clause:last-child { border-bottom: none; }

.legal-clause__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 36px;
  padding-top: 2px;
  letter-spacing: 0.04em;
}

.legal-clause__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}


.cookie-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.cookie-table th {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
  line-height: 1.5;
}

.cookie-table tr:last-child td { border-bottom: none; }

.cookie-table tr:hover td { background: rgba(0,229,255,0.02); }

.cookie-table td strong { color: var(--text-primary); font-weight: 600; }

.cookie-table code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--bg-secondary);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-green);
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding-left: 0;
}

.legal-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.legal-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: var(--bg-secondary);
  position: relative;
  margin-top: auto;
}

.footer__gradient-top {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,229,255,0.3), rgba(57,255,20,0.2), transparent);
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 64px) clamp(24px, 3vw, 40px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}

.footer__logo {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  text-shadow: 0 0 16px rgba(0,229,255,0.3);
  transition: text-shadow var(--transition-base);
}

.footer__logo:hover { text-shadow: 0 0 24px rgba(0,229,255,0.5); }
.footer__logo span { color: var(--accent-green); }

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
}

.footer__address i {
  color: var(--accent-cyan);
  width: 16px;
  margin-right: 8px;
}

.footer__address a {
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.footer__address a:hover { color: var(--accent-cyan); }

.footer__nav-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__nav-link:hover { color: var(--accent-cyan); }

.footer__recent-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__recent-empty {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.footer__recent-item a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__recent-item a::before {
  content: '→';
  color: var(--accent-cyan);
  font-size: 12px;
}

.footer__recent-item a:hover { color: var(--accent-cyan); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__domain {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================
   REVEAL ON SCROLL
   ============================ */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up--visible {
  opacity: 1;
  transform: translateY(0);
}


.services__grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.how-teaser__steps .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.how-teaser__steps .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.how-teaser__steps .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.expertise-areas__grid .reveal-up:nth-child(2) { transition-delay: 0.08s; }
.expertise-areas__grid .reveal-up:nth-child(3) { transition-delay: 0.16s; }
.expertise-areas__grid .reveal-up:nth-child(4) { transition-delay: 0.24s; }
.expertise-areas__grid .reveal-up:nth-child(5) { transition-delay: 0.32s; }

.groups__grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.groups__grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.groups__grid .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.what-happens__grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.what-happens__grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }
.what-happens__grid .reveal-up:nth-child(4) { transition-delay: 0.3s; }

.image-break__grid .reveal-up:nth-child(2) { transition-delay: 0.1s; }
.image-break__grid .reveal-up:nth-child(3) { transition-delay: 0.2s; }

/* ============================
   COOKIE CONSENT
   ============================ */

.cookie-bell {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
}

.cookie-bell__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent-cyan);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), 0 0 24px rgba(0,229,255,0.08);
}

.cookie-bell__btn:hover {
  background: var(--accent-cyan-dim);
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 32px rgba(0,229,255,0.2);
  transform: scale(1.08);
}

.cookie-bell__badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-magenta);
  border: 2px solid var(--bg-primary);
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.cookie-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius-xl);
  padding: 24px;
  z-index: 8999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 40px rgba(0,229,255,0.05);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-panel--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cookie-panel__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-panel__title i { color: var(--accent-cyan); }

.cookie-panel__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-base);
}

.cookie-panel__close:hover { color: var(--text-primary); }

.cookie-panel__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.cookie-panel__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-category__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cookie-category__sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

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

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

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--accent-cyan);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(18px);
  background: var(--bg-primary);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-panel__actions {
  display: flex;
  gap: 8px;
}

.cookie-panel__actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  padding: 10px 16px;
}

.cookie-panel__link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.cookie-panel__link:hover { color: var(--accent-cyan); }

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .problem__grid { grid-template-columns: 1fr; }
  .about-preview__inner { grid-template-columns: 1fr; }
  .exp-intro__grid { grid-template-columns: 1fr; }
  .approach-split { grid-template-columns: 1fr; }
  .team-section { grid-template-columns: 1fr; }
  .first-step__intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .contact-info-card { position: static; }

  .image-break__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .image-break__item--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .nav__list { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(30px, 8vw, 48px); }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }

  .problem__grid,
  .about-preview__inner,
  .exp-intro__grid,
  .approach-split,
  .team-section,
  .first-step__intro,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .image-break__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .image-break__item--large { grid-column: auto; grid-row: auto; }

  .services__grid { grid-template-columns: 1fr; }
  .how-teaser__steps { grid-template-columns: 1fr; }
  .formats__grid { grid-template-columns: 1fr; }
  .groups__grid { grid-template-columns: 1fr; }
  .expertise-areas__grid { grid-template-columns: 1fr; }
  .what-happens__grid { grid-template-columns: 1fr; }
  .signals__grid { grid-template-columns: 1fr; }

  .process-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-step__num { width: 40px; height: 40px; font-size: 12px; }

  .wizard-progress__label { display: none; }

  .cta-block__actions { flex-direction: column; }
  .cta-block__actions .btn { width: 100%; justify-content: center; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .thanks-next__actions { flex-direction: column; }
  .thanks-next__actions .btn { justify-content: center; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .expertise-card { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 100px 0 60px; }
  .page-hero { padding: 100px 0 48px; }
  .legal-hero { padding: 100px 0 40px; }

  .section { padding: 48px 0; }

  .cookie-panel { right: 12px; left: 12px; width: auto; max-width: none; }
  .cookie-bell { bottom: 16px; right: 16px; }

  .cta-block { padding: 32px 20px; }
  .cta-block__bg-text { display: none; }

  .process-step { grid-template-columns: 1fr; }
  .process-step__marker { flex-direction: row; padding-top: 0; margin-bottom: 12px; }
  .process-step__line { display: none; }
  .process-step__content { padding: 0 0 32px; }
}

/* ============================
   INTL TEL INPUT OVERRIDE
   ============================ */

.iti { width: 100% !important; }
.iti__flag-container { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.iti__selected-flag {
  background: var(--bg-secondary) !important;
  border-right: 1px solid var(--border-color);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.iti__country-list {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
}
.iti__country.iti__highlight { background: var(--accent-cyan-dim) !important; }
.iti__dial-code { color: var(--text-muted) !important; }

/* ============================
   SCROLLBAR
   ============================ */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,229,255,0.3); }

/* ============================
   SELECTION
   ============================ */

::selection {
  background: rgba(0,229,255,0.2);
  color: var(--text-primary);
}