/* ===== VARIABLES ===== */
:root {
  --primary: #1A2F6B;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --dark: #0A1628;
  --darker: #060E1A;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --text: #CBD5E1;
  --text-bright: #F1F5F9;
  --muted: #64748B;
  --font: 'Inter', -apple-system, sans-serif;
  --glow: 0 0 40px rgba(245, 166, 35, 0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--darker);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 10px; font-family: var(--font);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.35s ease; border: 2px solid transparent; white-space: nowrap;
}
.btn--accent {
  background: var(--accent); color: var(--dark); border-color: var(--accent);
}
.btn--accent:hover {
  background: #e6951a; border-color: #e6951a;
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245, 166, 35, 0.35);
}
.btn--glow { box-shadow: var(--glow); animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245,166,35,0.15); }
  50% { box-shadow: 0 0 40px rgba(245,166,35,0.3), 0 0 80px rgba(245,166,35,0.1); }
}
.btn--outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn--sm { padding: 10px 24px; font-size: 14px; }
.btn--lg { padding: 18px 48px; font-size: 17px; }
.btn--full { width: 100%; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  background: var(--accent-dim); color: var(--accent); margin-bottom: 20px;
  border: 1px solid rgba(245,166,35,0.1);
}
.badge--gold { background: rgba(245,166,35,0.1); color: var(--accent); border-color: rgba(245,166,35,0.2); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  color: var(--text-bright); margin-bottom: 16px; line-height: 1.2;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 17px; color: var(--muted); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.5); }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(6, 14, 26, 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header--scrolled {
  padding: 10px 0;
  background: rgba(6, 14, 26, 0.92);
  border-bottom-color: rgba(255,255,255,0.04);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo-svg { height: 64px; width: auto; transition: height 0.3s; }
.header--scrolled .header__logo-svg { height: 48px; }

.header__nav { display: flex; gap: 32px; }
.header__link {
  color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px; position: relative; padding: 4px 0;
}
.header__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s; border-radius: 1px;
}
.header__link:hover, .header__link.active { color: var(--white); }
.header__link:hover::after, .header__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: all 0.3s;
}
.lang-btn.active { color: var(--accent); background: rgba(245,166,35,0.08); }
.lang-btn:hover { color: var(--white); }
.lang-divider { color: rgba(255,255,255,0.15); font-size: 13px; }

.header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.header__burger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--darker) 0%, #0d1f3c 40%, var(--dark) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}
.hero__routes { position: absolute; inset: 0; }
.hero__route-svg { width: 100%; height: 100%; }
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.06;
  mix-blend-mode: luminosity;
}

/* Route animations */
.route-line--1 { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawRoute 4s ease forwards; }
.route-line--2 { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawRoute 5s ease 1s forwards; }
.route-line--3 { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawRoute 6s ease 2s forwards; }
@keyframes drawRoute { to { stroke-dashoffset: 0; } }

.route-node { animation: nodePulse 3s ease-in-out infinite; }
.route-node--1 { animation-delay: 0s; }
.route-node--2 { animation-delay: 1s; }
.route-node--3 { animation-delay: 2s; }
@keyframes nodePulse {
  0%, 100% { r: 4; opacity: 0.5; }
  50% { r: 7; opacity: 1; }
}

.hero__content {
  position: relative; z-index: 1;
  padding-top: 140px; padding-bottom: 100px; max-width: 680px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero__sub {
  font-size: 18px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 40px; max-width: 520px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column; align-items: center;
}
.hero__scroll-line {
  width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--darker); position: relative; }
.services::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
  border-radius: 16px; overflow: hidden;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: all 0.4s ease; position: relative;
}
.service-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(245,166,35,0.05);
}
.service-card__img-wrap {
  position: relative; height: 160px; overflow: hidden;
}
.service-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; filter: brightness(0.85) saturate(0.9);
}
.service-card:hover .service-card__img {
  transform: scale(1.08); filter: brightness(1) saturate(1.1);
}
.service-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(6,14,26,0.45) 100%);
}
.service-card__body { padding: 24px; }
.service-card__icon {
  width: 40px; height: 40px; margin-bottom: 12px; color: var(--accent);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__body h3 {
  font-size: 17px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px;
}
.service-card__body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== PLATFORM ===== */
.platform {
  padding: 140px 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, #0d1830 50%, var(--dark) 100%);
}
.platform__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(26,47,107,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(245,166,35,0.05) 0%, transparent 40%);
}
.platform .container { position: relative; z-index: 1; }

/* Before / After */
.platform__compare {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  margin-bottom: 80px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.compare__side {
  padding: 36px; border-radius: 16px;
}
.compare__before {
  background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.12);
}
.compare__after {
  background: rgba(245,166,35,0.04); border: 1px solid rgba(245,166,35,0.12);
}
.compare__label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #ef4444; margin-bottom: 20px;
}
.compare__label--gold { color: var(--accent); }
.compare__side ul { list-style: none; }
.compare__side li {
  padding: 10px 0; font-size: 14px; color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative; padding-left: 24px;
}
.compare__before li::before {
  content: '✕'; position: absolute; left: 0; color: #ef4444; font-size: 12px; font-weight: 700;
}
.compare__after li::before {
  content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 14px; font-weight: 700;
}
.compare__divider {
  display: flex; align-items: center; justify-content: center; padding: 0 24px;
}
.compare__arrow {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; box-shadow: var(--glow);
}

/* Hero stat */
.platform__hero-stat {
  text-align: center; margin-bottom: 80px;
  padding: 40px; border-radius: 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
}
.platform__stat-number {
  display: flex; align-items: baseline; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.stat-counter {
  font-size: clamp(48px, 8vw, 80px); font-weight: 900; color: var(--white);
  line-height: 1;
}
.stat-counter--accent { color: var(--accent); }
.platform__stat-unit {
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 500; color: var(--muted);
}

/* Features */
.platform__features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 64px;
}
.feature-card {
  padding: 32px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: all 0.35s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.15);
  background: rgba(255,255,255,0.05);
}
.feature-card__icon { width: 36px; height: 36px; margin-bottom: 16px; }
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card h4 {
  font-size: 16px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== PLATFORM MOCKUP ===== */
.platform__mockup { margin-bottom: 64px; perspective: 1200px; }
.mockup {
  max-width: 860px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(245,166,35,0.15);
  background: linear-gradient(145deg, #131c33 0%, #0f172a 50%, #111d35 100%);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(245,166,35,0.08),
    0 0 200px rgba(26,47,107,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: rotateX(3deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.mockup:hover {
  transform: rotateX(0deg) scale(1.02);
  box-shadow:
    0 60px 140px rgba(0,0,0,0.5),
    0 0 120px rgba(245,166,35,0.12),
    0 0 250px rgba(26,47,107,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.mockup__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(90deg, #1a2240 0%, #1e2844 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup__dots { display: flex; gap: 7px; }
.mockup__dots span {
  width: 12px; height: 12px; border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}
.mockup__dots span:nth-child(1) { background: #ef4444; color: rgba(239,68,68,0.4); }
.mockup__dots span:nth-child(2) { background: #eab308; color: rgba(234,179,8,0.4); }
.mockup__dots span:nth-child(3) { background: #22c55e; color: rgba(34,197,94,0.4); }
.mockup__url {
  flex: 1; text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4); font-weight: 500;
  letter-spacing: 0.5px;
}

.mockup__screen { display: flex; min-height: 360px; position: relative; }

.mockup__sidebar {
  width: 60px; padding: 18px 10px;
  background: linear-gradient(180deg, #141d34 0%, #111828 100%);
  display: flex; flex-direction: column; gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.mockup__nav-item {
  width: 100%; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.mockup__nav-item span {
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.3); font-family: var(--font);
}
.mockup__nav-item.active {
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.08));
  border: 1px solid rgba(245,166,35,0.3);
  box-shadow: 0 0 16px rgba(245,166,35,0.1);
}
.mockup__nav-item.active span { color: var(--accent); }

.mockup__content { flex: 1; padding: 28px; position: relative; }

.mockup__header-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;
}
.mockup__title-block {
  width: 180px; height: 22px; border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
}
.mockup__actions-block {
  width: 90px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(245,166,35,0.25), rgba(245,166,35,0.1));
  border: 1px solid rgba(245,166,35,0.3);
  box-shadow: 0 0 12px rgba(245,166,35,0.08);
}

.mockup__cards-row { display: flex; gap: 16px; margin-bottom: 24px; }
.mockup__stat-card {
  flex: 1; padding: 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.mockup__stat-card--blue {
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(26,47,107,0.1));
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 4px 20px rgba(59,130,246,0.08);
}
.mockup__stat-card--gold {
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
  border-color: rgba(245,166,35,0.25);
  box-shadow: 0 4px 20px rgba(245,166,35,0.08);
}
.mockup__stat-card--green {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  border-color: rgba(34,197,94,0.25);
  box-shadow: 0 4px 20px rgba(34,197,94,0.08);
}
.mockup__stat-value {
  font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.mockup__stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }

.mockup__chart {
  display: flex; align-items: flex-end; gap: 10px; height: 140px;
  padding: 18px; border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup__chart-col {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  height: 100%; justify-content: flex-end;
}
.mockup__chart-pct {
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.4);
  margin-bottom: 4px; font-family: var(--font);
}
.mockup__chart-bar {
  width: 100%; height: var(--h); border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, #1A2F6B, #3b82f6 40%, #F5A623);
  animation: barGrow 1.5s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
  box-shadow: 0 0 12px rgba(245,166,35,0.15);
}
@keyframes barGrow { to { transform: scaleY(1); } }
.mockup__chart-bar:nth-child(1) { animation-delay: 0.1s; }
.mockup__chart-bar:nth-child(2) { animation-delay: 0.2s; }
.mockup__chart-bar:nth-child(3) { animation-delay: 0.3s; }
.mockup__chart-bar:nth-child(4) { animation-delay: 0.4s; }
.mockup__chart-bar:nth-child(5) { animation-delay: 0.5s; }
.mockup__chart-bar:nth-child(6) { animation-delay: 0.6s; }
.mockup__chart-bar:nth-child(7) { animation-delay: 0.7s; }
.mockup__chart-bar:nth-child(8) { animation-delay: 0.8s; }

/* Floating notification */
.mockup__notification {
  position: absolute; top: 24px; right: 24px;
  padding: 12px 18px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.25);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--accent); font-weight: 600;
  animation: notifSlide 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(245,166,35,0.1);
}
.mockup__notif-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: notifPulse 2s ease infinite;
}
@keyframes notifSlide {
  0%, 100% { opacity: 0; transform: translateX(20px); }
  15%, 85% { opacity: 1; transform: translateX(0); }
}
@keyframes notifPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.platform__cta-wrap { text-align: center; }
.platform__cta-note {
  margin-top: 12px; font-size: 13px; color: var(--muted);
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0; position: relative;
  background: var(--darker);
}
.about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.about__text {
  font-size: 17px; color: var(--text); line-height: 1.8;
  max-width: 700px; margin: -24px auto 64px; text-align: center;
}
.about__stats { display: flex; justify-content: center; gap: 80px; }
.stat { text-align: center; }
.stat__number {
  font-size: 56px; font-weight: 900; color: var(--white); line-height: 1; display: inline;
}
.stat__suffix { font-size: 40px; font-weight: 700; color: var(--accent); }
.stat__number--text {
  font-size: 56px; font-weight: 900; color: var(--accent); line-height: 1;
  display: block; letter-spacing: 2px;
}
.stat__label {
  display: block; font-size: 14px; color: var(--muted); margin-top: 8px; font-weight: 500;
}

/* ===== CONTACT ===== */
.contact {
  padding: 48px 0 100px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
  position: relative;
  scroll-margin-top: 60px;
}
.contact .section-header { margin-bottom: 32px; }
.contact::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.15), transparent);
}
.contact__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.contact__form { padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.form-input {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
  font-family: var(--font); font-size: 14px; color: var(--white);
  background: rgba(255,255,255,0.03); transition: all 0.3s; outline: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
  border-color: rgba(245,166,35,0.3); background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.05);
}
.form-textarea { resize: vertical; min-height: 100px; }

.contact__info { padding: 40px; }
.contact__info h3 {
  font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 28px;
}
.contact__item {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; font-size: 14px; color: var(--text);
}
.contact__item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }
.contact__item a { color: var(--accent); font-weight: 500; }
.contact__item a:hover { color: var(--white); }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0; background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; }
.footer__logo-svg { height: 44px; width: auto; margin-bottom: 8px; }
.footer__brand p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__nav { display: flex; gap: 24px; }
.footer__nav a {
  font-size: 13px; color: rgba(255,255,255,0.35); font-weight: 500; transition: color 0.3s;
}
.footer__nav a:hover { color: var(--white); }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.footer__social a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.footer__social svg { width: 16px; height: 16px; }

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

/* Tablet landscape / small desktop */
@media (max-width: 1280px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { gap: 48px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .header__nav, .header__cta-btn { display: none; }
  .header__burger { display: flex; }
  .header { padding: 12px 0; }
  .header__logo-svg { height: 40px; }
  .header--scrolled .header__logo-svg { height: 36px; }
  .header__nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,14,26,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  /* Hero */
  .hero__content { padding-top: 100px; padding-bottom: 60px; }
  .hero__title { font-size: 32px; letter-spacing: -0.5px; }
  .hero__sub { font-size: 16px; }
  .hero__routes { opacity: 0.3; }
  .hero__scroll { display: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; }

  /* Sections */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }
  .badge { font-size: 12px; padding: 6px 16px; }

  /* Services */
  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card__img-wrap { height: 140px; }

  /* Platform */
  .platform { padding: 80px 0; }
  .platform__features { grid-template-columns: 1fr; gap: 16px; }
  .platform__hero-stat { padding: 28px 20px; }
  .stat-counter { font-size: 48px; }
  .platform__stat-unit { font-size: 16px; }

  /* Compare */
  .platform__compare { margin-bottom: 48px; grid-template-columns: 1fr; gap: 16px; }
  .compare__divider { transform: rotate(90deg); padding: 8px 0; }
  .compare__side { padding: 24px; }
  .compare__side li { font-size: 13px; padding: 8px 0 8px 20px; }

  /* Mockup */
  .mockup { transform: none; }
  .mockup:hover { transform: none; }
  .mockup__sidebar { width: 44px; padding: 12px 6px; }
  .mockup__nav-item { height: 32px; }
  .mockup__nav-item span { font-size: 7px; }
  .mockup__content { padding: 16px; }
  .mockup__stat-value { font-size: 20px; }
  .mockup__stat-label { font-size: 10px; }
  .mockup__cards-row { flex-direction: row; gap: 8px; }
  .mockup__stat-card { padding: 12px; }
  .mockup__chart { height: 100px; padding: 12px; gap: 6px; }
  .mockup__chart-pct { font-size: 7px; }
  .mockup__notification { font-size: 11px; padding: 8px 12px; top: 12px; right: 12px; }
  .mockup__screen { min-height: 260px; }

  /* About */
  .about { padding: 80px 0; }
  .about__text { font-size: 15px; margin-bottom: 48px; }
  .about__stats { flex-direction: column; gap: 32px; align-items: center; }
  .stat__number { font-size: 44px; }
  .stat__number--text { font-size: 44px; }
  .stat__suffix { font-size: 32px; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 0; }
  .contact__form { padding: 28px 24px; }
  .contact__info { padding: 24px; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer__logo-svg { height: 36px; margin: 0 auto 8px; }
  .footer__nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 28px; }
  .hero__content { padding-top: 88px; }
  .section-title { font-size: 24px; }
  .service-card__img-wrap { height: 120px; }
  .service-card__body { padding: 20px; }
  .service-card__body h3 { font-size: 15px; }
  .service-card__body p { font-size: 13px; }
  .feature-card { padding: 24px; }
  .compare__side { padding: 20px; }
  .compare__side li { font-size: 12px; }
  .stat-counter { font-size: 40px; }
  .platform__stat-unit { font-size: 14px; }
  .mockup__sidebar { display: none; }
  .mockup__chart-pct { display: none; }
}
