/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #080c14;
  --bg-2: #0d1320;
  --bg-3: #111827;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.13);
  --accent: #00e5a0;
  --accent-dim: rgba(0,229,160,0.12);
  --accent-glow: rgba(0,229,160,0.25);
  --blue: #3d8bff;
  --blue-dim: rgba(61,139,255,0.12);
  --text: #e8edf5;
  --text-muted: #7a8899;
  --text-dim: #4a5568;
  --white: #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
  --section-gap: 100px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }
input, textarea, select { font-family: var(--font-body); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section-divider { height: 1px; background: var(--border); margin: 0 24px; max-width: 1160px; margin-left: auto; margin-right: auto; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8,12,20,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(8,12,20,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 0 20px var(--accent-glow);
}
.logo-text { color: var(--white); }
.logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.btn-nav {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 30px var(--accent-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text-muted); font-size: 15px; }
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-bright);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.btn-large { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  gap: 60px;
  padding-left: calc((100vw - 1160px) / 2 + 24px);
  padding-right: calc((100vw - 1160px) / 2 + 24px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,160,0.15), transparent 70%);
  top: -100px; right: 10%;
  animation: float1 8s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(61,139,255,0.1), transparent 70%);
  bottom: 10%; left: 5%;
  animation: float2 10s ease-in-out infinite;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,229,160,0.08), transparent 70%);
  top: 40%; left: 40%;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }

.hero-content {
  position: relative;
  flex: 1;
  min-width: 0;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .accent-line {
  background: linear-gradient(90deg, var(--accent), #00c4e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border-bright); }

.hero-visual {
  position: relative;
  flex-shrink: 0;
  width: 480px;
}

/* Terminal */
.terminal-window {
  background: var(--bg-2);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,229,160,0.05);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}
.tb { width: 12px; height: 12px; border-radius: 50%; }
.tb.red { background: #ff5f57; }
.tb.yellow { background: #febc2e; }
.tb.green { background: #28c840; }
.tb-title { margin-left: 8px; font-size: 12px; color: var(--text-dim); font-family: 'SF Mono', 'Fira Code', monospace; }
.terminal-body {
  padding: 20px 22px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 13px;
  line-height: 1.8;
  min-height: 280px;
  color: #adbac7;
}
.t-prompt { color: var(--accent); }
.t-cmd { color: #e8edf5; }
.t-out { color: #7a8899; }
.t-green { color: #28c840; }
.t-blue { color: var(--blue); }
.t-yellow { color: #febc2e; }
.t-cursor {
  display: inline-block;
  width: 8px; height: 15px;
  background: var(--accent);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ===== MARQUEE ===== */
.marquee-strip {
  padding: 16px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee-track .sep { color: var(--accent); font-size: 10px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ===== SERVICES GRID (Home) ===== */
.services-overview { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.service-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.service-card:hover { border-color: rgba(0,229,160,0.25); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }

.featured-card {
  background: linear-gradient(135deg, rgba(0,229,160,0.08) 0%, var(--bg-2) 60%);
  border-color: rgba(0,229,160,0.2);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,229,160,0.15);
}
.service-icon svg { width: 22px; height: 22px; color: var(--accent); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.card-arrow {
  font-size: 18px;
  color: var(--accent);
  margin-top: 8px;
  transition: transform 0.2s;
}
.service-card:hover .card-arrow { transform: translateX(4px); }

.section-cta { text-align: center; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-left { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.why-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 28px;
  padding-top: 3px;
}
.why-content h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== TECH SECTION ===== */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tech-cat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.tech-cat-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.2s;
}
.pill:hover { background: var(--accent-dim); border-color: rgba(0,229,160,0.3); color: var(--accent); }

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta {
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,160,0.08), transparent 70%);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-band-text p { font-size: 15px; color: var(--text-muted); }
.cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}
.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICE TABS ===== */
.service-tabs-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(8,12,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.service-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.stab {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.stab:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.stab.active { color: var(--accent); background: var(--accent-dim); border-color: rgba(0,229,160,0.2); }

/* ===== SERVICE SECTIONS ===== */
.service-section { scroll-margin-top: calc(var(--nav-h) + 60px); }
.srv-header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.srv-icon-large {
  width: 72px; height: 72px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.srv-icon-large svg { width: 32px; height: 32px; color: var(--accent); }

.srv-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.srv-feature {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.srv-feature:hover { border-color: var(--border-bright); }
.srv-feat-icon { font-size: 22px; margin-bottom: 12px; }
.srv-feature h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.srv-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Plans */
.srv-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.2s;
}
.plan-card:hover { border-color: var(--border-bright); }
.plan-featured {
  border-color: rgba(0,229,160,0.3);
  background: linear-gradient(135deg, rgba(0,229,160,0.06) 0%, var(--bg-2) 60%);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.plan-price {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.plan-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text-muted); }

/* Dual service */
.dual-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dual-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dual-card-accent {
  border-color: rgba(0,229,160,0.2);
  background: linear-gradient(135deg, rgba(0,229,160,0.05) 0%, var(--bg-2) 60%);
}
.dual-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.dual-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* VPS */
.vps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vps-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  transition: all 0.25s;
}
.vps-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.vps-featured { border-color: rgba(0,229,160,0.3); background: linear-gradient(135deg, rgba(0,229,160,0.07) 0%, var(--bg-2) 60%); }
.vps-tier {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vps-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.spec-key { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.vps-price {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
}
.vps-price span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

/* Managed */
.managed-list { display: flex; flex-direction: column; gap: 0; }
.managed-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.managed-item:last-child { border-bottom: none; }
.mi-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: rgba(0,229,160,0.15);
  line-height: 1;
  min-width: 50px;
}
.mi-content { flex: 1; }
.mi-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.mi-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.mi-tags { display: flex; flex-wrap: wrap; gap: 8px; min-width: 180px; justify-content: flex-end; }
.mi-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

/* Linux grid */
.linux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.linux-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s;
}
.linux-card:hover { border-color: var(--border-bright); }
.linux-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.linux-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Virt platforms */
.virt-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.virt-platform {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s;
}
.virt-platform:hover { border-color: rgba(0,229,160,0.2); }
.vp-logo {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.virt-platform h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.virt-platform p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.vp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vp-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

/* Panels */
.panels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.panel-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.25s;
}
.panel-card:hover { border-color: rgba(0,229,160,0.2); transform: translateY(-4px); }
.panel-logo {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.panel-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* DevOps */
.devops-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.devops-track {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.devops-track h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.devops-items { display: flex; flex-direction: column; gap: 24px; }
.di { display: flex; gap: 16px; }
.di-icon { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.di strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.di p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== SOLUTIONS PAGE ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.solution-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}
.solution-card:hover { border-color: rgba(0,229,160,0.2); }
.sol-full { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
.sol-full .sol-includes { flex: 1; }
.sol-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.solution-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.solution-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.sol-includes { display: flex; flex-wrap: wrap; gap: 8px; }
.sol-includes span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

/* Process */
.process-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.ps-num {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 2px solid rgba(0,229,160,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}
.ps-connector {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: var(--border-bright);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-intro { }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.about-metric {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-metric:nth-child(1) { border-radius: 16px 0 0 0; }
.about-metric:nth-child(2) { border-radius: 0 16px 0 0; }
.about-metric:nth-child(5) { border-radius: 0 0 0 16px; }
.about-metric:nth-child(6) { border-radius: 0 0 16px 0; }
.am-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.am-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.05em; }

.values-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.value-card:hover { border-color: rgba(0,229,160,0.2); }
.val-icon { font-size: 28px; }
.value-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: all 0.25s;
}
.team-card:hover { border-color: rgba(0,229,160,0.2); transform: translateY(-4px); }
.team-avatar {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), #00c4e8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  margin: 0 auto 4px;
}
.team-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.team-role { font-size: 12px; color: var(--accent); }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.team-skills span {
  padding: 3px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 11px;
  color: var(--text-dim);
}

/* ===== CONTACT PAGE ===== */
.contact-section { }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 0; }
.contact-info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-of-type { border-bottom: none; }
.cib-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.contact-info-block h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-block a {
  font-size: 15px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.contact-info-block p { font-size: 13px; color: var(--text-muted); }

.response-times {
  margin-top: 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.response-times h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.rt-item:last-child { border-bottom: none; }
.rt-item span { font-size: 14px; color: var(--text-muted); }
.rt-time {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent) !important;
}

.contact-form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,229,160,0.4); background: rgba(0,229,160,0.03); }
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  padding: 14px 20px;
  background: rgba(0,229,160,0.1);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding: calc(var(--nav-h) + 60px) 24px 80px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .tech-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .vps-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-features-grid { grid-template-columns: repeat(2, 1fr); }
  .virt-platforms { grid-template-columns: 1fr; }
  .devops-tracks { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ps-connector { display: none; }
  .solutions-grid { grid-template-columns: 1fr; }
  .sol-full { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .srv-header { flex-direction: column; }
  .srv-features-grid { grid-template-columns: 1fr; }
  .srv-plans { grid-template-columns: 1fr; }
  .dual-service { grid-template-columns: 1fr; }
  .vps-grid { grid-template-columns: 1fr; }
  .linux-grid { grid-template-columns: 1fr; }
  .panels-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .managed-item { flex-direction: column; gap: 16px; }
  .mi-tags { justify-content: flex-start; }
  .about-metrics { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .process-steps { grid-template-columns: 1fr; }
}
/* ===== REVIEWS SECTION ===== */
.reviews-section { background: var(--bg-1); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: rgba(0,229,160,0.25); transform: translateY(-2px); }
.review-stars { font-size: 18px; color: #f59e0b; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(0,229,160,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--accent);
  flex-shrink: 0; text-transform: uppercase;
}
.review-info { display: flex; flex-direction: column; gap: 2px; }
.review-info strong { font-size: 14px; color: var(--white); font-weight: 600; }
.review-info span { font-size: 12px; color: var(--text-dim); display: block; }
.review-service-tag {
  display: inline-block; margin-top: 4px;
  padding: 2px 8px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 10px; color: var(--text-dim); font-style: normal;
}
.review-stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 32px;
  flex-wrap: wrap;
}
.rsb-stat { text-align: center; padding: 0 40px; }
.rsb-num { display: block; font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--accent); }
.rsb-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; display: block; }
.rsb-divider { width: 1px; height: 60px; background: var(--border); }
.review-submit-cta {
  text-align: center; padding: 24px;
  background: rgba(0,229,160,0.04); border: 1px dashed rgba(0,229,160,0.2);
  border-radius: var(--radius-lg);
}
.review-submit-cta p { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .rsb-stat { padding: 16px 20px; }
  .rsb-divider { width: 60px; height: 1px; }
  .review-stats-bar { flex-direction: column; }
}
