/* ============================================
   PREMIUM IT SPECIALIST LANDING — STYLESHEET
   Modern, clean, visually rich but restrained
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #f5f5f0;
  --color-bg-warm: #edeae4;
  --color-text: #111;
  --color-text-secondary: #555;
  --color-text-muted: #888;
  --color-border: #d8d4cc;
  --color-border-light: #e8e5de;
  --color-accent: #1a1a2e;
  --color-accent-blue: #4a6cf7;
  --color-accent-blue-soft: rgba(74, 108, 247, 0.08);
  --color-accent-blue-glow: rgba(74, 108, 247, 0.15);
  --color-card: #fff;
  --color-card-alt: #fafaf7;
  --color-green: #1b7a3d;
  --color-green-bg: #eef7f1;
  --color-green-border: rgba(27, 122, 61, 0.12);
  --color-red: #b5342a;
  --color-red-bg: #fdf0ef;
  --color-red-border: rgba(181, 52, 42, 0.1);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
  --shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 16px 48px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 0 1px rgba(74,108,247,0.06), 0 4px 16px rgba(74,108,247,0.08);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container: 1140px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
}

.header--scrolled {
  background: rgba(245, 245, 240, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transition: opacity var(--transition);
}

.header__logo:hover {
  opacity: 0.65;
}

.header__logo-first {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  transition: color var(--transition-slow);
}

.header__logo-last {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-slow);
}

.header--scrolled .header__logo-first {
  color: var(--color-text);
}

.header--scrolled .header__logo-last {
  color: var(--color-text-muted);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  position: relative;
}

.header--scrolled .header__link {
  color: var(--color-text-secondary);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent-blue);
  transition: width var(--transition);
  border-radius: 1px;
}

.header__link:hover {
  color: #fff;
}

.header--scrolled .header__link:hover {
  color: var(--color-text);
}

.header__link:hover::after {
  width: 100%;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: border-color var(--transition-slow);
}

.header--scrolled .header__lang {
  border-left-color: var(--color-border);
}

.header__lang-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color var(--transition);
  font-weight: 400;
}

/* SVG flag icons */
.lang-flag {
  display: inline-block;
  border-radius: 2px;
  vertical-align: middle;
  box-shadow: 0 0 0 0.5px rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.header--scrolled .header__lang-item {
  color: var(--color-text-muted);
}

.header__lang-item:hover {
  color: #fff;
}

.header--scrolled .header__lang-item:hover {
  color: var(--color-text);
}

.header__lang-item--active {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.header--scrolled .header__lang-item--active {
  color: var(--color-text);
}

.header__lang-sep {
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

.header--scrolled .header__lang-sep {
  color: var(--color-border);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition), background var(--transition-slow);
}

.header--scrolled .header__burger span {
  background: var(--color-text);
}

.header__burger--active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(245, 245, 240, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 999;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav--open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.mobile-nav__link:hover {
  color: var(--color-text);
}

.mobile-nav__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

.mobile-nav__lang-item {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.mobile-nav__lang-item--active {
  color: var(--color-text);
  font-weight: 600;
}

.mobile-nav__lang-sep {
  color: var(--color-border);
}

/* --- HERO --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #080810;
  cursor: none;
  display: flex;
  align-items: center;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Split layout: text left, portrait right */
.hero__split {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}

/* --- Hero: Left content --- */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(74, 108, 247, 0.1);
  border: 1px solid rgba(74, 108, 247, 0.15);
  border-radius: 6px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.12;
}

.hero__subtitle {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* CTA buttons */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: var(--color-accent-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.35);
  cursor: pointer;
}

.hero__cta:hover {
  background: #3d5ee0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.45);
}

.hero__cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.hero__cta-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

/* Badge stats row */
.hero__badges {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__badge-value {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.hero__badge-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero__badge-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* --- Hero: Right portrait — soft glow hologram effect --- */
.hero__portrait-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 80vh;
  max-height: 700px;
  overflow: visible;
}

/* Soft ambient blue glow behind the portrait */
.hero__portrait-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 80%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%,
    rgba(74, 108, 247, 0.15) 0%,
    rgba(74, 108, 247, 0.08) 30%,
    rgba(74, 108, 247, 0.03) 55%,
    transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: portrait-glow-pulse 4s ease-in-out infinite;
}

@keyframes portrait-glow-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -45%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -45%) scale(1.05); }
}

/* Secondary warm glow accent */
.hero__portrait-glow::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(74, 108, 247, 0.12) 0%,
    rgba(120, 160, 255, 0.04) 50%,
    transparent 70%);
  filter: blur(20px);
}

.hero__portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Organic elliptical fade — follows body shape, no hard edges */
  mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, black 45%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, black 45%, transparent 70%);
}

/* Vignette hidden — PNG is already transparent, mask on img is enough */
.hero__portrait-vignette {
  display: none;
}

/* Subtle ring accent around portrait area */
.hero__portrait-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 65%;
  height: 55%;
  border-radius: 50%;
  border: 1px solid rgba(74, 108, 247, 0.08);
  pointer-events: none;
  z-index: 0;
  animation: portrait-ring-spin 30s linear infinite;
}

.hero__portrait-ring::after {
  content: '';
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  border: 1px solid rgba(74, 108, 247, 0.04);
}

@keyframes portrait-ring-spin {
  from { transform: translate(-50%, -48%) rotate(0deg); }
  to { transform: translate(-50%, -48%) rotate(360deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: hero-scroll-pulse 2.5s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: hero-scroll-line 2.5s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes hero-scroll-line {
  0% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0.4); transform-origin: top; }
}

/* Custom cursor */
.hero__cursor {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 40px rgba(74,108,247,0.03);
  opacity: 0;
  transition: opacity 0.5s, width 0.4s, height 0.4s, box-shadow 0.4s;
}

.hero__cursor--visible {
  opacity: 1;
}

.hero__cursor--fast {
  box-shadow: 0 0 60px rgba(74,108,247,0.12), 0 0 120px rgba(74,108,247,0.04);
  border-color: rgba(120,160,255,0.25);
}

/* Subtle grain texture overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* --- SECTIONS --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section--format {
  padding: 100px 0;
  background: var(--color-bg);
}

.section--services {
  background: var(--color-card);
}

.section--steps {
  background: var(--color-bg);
}

.section--why {
  background: var(--color-card);
}

.section--fit {
  background: var(--color-bg);
}

.section--principles {
  background: var(--color-card);
}

.section--faq {
  background: var(--color-bg);
}

.section--contact {
  background: var(--color-accent);
  color: #fff;
}

.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-blue);
  margin-bottom: 16px;
  display: block;
}

.section--contact .section__label,
.section--reviews .section__label {
  color: rgba(255,255,255,0.4);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section--contact .section__title,
.section--reviews .section__title {
  color: #fff;
}

/* Decorative section divider */
.section__divider {
  width: 48px;
  height: 2px;
  background: var(--color-accent-blue);
  border-radius: 1px;
  margin-bottom: 56px;
  opacity: 0.5;
}

/* --- FORMAT CARD --- */
.format-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: var(--color-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.5;
}

.format-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-blue-soft);
  border-radius: 16px;
  color: var(--color-accent-blue);
}

.format-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.format-card__text {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- ACCORDION --- */
.accordion {
  max-width: 820px;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: opacity var(--transition);
}

.accordion__header:hover {
  opacity: 0.65;
}

.accordion__number {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent-blue);
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 32px;
  opacity: 0.7;
}

.accordion__label {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
}

.accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent-blue-soft);
  transition: background var(--transition);
}

.accordion__item--open .accordion__icon {
  background: var(--color-accent-blue-glow);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent-blue);
  transition: transform var(--transition);
}

.accordion__icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__item--open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item--open .accordion__body {
  max-height: 300px;
}

.accordion__body p {
  padding: 0 0 28px 56px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0;
  gap: 16px;
}

.timeline__line {
  position: absolute;
  top: 68px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-blue), var(--color-border), var(--color-accent-blue));
  opacity: 0.3;
  border-radius: 1px;
}

.timeline__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(26,26,46,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.timeline__step:hover .timeline__dot {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(26,26,46,0.25);
}

.timeline__content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.timeline__content p {
  font-size: 13px;
  color: var(--color-text-secondary);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- FEATURES (WHY ME) --- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  padding: 36px 28px;
  background: var(--color-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-blue);
  transform: scaleX(0);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(74, 108, 247, 0.12);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-blue-soft);
  border-radius: 12px;
  color: var(--color-accent-blue);
  margin-bottom: 20px;
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.4;
}

.feature__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* --- FIT / NOT FIT --- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fit-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.fit-card--yes {
  background: var(--color-green-bg);
  border: 1px solid var(--color-green-border);
}

.fit-card--no {
  background: var(--color-red-bg);
  border: 1px solid var(--color-red-border);
}

.fit-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.fit-card--yes .fit-card__title {
  color: var(--color-green);
}

.fit-card--no .fit-card__title {
  color: var(--color-red);
}

.fit-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-card__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.fit-card--yes .fit-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
  opacity: 0.25;
  box-shadow: 0 0 0 3px rgba(27, 122, 61, 0.08);
}

.fit-card--no .fit-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-red);
  opacity: 0.2;
  box-shadow: 0 0 0 3px rgba(181, 52, 42, 0.06);
}

/* --- PRINCIPLES --- */
.principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.principle {
  padding: 28px 24px;
  background: var(--color-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.principle:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.principle__number {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent-blue);
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding: 3px 8px;
  background: var(--color-accent-blue-soft);
  border-radius: 4px;
}

.principle p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

/* --- FAQ --- */
.faq {
  max-width: 820px;
}

.faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  transition: opacity var(--transition);
}

.faq__question:hover {
  opacity: 0.65;
}

.faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent-blue-soft);
  transition: background var(--transition);
}

.faq__item--open .faq__icon {
  background: var(--color-accent-blue-glow);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-accent-blue);
  transition: transform var(--transition);
}

.faq__icon::before {
  width: 10px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item--open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --- REVIEWS CAROUSEL --- */
.section--reviews {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-accent);
  color: #fff;
}

.section--reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0.3;
}

.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 180s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-track__clone {
  display: contents;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.review-card__stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  min-height: 60px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-blue), #6c63ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.review-card__service {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* --- CONTACT (dark section) --- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.contact__item:hover {
  color: #fff;
}

.contact__item svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.contact__item:hover svg {
  color: var(--color-accent-blue);
}

.contact__cta {
  padding: 52px 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(12px);
}

.contact__cta-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.contact__button {
  display: inline-block;
  padding: 16px 44px;
  background: var(--color-accent-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.3);
}

.contact__button:hover {
  background: #3d5ee0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 108, 247, 0.4);
}

/* --- FOOTER --- */
.footer {
  padding: 64px 0 0;
  background: #111118;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Footer brand column */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  transition: opacity var(--transition);
}

.footer__logo:hover { opacity: 0.65; }

.footer__logo-first {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.8);
}

.footer__logo-last {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.35);
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.footer__social-link:hover {
  color: var(--color-accent-blue);
  background: rgba(74, 108, 247, 0.08);
  border-color: rgba(74, 108, 247, 0.15);
}

/* Footer nav columns */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__nav span {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}

/* Footer bottom */
.footer__bottom {
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
}

.footer__privacy {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.1);
}

/* --- HERO ENTRANCE ANIMATION --- */
.hero__label,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__badges,
.hero__portrait-wrap {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__label       { animation-delay: 0.1s; }
.hero__title       { animation-delay: 0.2s; }
.hero__subtitle    { animation-delay: 0.35s; }
.hero__actions     { animation-delay: 0.5s; }
.hero__badges      { animation-delay: 0.65s; }
.hero__portrait-wrap { animation-delay: 0.3s; transform: translateY(24px) scale(0.97); }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --- SMOOTH SECTION DIVIDERS --- */
.section--format::before,
.section--services::before,
.section--steps::before,
.section--why::before,
.section--fit::before,
.section--principles::before,
.section--faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
  opacity: 0.3;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered delays for grid items */
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.25s; }
.reveal-delay-6 { transition-delay: 0.3s; }

/* --- SCROLL TO TOP BUTTON --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.scroll-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: #fff;
  box-shadow: var(--shadow);
  border-color: rgba(74,108,247,0.2);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.scroll-top:hover svg {
  color: var(--color-accent-blue);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 100px 32px 60px;
  }

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

  .hero__portrait-wrap {
    height: 65vh;
    max-height: 560px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
  }

  .timeline__line {
    left: 22px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--color-accent-blue), var(--color-border), var(--color-accent-blue));
  }

  .timeline__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    padding-bottom: 36px;
  }

  .timeline__dot {
    margin-right: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .timeline__content p {
    max-width: none;
    margin: 0;
  }
}

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

  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__inner {
    padding: 0 20px;
  }

  /* Hero stacks vertically on mobile: text on top, photo below */
  .hero {
    min-height: auto;
  }

  .hero__split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 110px 20px 40px;
    text-align: center;
  }

  .hero__content {
    align-items: center;
  }

  .hero__subtitle {
    margin-bottom: 28px;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__portrait-wrap {
    height: 50vh;
    max-height: 420px;
    order: 2;
  }

  .hero__portrait-glow {
    filter: blur(30px);
    opacity: 0.5;
  }

  .hero__portrait-ring {
    display: none;
  }

  .hero__scroll-hint {
    display: none;
  }

  .hero__cursor {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    margin-bottom: 36px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .format-card {
    padding: 36px 24px;
  }

  .accordion__label {
    font-size: 15px;
  }

  .accordion__body p {
    padding-left: 0;
  }

  .fit-card {
    padding: 32px 24px;
  }

  .contact__cta {
    padding: 36px 24px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .principles {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta,
  .hero__cta-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__badges {
    gap: 16px;
  }

  .hero__badge-value {
    font-size: 17px;
  }
}

/* --- SELECTION --- */
::selection {
  background: rgba(74, 108, 247, 0.15);
  color: var(--color-text);
}