:root {
  --candy-pink: #f472b6;
  --candy-purple: #a78bfa;
  --candy-blue: #60a5fa;
  --candy-teal: #2dd4bf;
  --candy-peach: #fb923c;
  --grad-hero: linear-gradient(135deg, #fdf2f8 0%, #f0f4ff 35%, #f0fffe 70%, #fff7f0 100%);
  --grad-accent: linear-gradient(135deg, #f472b6 0%, #a78bfa 40%, #60a5fa 75%, #2dd4bf 100%);
  --grad-soft: linear-gradient(135deg, #fce7f3 0%, #ede9fe 50%, #dbeafe 100%);
  --grad-tinted-bg: linear-gradient(160deg, #f8f7ff 0%, #f0fffe 100%);
  --text-dark: #1e1b2e;
  --text-mid: #4a4560;
  --text-light: #7c7898;
  --surface: #fefefe;
  --surface-tint: #f8f7ff;
  --border-soft: rgba(167,139,250,0.15);
  --shadow-sm: 0 1px 3px rgba(100,80,180,0.08), 0 4px 12px rgba(100,80,180,0.06);
  --shadow-md: 0 4px 6px rgba(100,80,180,0.07), 0 12px 28px rgba(100,80,180,0.1), 0 2px 4px rgba(244,114,182,0.05);
  --shadow-lg: 0 8px 16px rgba(100,80,180,0.08), 0 24px 48px rgba(100,80,180,0.12), 0 2px 6px rgba(244,114,182,0.06);
  --shadow-hover: 0 12px 24px rgba(100,80,180,0.12), 0 32px 64px rgba(100,80,180,0.15), 0 4px 8px rgba(244,114,182,0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text--gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(167,139,250,0.3), 0 2px 4px rgba(244,114,182,0.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(167,139,250,0.4), 0 4px 8px rgba(244,114,182,0.25);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--candy-purple);
  border-color: var(--candy-purple);
}
.btn--outline:hover {
  background: var(--grad-soft);
  border-color: var(--candy-pink);
  color: var(--candy-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 8px rgba(100,80,180,0.06);
}
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--grad-accent);
  transition: left 0.5s cubic-bezier(0.4,0,0.2,1), right 0.5s cubic-bezier(0.4,0,0.2,1);
}
.nav.scrolled::after { left: 0; right: 0; }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s ease;
}
.nav__link:hover {
  color: var(--candy-purple);
  background: rgba(167,139,250,0.08);
}

.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav__hamburger:hover { background: rgba(167,139,250,0.1); }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--border-soft);
}
.nav__mobile-panel.open { max-height: 420px; }
.nav__mobile-links {
  list-style: none;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav__mobile-link:hover {
  color: var(--candy-purple);
  background: rgba(167,139,250,0.08);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__bg-orb--1 {
  width: 600px; height: 600px;
  background: rgba(244,114,182,0.12);
  top: -200px; right: -200px;
}
.hero__bg-orb--2 {
  width: 400px; height: 400px;
  background: rgba(167,139,250,0.15);
  bottom: -100px; left: -100px;
}
.hero__bg-orb--3 {
  width: 300px; height: 300px;
  background: rgba(96,165,250,0.1);
  top: 40%; left: 40%;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--candy-purple);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(167,139,250,0.2);
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
}
.hero__tag i { color: var(--candy-teal); font-size: 0.7rem; }

.hero__visual { position: relative; }

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__img-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
}
.hero__img-card i { font-size: 1.2rem; }
.hero__img-card--1 {
  bottom: -16px; left: -20px;
}
.hero__img-card--1 i { color: var(--candy-pink); }
.hero__img-card--2 {
  top: 20px; right: -20px;
}
.hero__img-card--2 i { color: var(--candy-blue); }

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-xl) 0;
}
.section--tinted {
  background: var(--grad-tinted-bg);
}
.section--gradient-soft {
  background: linear-gradient(160deg, #fff 0%, #fdf2f8 40%, #f0f4ff 100%);
}

.section__indent {
  border-radius: var(--radius-lg);
  margin: 0 16px;
  padding: 60px 0;
}
.section__indent--sm { margin: 0 8px; }
.section__indent--md { margin: 0 24px; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-grid__img-stack {
  position: relative;
}

.about-grid__img { border-radius: var(--radius-lg); }

.about-grid__img--main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-grid__img--secondary {
  position: absolute;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  bottom: -24px;
  right: -24px;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}

.about-grid__badge {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--grad-accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(167,139,250,0.35);
}

.about-grid__text {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-grid__pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: rgba(167,139,250,0.3);
}
.pillar-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--candy-purple);
}
.pillar-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.pillar-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.4; }

/* ===== SWIPER MODULES ===== */
.modules-swiper {
  padding-bottom: 56px !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.module-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.module-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.25);
}

.module-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.module-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--candy-purple);
}

.module-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.module-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.module-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.module-card__tags span {
  background: var(--grad-soft);
  color: var(--candy-purple);
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.modules-pagination { bottom: 0 !important; }
.modules-pagination .swiper-pagination-bullet {
  background: var(--candy-purple);
  opacity: 0.3;
  width: 8px; height: 8px;
  transition: all 0.3s;
}
.modules-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.modules-prev, .modules-next {
  color: var(--candy-purple) !important;
  background: rgba(255,255,255,0.9);
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-sm);
  top: 40% !important;
  transition: all 0.2s;
}
.modules-prev:hover, .modules-next:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.modules-prev::after, .modules-next::after { font-size: 14px !important; font-weight: 700 !important; }

/* ===== PROCESS GRID ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}
.process-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.process-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -13px;
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  z-index: 1;
}

.process-card__step {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.process-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card--team {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.card--team:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.card--team__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card--team__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card--team:hover .card--team__img { transform: scale(1.05); }
.card--team__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30,27,46,0.5), transparent);
}

.card--team__body {
  padding: 20px;
}
.card--team__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.card--team__role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--grad-soft);
  color: var(--candy-purple);
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}
.card--team__bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== RESOURCES GRID ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card--resource {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--resource:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.25);
}

.card--resource__icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(167,139,250,0.3);
  flex-shrink: 0;
}

.card--resource__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--candy-teal);
}

.card--resource__title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.card--resource__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

/* ===== FOR WHOM ===== */
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.for-whom-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.for-whom-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(167,139,250,0.25);
}

.for-whom-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.for-whom-item p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.for-whom-grid__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.for-whom-grid__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 16px;
}
.for-whom-grid__note i {
  color: var(--candy-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.for-whom-grid__note p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.card--contact {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.card--contact:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card--contact__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(167,139,250,0.3);
}

.card--contact__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.card--contact__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}
.card--contact__value:hover { color: var(--candy-purple); }

/* ===== CONTACT FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
}

.contact-map-wrap {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-required { color: var(--candy-pink); }

.form-input {
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--surface-tint);
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--candy-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox { margin-bottom: 20px; }
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-checkbox-label input[type="checkbox"] { display: none; }
.form-checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--border-soft);
  border-radius: 5px;
  flex-shrink: 0;
  background: var(--surface-tint);
  transition: all 0.2s;
  position: relative;
  margin-top: 1px;
}
.form-checkbox-label input:checked + .form-checkbox-custom {
  background: var(--grad-accent);
  border-color: transparent;
}
.form-checkbox-label input:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 6px; height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-checkbox-label a { color: var(--candy-purple); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #1e1b2e 0%, #2d2650 100%);
  color: rgba(255,255,255,0.75);
}

.footer__top { padding: 64px 0 48px; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: 12px;
}

.footer__nav-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer__nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__nav-list a:hover { color: var(--candy-purple); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--candy-purple); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(167,139,250,0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(167,139,250,0.5);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--grad-hero);
  padding: 100px 0 60px;
  text-align: center;
}
.legal-hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.legal-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.legal-hero__date {
  font-size: 0.87rem;
  color: var(--text-light);
}

.legal-timeline {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative;
}
.legal-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 60px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(to bottom, var(--candy-pink), var(--candy-purple), var(--candy-blue));
  opacity: 0.3;
}

.legal-entry {
  position: relative;
  padding-left: 56px;
  margin-bottom: 48px;
}
.legal-entry::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 4px rgba(167,139,250,0.15);
}
.legal-entry__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.legal-entry__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-entry__list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.legal-entry__list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}
.legal-entry__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--candy-purple);
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--grad-hero);
}
.thanks-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.thanks-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(167,139,250,0.35);
}
.thanks-card__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.thanks-card__text {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.thanks-card__countdown {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.thanks-card__countdown span {
  font-weight: 700;
  color: var(--candy-purple);
}
.thanks-card__link {
  color: var(--candy-purple);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== COOKIE CONSENT ===== */
.cookie-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(30,27,46,0.95);
  backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  max-width: calc(100vw - 48px);
  min-width: 280px;
}
.cookie-pill.expanded {
  border-radius: var(--radius-xl);
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  min-width: 360px;
  max-width: 500px;
}
.cookie-pill__text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cookie-pill.expanded .cookie-pill__text {
  white-space: normal;
  overflow: visible;
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-pill__text a { color: var(--candy-purple); text-decoration: underline; }
.cookie-pill__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-pill.expanded .cookie-pill__actions {
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-pill__btn {
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-pill__btn--accept {
  background: var(--grad-accent);
  color: #fff;
}
.cookie-pill__btn--accept:hover { opacity: 0.9; transform: translateY(-1px); }
.cookie-pill__btn--settings {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-pill__btn--settings:hover { background: rgba(255,255,255,0.15); }
.cookie-pill__btn--reject {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-pill__btn--reject:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }

.cookie-pill__categories {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}
.cookie-pill.expanded .cookie-pill__categories { display: flex; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-category__info h5 { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.cookie-category__info p { font-size: 0.74rem; color: rgba(255,255,255,0.45); line-height: 1.4; margin-top: 2px; }

.cookie-toggle {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: 0.3s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--candy-purple); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { cursor: not-allowed; opacity: 0.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:not(:last-child)::after { display: none; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid__img--secondary { display: none; }
  .about-grid__badge { left: 12px; }
  .for-whom-grid { grid-template-columns: 1fr; gap: 40px; }
  .for-whom-grid__visual { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map-wrap { height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero__container { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero__visual { order: -1; }
  .hero__img { height: 300px; }
  .hero__img-card--2 { right: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .section__indent { margin: 0 8px; }
  .legal-timeline { padding-left: 16px; padding-right: 16px; }
  .legal-timeline::before { left: 12px; }
  .legal-entry { padding-left: 40px; }
  .legal-entry::before { left: 4px; }
  .thanks-card { padding: 36px 24px; }
  .cookie-pill.expanded { min-width: calc(100vw - 48px); }
  .back-to-top { bottom: 80px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}