*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

:root {
  --blue:     #1861F5;
  --blue-2:   #0f4ed4;
  --blue-dim: rgba(24,97,245,0.10);
  --blue-glow:rgba(24,97,245,0.18);
  --bg:       #ffffff;
  --bg2:      #f2f6fd;
  --bg3:      #e8effc;
  --text:     #0f1b2d;
  --white:    #ffffff;
  --gray:     rgba(15,27,45,0.52);
  --line:     rgba(24,97,245,0.13);
  --card-bg:  #ffffff;
  --nav-bg:   rgba(255,255,255,0.0);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(24,97,245,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}


.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.blue { color: var(--blue); }
.mono { font-family: 'Inter', sans-serif; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}


.bracket {
  position: relative;
  border-radius: 16px;
}
.bracket::before, .bracket::after { display: none; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(24,97,245,0.30);
}
.btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 32px rgba(24,97,245,0.42);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
}


nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px rgba(24,97,245,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #fff;
  transition: color 0.4s ease;
}
nav.scrolled .nav-logo { color: var(--text); }
nav.scrolled .nav-logo .blue { color: var(--blue); }
nav .nav-logo .blue { color: #5fa8ff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a { color: var(--gray); }
nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta {
  margin-left: 16px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: none;
  animation: none;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  box-shadow: none;
}
nav.scrolled .nav-cta {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(24,97,245,0.30);
}
nav.scrolled .nav-cta:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 32px rgba(24,97,245,0.42);
}




#hero {
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2154 40%, #1152c9 75%, #2478ff 100%);
}


.hero-rings {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.06);
}
.hero-ring--1 {
  inset: 0;
  animation: float 10s ease-in-out infinite;
}
.hero-ring--2 {
  inset: 60px;
  border-color: rgba(95,168,255,0.10);
  animation: float 8s ease-in-out infinite reverse;
}
.hero-ring--3 {
  inset: 140px;
  border-color: rgba(95,168,255,0.15);
  border-width: 2px;
  animation: float 12s ease-in-out infinite;
  background: radial-gradient(circle, rgba(24,97,245,0.05) 0%, transparent 70%);
}
@media (max-width: 768px) {
  .hero-rings {
    width: 300px; height: 300px;
    right: -20%; top: 10%;
    transform: none;
    opacity: 0.5;
  }
}


#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,255,255,0.04) 0%, transparent 65%), 
              linear-gradient(to bottom, transparent 60%, rgba(10,22,40,0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-scanlines { display: none; }
.hero-glow      { display: none; }
.hero-divider   { display: none; }

.hero-content {
  position: relative;
  z-index: 4;
  padding: 0;
  max-width: 720px;
  will-change: transform;
  animation: fadeInUp 1s 0.15s ease both;
}

.hero-tag {
  display: none;
}

.hero-title {
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #ffffff;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-title-accent {
  color: #5fa8ff;
}


.glitch {
  position: relative;
  display: inline-block;
  color: #5fa8ff;
}
.glitch::before, .glitch::after { display: none; }

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.70);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.45s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}


#hero .btn-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 28px rgba(0,0,0,0.18);
}
#hero .btn-primary:hover {
  background: #eaf1ff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
#hero .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
#hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.8s 0.75s ease both;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 24px 0;
  backdrop-filter: blur(8px);
  max-width: 540px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-num.counted { animation: statPop 0.4s ease; }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.50);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.3;
}


.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  animation: fadeInUp 1s 1.4s ease both;
}
.scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: arrowBounce 1.6s ease-in-out infinite;
  margin-top: -4px;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50%      { transform: rotate(45deg) translateY(7px); opacity: 1; }
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-55px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(55px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position:  200% center; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 4px 24px rgba(24,97,245,0.30); }
  60%     { box-shadow: 0 4px 36px rgba(24,97,245,0.52), 0 0 0 10px rgba(24,97,245,0); }
}
@keyframes statPop {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.12); }
}
@keyframes cursorBlink {
  0%,100% { border-right-color: var(--blue); }
  50%     { border-right-color: transparent; }
}


.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }
.delay-5 { transition-delay: 0.40s !important; }





#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #60a5fa 100%);
  box-shadow: 0 0 8px rgba(24,97,245,0.45);
  z-index: 9999;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}


.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  margin-top: 3px;
  animation: expandLine 0.4s ease;
  transform-origin: left;
}
nav.scrolled .nav-links a.active { color: var(--blue); }
nav.scrolled .nav-links a.active::after { background: var(--blue); }


#services {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--card-bg);
  padding: 36px 32px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.65s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.65s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(24,97,245,0.05);
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(24,97,245,0.28);
  box-shadow: 0 12px 40px rgba(24,97,245,0.13);
  transform: translateY(-6px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  transform: translateZ(0);
}
.service-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-features li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(15,27,45,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(24,97,245,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 12px; }
.service-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.service-time {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 1px;
}


#process {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  display: none;
}

.step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 72px;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(24,97,245,0.15));
  opacity: 0.25;
  z-index: 0;
}
.step-num {
  width: 72px;
  height: 72px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
  background: var(--bg2);
  box-shadow: 0 4px 20px rgba(24,97,245,0.14);
  position: relative;
  z-index: 2;
}
.step-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}


#portfolio {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.portfolio-card {
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(24,97,245,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.portfolio-card:hover {
  box-shadow: 0 8px 36px rgba(24,97,245,0.14);
  transform: translateY(-4px);
}
.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.35;
}
.portfolio-placeholder span:first-child { font-size: 48px; }
.portfolio-placeholder span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}
.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,80,0.92) 0%, rgba(10,30,80,0.3) 60%, transparent 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #93bbff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.portfolio-note {
  margin-top: 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 1px;
}


.portfolio-stub {
  cursor: default;
  background: linear-gradient(135deg, #f0f5ff 0%, #e2ecff 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-stub-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 24px;
}
.portfolio-stub-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.portfolio-stub-badge--soon {
  background: #0ea87a;
}
.portfolio-stub-icon { font-size: 44px; line-height: 1; margin: 4px 0; }
.portfolio-stub-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.portfolio-stub-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.portfolio-stub-stack {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1px;
  margin-top: 4px;
}


.portfolio-soon-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.portfolio-soon-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, #f0f5ff 0%, #e2ecff 60%, #d6e6ff 100%);
  border: 1.5px solid var(--line);
  border-radius: 24px;
  padding: 48px 56px;
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-soon-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #60a5fa, var(--blue));
  border-radius: 4px 4px 0 0;
}
@media (max-width: 700px) {
  .portfolio-soon-card { flex-direction: column; padding: 36px 28px; gap: 28px; text-align: center; }
  .portfolio-soon-links { justify-content: center; }
}
.portfolio-soon-gfx {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(24,97,245,0.12);
}
.psoon-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.18;
}
.psoon-dot-1 { width: 160px; height: 160px; top: -20px; left: -20px; }
.psoon-dot-2 { width: 80px; height: 80px; top: 60px; left: 70px; opacity: 0.1; }
.psoon-dot-3 { width: 40px; height: 40px; top: -10px; left: 80px; opacity: 0.12; }
.psoon-center { position: relative; z-index: 1; }
.portfolio-soon-text { flex: 1; }
.portfolio-soon-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 16px;
}
.portfolio-soon-title {
  font-family: 'Nunito', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--text); line-height: 1.25;
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.portfolio-soon-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--gray);
  line-height: 1.7; margin-bottom: 20px;
}
.portfolio-soon-links {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--gray);
}
.portfolio-soon-links a {
  color: var(--blue); text-decoration: none; font-weight: 600;
}
.portfolio-soon-links a:hover { text-decoration: underline; }
.portfolio-soon-cta { margin-top: 24px; align-self: flex-start; }


#reviews {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  box-shadow: 0 2px 16px rgba(24,97,245,0.05);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  color: rgba(24,97,245,0.07);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue-dim);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}
.review-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--text);
}
.review-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 2px;
}

.reviews-note {
  margin-top: 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
}


#partners {
  padding: 120px 0;
  background: var(--bg);
}
#partners .container {
  width: 100%;
}
#partners .section-label {
  justify-content: center;
}
#partners .section-title {
  text-align: center;
}
#partners .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr; } }
.partner-card {
  background: var(--bg2);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 44px 36px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 2px 20px rgba(24,97,245,0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.partner-card:hover::before { transform: scaleX(1); }
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(24,97,245,0.12);
  border-color: rgba(24,97,245,0.28);
}
.partner-icon { font-size: 36px; line-height: 1; }
.partner-title {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.partner-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.partner-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.partners-cta {
  margin-top: 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.partners-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--gray);
}


.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), rgba(24,97,245,0.25), var(--line), transparent);
  margin: 0;
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  left: 50%; top: -4px;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.4;
}


#cta-banner {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.cta-banner-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(24,97,245,0.2);
  border-radius: 100px;
  padding: 6px 18px;
}
.cta-banner-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0;
}
.cta-banner-title span { color: var(--blue); }
.cta-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}
@media (max-width: 768px) { .cta-trust-grid { grid-template-columns: repeat(2, 1fr); } }
.cta-trust-item {
  background: var(--card-bg);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.cta-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}


#faq {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: var(--bg2);
}

.faq-list {
  margin-top: 48px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item.open {
  border-color: rgba(24,97,245,0.30);
  box-shadow: 0 4px 24px rgba(24,97,245,0.10);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1.5px solid var(--line);
  color: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.25s;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}


#contacts .container { position: relative; z-index: 2; }
#contacts .contacts-glow { z-index: 1; }

#contacts {
  padding: 120px 0;
  background: var(--bg2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contacts-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24,97,245,0.07) 0%, transparent 65%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1.5px solid var(--line);
}
.contact-icon { font-size: 24px; flex-shrink: 0; width: 40px; }
.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-val {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
}
.contact-val a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--blue); }


.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  transform: translateY(100%);
  animation: cookieSlideUp 0.5s 1s ease-out forwards;
}
@keyframes cookieSlideUp {
  to { transform: translateY(0); }
}
.cookie-banner.hidden { display: none; }
.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  max-width: 600px;
}
.cookie-text a { color: var(--blue); text-decoration: underline; }
.cookie-text a:hover { color: var(--blue-2); }
.cookie-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--blue-2); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; gap: 12px; padding: 14px 16px; }
  .cookie-text { text-align: center; }
}


.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
}
.form-input, .form-textarea {
  background: var(--white);
  border: 1.5px solid rgba(24,97,245,0.2);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,97,245,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(15,27,45,0.3); }
.form-textarea { min-height: 120px; }


.services-dropdown {
  position: relative;
}
.services-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid rgba(24,97,245,0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(15,27,45,0.3);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.services-dropdown-toggle.has-value { color: var(--text); }
.services-dropdown-toggle:hover,
.services-dropdown-toggle:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,97,245,0.1);
  outline: none;
}
.services-dropdown-toggle .chevron {
  width: 18px; height: 18px;
  transition: transform 0.3s;
  color: var(--gray);
  flex-shrink: 0;
}
.services-dropdown.open .chevron { transform: rotate(180deg); }
.services-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid rgba(24,97,245,0.15);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 50;
  padding: 8px;
  max-height: 320px;
  overflow-y: auto;
}
.services-dropdown.open .services-dropdown-menu { display: block; }
.services-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text);
  transition: background 0.15s;
}
.services-dropdown-item:hover { background: var(--bg2); }
.services-dropdown-item input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.services-dropdown-item.checked { background: var(--blue-dim); }
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--blue-dim);
  border: 1px solid rgba(24,97,245,0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--blue);
  font-weight: 500;
}
.service-tag .tag-remove {
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.service-tag .tag-remove:hover { opacity: 1; }


.form-success-screen {
  text-align: center;
  padding: 40px 20px;
  animation: successFadeIn 0.6s ease-out;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.form-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
  animation: successPop 0.5s ease-out 0.2s both;
}
@keyframes successPop {
  from { transform: scale(0); }
  50%  { transform: scale(1.15); }
  to   { transform: scale(1); }
}
.form-success-icon svg { width: 32px; height: 32px; color: #fff; }
.form-success-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.form-success-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
.form-success-contacts {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.form-success-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.form-success-link.tg-link { background: rgba(41,171,226,0.1); color: #1a9bd6; }
.form-success-link.tg-link:hover { background: rgba(41,171,226,0.2); }
.form-success-link.vk-link { background: rgba(0,119,255,0.1); color: #0056cc; }
.form-success-link.vk-link:hover { background: rgba(0,119,255,0.2); }

.form-success {
  display: none;
}

.form-error {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #c0392b;
  text-align: center;
  padding: 12px 16px;
  border: 1.5px solid #e74c3c;
  border-radius: 10px;
  background: rgba(231,76,60,0.06);
}


.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 12px 0 4px;
}
.privacy-check input[type=checkbox] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  accent-color: var(--blue);
  margin-top: 1px;
  cursor: pointer;
}
.privacy-check span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.privacy-check span a {
  color: var(--blue);
  text-decoration: underline;
}
.privacy-check span a:hover { color: var(--blue-2); }


.contact-method-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.contact-method-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg2);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}
.contact-method-btn svg { flex-shrink: 0; }
.contact-method-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bg);
}
.contact-method-btn.active {
  border-color: var(--blue);
  background: var(--blue-dim);
  color: var(--blue);
}
.contact-method-btn.tg-btn.active  { border-color:#29abe2; background:rgba(41,171,226,0.08); color:#1a9bd6; }
.contact-method-btn.vk-btn.active  { border-color:#0077ff; background:rgba(0,119,255,0.08);  color:#0056cc; }
.contact-method-btn.tel-btn.active { border-color:#22c55e; background:rgba(34,197,94,0.08);  color:#16a34a; }

.contact-input-wrap { position: relative; }
.contact-input-prefix {
  position: absolute;
  left: 14px; top: 21px; transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  pointer-events: none;
  user-select: none;
}
.contact-input-with-prefix { padding-left: 36px !important; }
.contact-input-link-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gray);
  margin-top: 5px;
  padding: 0 2px;
}
.contact-input-link-note a { color: var(--blue); text-decoration: none; }
.contact-input-link-note a:hover { text-decoration: underline; }


.fab-wrapper {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab-popup {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(24,97,245,0.18);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 230px;
  animation: fadeInUp 0.22s ease both;
  transform-origin: bottom right;
}
.fab-popup.open { display: flex; }
.fab-popup-title {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  padding: 0 4px 6px;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 2px;
}
.fab-popup-consult {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gray);
  padding: 4px 4px 2px;
  line-height: 1.55;
}
.fab-popup-consult strong { color: var(--blue); font-weight: 700; }
.fab-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  background: var(--bg2);
}
.fab-channel:hover { background: var(--bg3); border-color: var(--line); }

.fab-channel-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fab-channel.tg-ch .fab-channel-icon { background:#e8f7fd; color:#29abe2; }
.fab-channel.vk-ch .fab-channel-icon { background:#e5efff; color:#0077ff; }
.fab-channel.ph-ch  { cursor:default; }
.fab-channel.ph-ch .fab-channel-icon { background:#e8fdf0; color:#22c55e; }
.fab-channel-label { font-size: 12px; color: var(--gray); font-weight: 500; margin-top: 1px; }
.fab-channel-name { font-size: 14px; font-weight: 700; }


.fab-dismiss {
  position: absolute;
  top: -10px; left: -10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray);
  color: #fff;
  border: none;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}
.fab-dismiss:hover { opacity: 1; }


.fab-vk {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(24,97,245,0.40);
  transition: all 0.25s;
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.fab-vk:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 36px rgba(24,97,245,0.55);
  transform: translateY(-3px);
  animation: none;
}


.back-to-top {
  position: fixed;
  bottom: 82px; right: 24px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--gray);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(24,97,245,0.08);
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(24,97,245,0.20);
}


footer {
  background: #0a1628;
  border-top: 1px solid rgba(24,97,245,0.15);
  padding: 36px 0;
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-links a:hover { color: #fff; }


.tech-marquee-section {
  padding: 64px 0 48px;
  background: var(--bg);
  overflow: hidden;
}
.tech-marquee-section .section-title { margin-bottom: 8px; }
.marquee-wrapper {
  margin-top: 40px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: all 0.3s;
}
.marquee-item:hover {
  background: var(--blue-dim);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.marquee-icon { font-size: 20px; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps::before { display: none; }
  .step:not(:last-child)::after { display: none; }
  .hero-divider { display: none; }
}

@media (max-width: 768px) {
  
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }
  .container { padding: 0 16px; }

  
  #services, #process, #portfolio, #reviews, #partners, #faq, #cta-banner { padding: 72px 0; }
  #contacts { padding: 72px 0; }

  
  #hero { min-height: 100svh; padding-top: 80px; }
  .hero-content { padding: 0 8px; max-width: 100%; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); letter-spacing: -2px; line-height: 1.05; margin-bottom: 18px; }
  .hero-desc { font-size: 15px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 0; flex-wrap: nowrap; margin-top: 40px; padding: 20px 0; max-width: 100%; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; letter-spacing: 1px; }
  .stat-item { padding: 0 12px; }
  .stat-divider { height: 32px; }
  .hero-badge { font-size: 10px; letter-spacing: 2px; }

  
  .nav-inner { height: 60px; }
  .scroll-indicator { display: none; }

  
  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }

  
  .process-steps { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }

  
  .portfolio-grid { grid-template-columns: 1fr; }

  
  .reviews-grid { grid-template-columns: 1fr; }

  
  .partners-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .partners-cta { margin-top: 48px; }

  
  .faq-list { margin-top: 32px; }

  
  .cta-trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  
  .contacts-inner { grid-template-columns: 1fr; gap: 40px; }

  
  .contact-methods { gap: 8px; }
  .contact-method-btn { font-size: 13px; padding: 10px 14px; }

  
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .section-sub { font-size: 15px; }

  
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  
  .fab-wrapper { bottom: 16px; right: 16px; }
  .fab-vk { padding: 12px 16px; font-size: 12px; }
  .fab-popup { min-width: 200px; max-width: calc(100vw - 40px); }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .cta-trust-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .partner-card { padding: 28px 20px; }
  .service-card { padding: 24px 20px; }
  .faq-question { font-size: 14px; padding: 16px; }
  .btn { font-size: 14px; padding: 14px 20px; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; }
}




.btn-primary {
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.btn-primary:hover { animation: none; }


.service-price {
  background: linear-gradient(90deg, var(--blue) 20%, #60a5fa 50%, var(--blue) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}


.service-card:hover .service-icon {
  transform: translateY(-6px) translateZ(0);
}


.step:hover .step-num {
  background: var(--blue-dim);
  box-shadow: 0 6px 28px rgba(24,97,245,0.25);
}


.faq-item { transition: background 0.2s, box-shadow 0.25s, border-color 0.25s; }
.faq-item:hover { background: var(--bg2); }


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: #5fa8ff;
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}




.decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.decor-circle--1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(24,97,245,0.06) 0%, transparent 70%);
  top: -80px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.decor-circle--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(24,97,245,0.05) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}
.decor-circle--3 {
  width: 160px; height: 160px;
  border: 1.5px solid rgba(24,97,245,0.08);
  top: 15%; left: -40px;
  animation: float 12s ease-in-out infinite;
}


#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,97,245,0.15) 30%, rgba(24,97,245,0.25) 50%, rgba(24,97,245,0.15) 70%, transparent);
}


#services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24,97,245,0.20), transparent);
}


.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(24,97,245,0.16);
}
.service-icon svg {
  backface-visibility: hidden;
  transform: translateZ(0);
}


.step::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24,97,245,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.step:hover::before { opacity: 1; }


.step:hover .step-num {
  animation: stepPulse 1.5s ease-in-out infinite;
}
@keyframes stepPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(24,97,245,0.14); }
  50% { box-shadow: 0 4px 28px rgba(24,97,245,0.35), 0 0 0 8px rgba(24,97,245,0.06); }
}


.faq-question::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transition: opacity 0.3s;
}
.faq-item.open .faq-question::after { opacity: 0; }


.section-label::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}


.partner-card {
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s, border-color 0.4s;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(24,97,245,0.12);
  border-color: rgba(24,97,245,0.25);
}


#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(24,97,245,0.04) 0%, transparent 60%);
  pointer-events: none;
}


.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--blue);
  margin-left: 2px;
  animation: cursorBlink 0.8s infinite;
  vertical-align: text-bottom;
}


.section-divider::before {
  animation: pulseGlow 3s infinite;
}


.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, #60a5fa 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}


.review-card {
  transition: transform 0.4s, box-shadow 0.4s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(24,97,245,0.10);
}


#contacts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(24,97,245,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(24,97,245,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}


#lightbox { display:none; }
#lightbox.active { display:flex; }
.portfolio-card[onclick] { cursor:zoom-in; }
