/* =========================================================
   BIG TEAM — premium design system
   ========================================================= */

:root {
  --bg: #060b14;
  --surface: #0a1220;
  --surface2: #0e1a2c;
  --blue: #1b6fe3;
  --blue-soft: #2b83f5;
  --cyan: #55c7f5;
  --white: #ffffff;
  --ink: #eef3f9;
  --muted: #8ea1bc;
  --muted-dim: #5f7290;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent-line: rgba(85, 199, 245, 0.28);
  --glow: rgba(27, 111, 227, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.4s ease;
}
html.page-in body { opacity: 1; }
html.page-out body { opacity: 0; transition: opacity 0.22s ease; }

body.has-fine-pointer { cursor: none; }

::selection { background: rgba(85,199,245,0.28); color: white; }

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.icon { width: 1em; height: 1em; display: inline-block; fill: none; stroke: currentColor; }
.icon-fill { fill: currentColor; stroke: none; }

/* CURSOR */
#cursor, #cursor-ring, #cursor-orb { display: none; }
body.has-fine-pointer #cursor,
body.has-fine-pointer #cursor-ring,
body.has-fine-pointer #cursor-orb { display: block; }

#cursor {
  position: fixed; width: 7px; height: 7px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
#cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(85, 199, 245, 0.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transition: transform 0.4s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
#cursor-orb {
  position: fixed; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(27,111,227,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.9s var(--ease);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.08; color: var(--white); font-weight: 700; }

.display-xl { font-size: clamp(2.6rem, 6.4vw, 6.4rem); font-weight: 800; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(2.1rem, 4.2vw, 3.6rem); font-weight: 700; letter-spacing: -0.025em; }
.display-md { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
.label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cyan);
}
.body-lg { font-size: 1.08rem; color: var(--muted); line-height: 1.8; }
p { color: var(--muted); }

/* LAYOUT */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 22px; } }
section { position: relative; }

/* SITE HEADER (announce bar + nav together, fixed as one block) */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}

/* NAV */
nav {
  padding: 26px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s, color 0.4s;
  border-bottom: 1px solid transparent;
  color: #ffffff;
}
nav.scrolled {
  background: rgba(6, 11, 20, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 16px 40px;
  color: var(--white);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { height: 30px; width: auto; }
.logo-word {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.02rem; letter-spacing: 0.14em; color: currentColor;
}
.logo-word-svg { height: 15px; width: auto; display: block; }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: currentColor; opacity: 0.72;
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.3s, opacity 0.3s; position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--cyan); }
.nav-cta {
  background: transparent; border: 1px solid rgba(85,199,245,0.35);
  color: var(--cyan); padding: 10px 26px; border-radius: 100px;
  font-size: 0.84rem; font-weight: 500;
  transition: all 0.35s var(--ease); text-decoration: none; letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--blue); border-color: var(--blue); color: white; }

.nav-burger { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; cursor: pointer; background: none; border: 1px solid currentColor; opacity: 0.85; border-radius: 10px; color: currentColor; }
.nav-burger:hover { opacity: 1; }
.nav-burger .icon { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  nav { padding: 18px 22px; }
  nav.scrolled { padding: 14px 22px; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 700;
  color: white; text-decoration: none; letter-spacing: -0.02em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  color: white; cursor: pointer;
}
.mobile-close .icon { width: 18px; height: 18px; }

/* ANNOUNCE BAR */
.announce-bar {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 11px 20px; text-align: center;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--muted);
}
.announce-bar a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid rgba(85,199,245,0.4); padding-bottom: 1px; }
.announce-bar a:hover { border-color: var(--cyan); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 40px 90px;
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 90px; align-items: center;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2.4s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.7); } }
.hero-title { margin-bottom: 26px; }
.hero-title .accent { color: var(--cyan); }
.hero-sub { max-width: 470px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue); color: white;
  padding: 15px 32px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  transition: all 0.35s var(--ease); letter-spacing: 0.01em;
  border: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary .icon { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.btn-primary:hover { background: var(--blue-soft); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(27,111,227,0.28); }
.btn-primary:hover .icon { transform: translate(2px,-2px); }
.btn-ghost {
  color: var(--muted); padding: 15px 32px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; text-decoration: none;
  transition: all 0.3s var(--ease); display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { color: white; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); }

.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.hero-stat { background: var(--surface); padding: 30px; transition: background 0.4s; }
.hero-stat:hover { background: var(--surface2); }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.7rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; letter-spacing: -0.03em; }
.stat-num .stat-accent { color: var(--cyan); }
.stat-label { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted-dim); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  animation: scrollBounce 2.4s ease infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--cyan), transparent); }
.hero-bg-line { position: absolute; top: 0; right: 28%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--line), transparent); pointer-events: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  #hero { padding: 128px 22px 80px; }
  .stat-num { font-size: 2.1rem; }
}
@media (max-width: 480px) { .hero-stats-grid { grid-template-columns: 1fr; } }

/* CLIENTS */
#clients { padding: 72px 0; border-top: 1px solid var(--line); overflow: hidden; }
.clients-inner { padding: 0 40px; max-width: 1240px; margin: 0 auto; }
.clients-label { text-align: center; margin-bottom: 44px; }
.clients-track { display: flex; gap: 60px; align-items: center; animation: slide 32s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
.clients-wrap { overflow: hidden; mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--muted-dim); letter-spacing: 0.04em; white-space: nowrap; transition: color 0.3s; }
.client-logo:hover { color: var(--white); }
.client-dot { color: var(--line-strong); }

/* ABOUT */
#about { padding: 150px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.about-left .label { margin-bottom: 22px; }
.about-left h2 { margin-bottom: 26px; }
.about-left p { margin-bottom: 38px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; }
.about-pillar { display: flex; align-items: flex-start; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); transition: all 0.4s var(--ease); }
.about-pillar:hover { background: var(--surface); border-color: var(--accent-line); }
.pillar-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(27,111,227,0.12); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--cyan); }
.pillar-icon .icon { width: 19px; height: 19px; }
.pillar-text h4 { font-size: 0.96rem; font-weight: 600; margin-bottom: 5px; }
.pillar-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.about-visual { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.about-visual-bg { position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(27,111,227,0.09), transparent 60%); }
.av-top { position: relative; z-index: 1; }
.av-top .display-md { margin-bottom: 8px; }
.av-mid { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 30px 0; }
.kpi-circle { width: 152px; height: 152px; border-radius: 50%; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.kpi-value { font-family: 'Syne', sans-serif; font-size: 2.3rem; font-weight: 800; }
.kpi-sub { font-size: 0.7rem; color: var(--muted); text-align: center; line-height: 1.4; }
.av-bottom { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }
.av-tag { background: rgba(27,111,227,0.1); border: 1px solid rgba(85,199,245,0.2); border-radius: 100px; padding: 6px 16px; font-size: 0.74rem; color: var(--cyan); white-space: nowrap; }
.kpi-link-icon { color: var(--line-strong); flex-shrink: 0; }
.kpi-link-icon .icon { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  #about { padding: 88px 0; }
  .about-visual { aspect-ratio: auto; padding: 32px; min-height: 300px; }
}

/* SECTION HEADER */
.section-header { margin-bottom: 68px; }
.section-header .label { margin-bottom: 16px; }
.section-header-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.section-header h2 { max-width: 600px; }
.section-header p { max-width: 380px; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .section-header-inner { flex-direction: column; align-items: flex-start; } }

/* SERVICES */
#services { padding: 150px 0; background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { background: var(--bg); padding: 38px 30px; transition: all 0.4s var(--ease); position: relative; }
.service-card:hover { background: var(--surface2); }
.service-icon { width: 50px; height: 50px; background: rgba(27,111,227,0.12); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: var(--cyan); margin-bottom: 22px; transition: all 0.4s var(--ease); }
.service-icon .icon { width: 21px; height: 21px; }
.service-card:hover .service-icon { background: rgba(27,111,227,0.22); transform: scale(1.08); }
.service-card h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 11px; padding-right: 28px; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.service-arrow { position: absolute; top: 40px; right: 28px; color: var(--line-strong); transition: all 0.35s var(--ease); background: none; border: none; cursor: pointer; padding: 4px; }
.service-arrow .icon { width: 16px; height: 16px; }
.service-card:hover .service-arrow { color: var(--cyan); }
.service-card.open .service-arrow { color: var(--cyan); transform: rotate(45deg); }
.service-more { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.service-card.open .service-more { max-height: 700px; }
.service-more-inner { padding-top: 14px; }
.service-price { display: inline-block; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--cyan); font-size: 0.92rem; }
.service-price-note { font-size: 0.76rem; color: var(--muted-dim); font-style: italic; margin-bottom: 8px; }
.service-more-inner > p { margin: 10px 0 16px; }
.service-features-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted-dim); text-transform: uppercase; margin-bottom: 12px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 0.83rem; color: var(--muted); line-height: 1.5; }
.service-feature .icon { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.service-detail-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--blue); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.service-detail-link .icon { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-detail-link:hover .icon { transform: translateX(3px); }

/* SERVICES LIST PAGE */
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-page-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 38px 32px; text-decoration: none; color: inherit; transition: all 0.4s var(--ease); display: block; }
.service-page-card:hover { border-color: var(--accent-line); background: var(--surface2); transform: translateY(-4px); }
.service-page-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.service-page-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.service-page-price { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--cyan); font-size: 0.92rem; }
.service-page-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--blue); font-size: 0.85rem; font-weight: 600; }
.service-page-link .icon { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-page-card:hover .service-page-link .icon { transform: translateX(3px); }

@media (max-width: 900px) { .services-page-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-page-grid { grid-template-columns: 1fr; } }

/* SERVICE DETAIL PAGE */
.service-hero { padding: 150px 0 70px; position: relative; overflow: hidden; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }

.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-deco-glow { position: absolute; top: 50%; right: 4%; width: 420px; height: 420px; margin-top: -210px; background: radial-gradient(circle, rgba(85,199,245,0.16) 0%, transparent 70%); border-radius: 50%; animation: pulseGlow 6s ease-in-out infinite; }
.hero-deco-ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; animation: spinSlow 46s linear infinite; }
.hero-deco-ring.ring-a { width: 300px; height: 300px; top: 50%; right: 6%; margin-top: -150px; }
.hero-deco-ring.ring-b { width: 180px; height: 180px; top: 50%; right: 22%; margin-top: 40px; border-style: dashed; }
.hero-deco-badge { position: absolute; width: 82px; height: 82px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--cyan); box-shadow: 0 24px 60px rgba(0,0,0,0.4); animation: floatY 5s ease-in-out infinite; }
.hero-deco-badge .icon { width: 30px; height: 30px; }
.hero-deco-badge.pos-a { top: 50%; right: 20%; margin-top: -130px; animation-name: floatY; }
.hero-deco-badge.pos-b { top: 50%; right: 2%; margin-top: -20px; animation: floatY2 6.5s ease-in-out infinite; animation-delay: 0.6s; }
.hero-deco-badge.pos-c { top: 50%; right: 26%; margin-top: 70px; animation: floatY 5.8s ease-in-out infinite; animation-delay: 1.2s; }

@media (max-width: 1024px) { .hero-deco-badge.pos-c { display: none; } }
@media (max-width: 768px) { .hero-deco { display: none; } }
.service-hero-inner { max-width: 760px; }
.service-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 26px; }
.service-breadcrumb a { color: var(--muted); text-decoration: none; }
.service-breadcrumb a:hover { color: var(--cyan); }
.service-hero-icon { width: 62px; height: 62px; background: rgba(27,111,227,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--cyan); margin-bottom: 26px; }
.service-hero-icon .icon { width: 27px; height: 27px; }
.service-hero-price { display: inline-block; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--cyan); font-size: 1.05rem; margin: 14px 0 4px; }
.service-hero-price-note { font-size: 0.82rem; color: var(--muted-dim); font-style: italic; margin-bottom: 26px; }
.service-hero-desc { max-width: 560px; margin-bottom: 34px; }

.service-body-section { padding: 20px 0 100px; }
.service-body-grid { display: grid; grid-template-columns: 1fr 0.7fr; gap: 70px; align-items: start; }
.service-features-block .label { margin-bottom: 18px; display: block; }
.service-features-block .service-features { gap: 16px; }
.service-features-block .service-feature { font-size: 0.95rem; }
.service-features-block .service-feature .icon { width: 16px; height: 16px; margin-top: 4px; }
.service-cta-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; position: sticky; top: 130px; }
.service-cta-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.service-cta-card p { font-size: 0.88rem; margin-bottom: 22px; }

@media (max-width: 900px) { .service-body-grid { grid-template-columns: 1fr; gap: 40px; } .service-cta-card { position: static; } .service-hero { padding: 128px 0 50px; } }

/* OTHER SERVICES (on detail page) */
#other-services { padding: 90px 0 130px; background: var(--surface); }
.other-services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-mini-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 20px; text-decoration: none; color: inherit; transition: all 0.35s var(--ease); text-align: center; }
.service-mini-card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.service-mini-card .service-icon { margin: 0 auto 16px; }
.service-mini-card h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 12px; }
.service-mini-card .service-page-link { font-size: 0.76rem; margin-top: 0; }

@media (max-width: 900px) { .other-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .other-services-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } #services { padding: 88px 0; } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* CASES */
#cases { padding: 150px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: all 0.4s var(--ease); position: relative; }
.case-card:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.case-img { height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.case-logo-img { max-width: 82%; max-height: 76%; object-fit: contain; }
.case-logo-text { position: relative; z-index: 1; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.5rem; color: rgba(255,255,255,0.92); letter-spacing: -0.01em; text-align: center; padding: 0 24px; }
.case-img .icon { width: 72px; height: 72px; opacity: 0.34; color: #ffffff; position: relative; z-index: 1; }
.case-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 35%, rgba(6,11,20,0.85)); }
.case-body { padding: 26px; }
.case-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); background: rgba(85,199,245,0.08); border: 1px solid rgba(85,199,245,0.16); border-radius: 100px; padding: 4px 12px; margin-bottom: 12px; }
.case-card h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 16px; }
.case-metrics { display: flex; gap: 18px; flex-wrap: wrap; }
.case-metric { display: flex; flex-direction: column; }
.cm-val { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--cyan); }
.cm-label { font-size: 0.7rem; color: var(--muted); }

@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr 1fr; } #cases { padding: 88px 0; } }
@media (max-width: 560px) { .cases-grid { grid-template-columns: 1fr; } }

/* WHY */
#why { padding: 150px 0; background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { padding: 50px 46px; background: var(--bg); transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.why-card:hover { background: var(--surface2); }
.why-num { font-family: 'Syne', sans-serif; font-size: 4.6rem; font-weight: 800; color: rgba(85,199,245,0.07); line-height: 1; position: absolute; top: 22px; right: 30px; letter-spacing: -0.04em; transition: all 0.4s; }
.why-card:hover .why-num { color: rgba(85,199,245,0.13); }
.why-card h3 { font-size: 1.24rem; font-weight: 700; margin-bottom: 14px; margin-top: 6px; }
.why-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; max-width: 440px; }
.why-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(27,111,227,0.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon .icon { width: 18px; height: 18px; }

@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } .why-card { padding: 34px 26px; } #why { padding: 88px 0; } }

/* PROCESS */
#process { padding: 150px 0; }
.process-steps { display: flex; flex-direction: column; position: relative; }
.process-steps::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--blue), var(--cyan), transparent); }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 32px; padding: 44px 0; border-bottom: 1px solid var(--line); align-items: center; }
.process-step:last-child { border-bottom: none; }
.process-step:hover .ps-content { opacity: 1; }
.ps-dot { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--cyan); position: relative; z-index: 2; flex-shrink: 0; transition: all 0.4s var(--ease); }
.process-step:hover .ps-dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.ps-content { opacity: 0.75; transition: all 0.4s var(--ease); }
.ps-label { font-size: 0.7rem; color: var(--cyan); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.ps-content h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.ps-content p { color: var(--muted); font-size: 0.9rem; max-width: 600px; }

@media (max-width: 600px) { #process { padding: 88px 0; } }

/* KPI BAR */
#kpi { padding: 96px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kpi-item { padding: 44px 36px; border-right: 1px solid var(--line); text-align: center; transition: background 0.4s; }
.kpi-item:last-child { border-right: none; }
.kpi-item:hover { background: var(--bg); }
.kpi-big { font-family: 'Syne', sans-serif; font-size: 3.1rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 8px; line-height: 1; color: var(--white); }
.kpi-big .k { color: var(--cyan); }
.kpi-desc { font-size: 0.84rem; color: var(--muted); }

@media (max-width: 768px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } .kpi-item { border-bottom: 1px solid var(--line); border-right: none; } .kpi-item:nth-child(odd) { border-right: 1px solid var(--line); } }

/* TESTIMONIALS */
#testimonials { padding: 150px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px; transition: all 0.4s var(--ease); }
.testimonial-card:hover { border-color: var(--accent-line); background: var(--surface2); }
.t-stars { display: flex; gap: 3px; color: var(--cyan); margin-bottom: 18px; }
.t-stars .icon { width: 15px; height: 15px; }
.t-quote { color: var(--muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 26px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: white; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: var(--muted); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } #testimonials { padding: 88px 0; } }

/* TEAM */
#team { padding: 150px 0; background: var(--surface); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; transition: all 0.4s var(--ease); }
.team-card:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.team-img { height: 168px; display: flex; align-items: center; justify-content: center; position: relative; }
.team-initials { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2rem; color: rgba(255,255,255,0.92); letter-spacing: 0.02em; }
.team-body { padding: 22px; }
.team-body h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--cyan); }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } #team { padding: 88px 0; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* PLANS */
#plans { padding: 88px 0; background: var(--bg); }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.plans-grid-3 { grid-template-columns: repeat(3, 1fr); }
.plan-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px; position: relative; overflow: hidden; }
.plan-card.featured { background: linear-gradient(150deg, rgba(27,111,227,0.1), rgba(85,199,245,0.03)); border-color: var(--accent-line); }
.plan-badge { position: absolute; top: 24px; right: 24px; background: var(--cyan); color: var(--bg); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 100px; }
.plan-card .label { margin-bottom: 14px; }
.plan-price { margin-bottom: 8px; }
.plan-price .unit { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-desc { color: var(--muted); font-size: 0.85rem; margin-bottom: 30px; }
.plan-features-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted-dim); text-transform: uppercase; margin-bottom: 14px; }
.plan-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 20px; }
.plan-feature { display: flex; gap: 12px; align-items: flex-start; font-size: 0.87rem; color: var(--muted); }
.plan-feature .icon { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.plan-note { font-size: 0.78rem; color: var(--muted-dim); font-style: italic; margin-bottom: 20px; }

@media (max-width: 1024px) { .plans-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .plans-grid, .plans-grid-3 { grid-template-columns: 1fr; } .plan-card { padding: 34px 28px; } }

/* FAQ */
#faq { padding: 150px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: start; }
.faq-left h2 { margin-bottom: 22px; }
.faq-left p { margin-bottom: 38px; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { background: var(--surface); transition: all 0.3s; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--white); padding: 22px 26px; font-size: 0.94rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Inter', sans-serif; }
.faq-q .faq-icon { color: var(--cyan); transition: transform 0.3s; flex-shrink: 0; width: 18px; height: 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 26px; max-height: 0; overflow: hidden; color: var(--muted); font-size: 0.89rem; line-height: 1.7; transition: all 0.4s ease; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 26px 24px; }
.faq-item.open { background: var(--surface2); }

@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 46px; } #faq { padding: 88px 0; } }

/* CONTACT */
#contact { padding: 150px 0; background: var(--surface); }
.contact-inner { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; position: relative; overflow: hidden; }
.contact-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(27,111,227,0.09), transparent 70%); pointer-events: none; }
.contact-left { position: relative; z-index: 1; }
.contact-left .label { margin-bottom: 16px; }
.contact-left h2 { margin-bottom: 18px; }
.contact-left p { margin-bottom: 38px; font-size: 0.95rem; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-link { display: flex; align-items: center; gap: 14px; color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.contact-link:hover { color: var(--white); }
.contact-link-icon { width: 34px; height: 34px; border-radius: 9px; background: rgba(27,111,227,0.1); color: var(--cyan); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-link-icon .icon { width: 16px; height: 16px; }
.contact-socials { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: all 0.3s var(--ease); }
.social-btn:hover { color: var(--cyan); border-color: var(--accent-line); background: rgba(85,199,245,0.06); }
.social-btn .icon { width: 17px; height: 17px; }

.contact-form { position: relative; z-index: 1; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px; color: var(--white); font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: all 0.3s; resize: none; outline: none; }
.form-input:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,111,227,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-dim); }
.form-input.error, .form-textarea.error { border-color: #e0574a; }
.form-error-msg { font-size: 0.76rem; color: #e0847a; margin-top: 6px; min-height: 1em; }
.form-textarea { height: 112px; }
.form-submit { width: 100%; padding: 17px; background: var(--blue); color: white; border: none; border-radius: var(--radius-sm); font-size: 0.94rem; font-weight: 600; cursor: pointer; transition: all 0.3s var(--ease); font-family: 'Inter', sans-serif; letter-spacing: 0.01em; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover:not(:disabled) { background: var(--blue-soft); box-shadow: 0 18px 36px rgba(27,111,227,0.26); }
.form-submit:disabled { opacity: 0.6; cursor: default; }
.form-note { font-size: 0.76rem; color: var(--muted-dim); margin-top: 14px; text-align: center; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; padding: 42px 28px; gap: 44px; } #contact { padding: 88px 0; } }

/* FOOTER */
footer { padding: 60px 0 36px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand .nav-logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; color: var(--muted); }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.85rem; margin-bottom: 11px; transition: color 0.3s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 28px; font-size: 0.8rem; color: var(--muted-dim); flex-wrap: wrap; gap: 12px; }
.footer-admin-link { color: var(--muted-dim); text-decoration: none; opacity: 0.6; transition: opacity 0.3s; }
.footer-admin-link:hover { opacity: 1; }

@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-brand { grid-column: 1 / -1; } .footer-bottom { flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* SHARED */
.gradient-text { background: linear-gradient(135deg, var(--white), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 60px 60px; mask: radial-gradient(ellipse at 50% 0%, black, transparent 70%); opacity: 0.5; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
