/*
Theme Name: Borg IT Theme
Theme URI: https://borg.com.hr
Author: Borg d.o.o.
Description: Futuristic SaaS-style dark theme for Borg IT Solutions
Version: 3.0.0
Text Domain: borg-theme
*/

/* ============================================================
   IMPORTS & VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg:          #050505;
  --bg-1:        #0a0a0f;
  --bg-2:        #0f0f1a;
  --cyan:        #00ffcc;
  --cyan-dim:    rgba(0,255,204,.15);
  --cyan-glow:   rgba(0,255,204,.08);
  --purple:      #8800ff;
  --purple-dim:  rgba(136,0,255,.15);
  --purple-glow: rgba(136,0,255,.08);
  --text:        #f0f0f0;
  --text-muted:  #888;
  --glass-bg:    rgba(255,255,255,.04);
  --glass-border:rgba(255,255,255,.08);
  --glass-hover: rgba(255,255,255,.07);
  --radius:      12px;
  --radius-lg:   20px;
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
#vanta-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-wrap {
  position: relative;
  z-index: 1;
}

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

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--cyan-dim);
  border-radius: 100px;
  background: var(--cyan-glow);
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.glow-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  margin: 24px auto;
  border-radius: 2px;
  box-shadow: 0 0 16px var(--cyan);
}

/* ============================================================
   GRADIENT TEXT
   ============================================================ */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; stroke-width: 2; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  box-shadow: 0 0 30px rgba(0,255,204,.3);
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0,255,204,.5);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan-dim);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-dim);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.site-logo:hover { color: var(--text); }

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
  box-shadow: 0 0 20px var(--cyan-dim);
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.6));
  transition: filter 0.3s ease;
}
.logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(0, 255, 204, 0.9));
}

.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.logo-sub  { display: block; font-size: .7rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--cyan);
  background: var(--cyan-glow);
}

.nav-cta a {
  background: linear-gradient(135deg, var(--cyan), var(--purple)) !important;
  color: #000 !important;
  padding: 10px 20px !important;
  box-shadow: 0 0 20px var(--cyan-dim);
}
.nav-cta a:hover {
  box-shadow: 0 0 30px rgba(0,255,204,.4) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(136,0,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,255,204,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--cyan-dim);
  border-radius: 100px;
  background: var(--cyan-glow);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .line1 { display: block; color: var(--text); }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.hero-stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero Visual — animated rings */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 480px;
}

.hero-orb {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: orbit linear infinite;
}

.hero-ring-1 {
  inset: 0;
  border-color: rgba(0,255,204,.3);
  box-shadow: 0 0 20px rgba(0,255,204,.1), inset 0 0 20px rgba(0,255,204,.05);
  animation-duration: 8s;
}
.hero-ring-2 {
  inset: -40px;
  border-color: rgba(136,0,255,.25);
  box-shadow: 0 0 30px rgba(136,0,255,.1);
  animation-duration: 14s;
  animation-direction: reverse;
}
.hero-ring-3 {
  inset: -80px;
  border-color: rgba(0,255,204,.1);
  animation-duration: 20s;
}

.hero-core {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,255,204,.15), rgba(136,0,255,.1), transparent);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,204,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(0,255,204,.15),
    0 0 120px rgba(136,0,255,.1),
    inset 0 0 40px rgba(0,255,204,.05);
}

.hero-core-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--cyan));
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: -80px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: float-particle linear infinite;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes float-particle {
  0%   { transform: translateY(0) scale(1); opacity: .8; }
  50%  { transform: translateY(-20px) scale(1.2); opacity: .4; }
  100% { transform: translateY(0) scale(1); opacity: .8; }
}

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

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(0,255,204,.2);
  box-shadow:
    0 0 40px rgba(0,255,204,.06),
    0 20px 60px rgba(0,0,0,.3);
  transform: translateY(-4px);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px var(--cyan));
}
.card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.stat-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--glass-border);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.badge {
  padding: 8px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--glass-bg);
  transition: var(--transition);
}
.badge:hover {
  border-color: var(--cyan-dim);
  color: var(--cyan);
  background: var(--cyan-glow);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.feature-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item p { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(136,0,255,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,255,204,.08) 0%, transparent 60%);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.cta-strip-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-strip-inner p { color: var(--text-muted); max-width: 480px; }

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
}

.cic-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 6px var(--cyan));
  flex-shrink: 0;
}
.cic-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.contact-info-card h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text);
  font-size: 1rem;
}

.contact-form-wrap { padding: 40px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-inner h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-inner .form-subtitle {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,255,204,.4);
  background: rgba(0,255,204,.03);
  box-shadow: 0 0 0 3px rgba(0,255,204,.06);
}

.form-group select option { background: #0f0f1a; }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 500;
}
.form-alert.success { background: rgba(0,255,100,.08); border: 1px solid rgba(0,255,100,.2); color: #00ff64; }
.form-alert.error   { background: rgba(255,50,50,.08);  border: 1px solid rgba(255,50,50,.2);  color: #ff5050; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.footer-logo:hover { color: var(--text); }

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #000;
  font-size: 1.3rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.logo-tag  { display: block; font-size: .7rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { color: var(--text-muted); font-size: .9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--cyan); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: .9rem;
}

.fi-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.fi-icon svg { width: 16px; height: 16px; stroke: var(--cyan); stroke-width: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright { color: var(--text-muted); font-size: .85rem; }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  font-size: .85rem;
}
.footer-bottom-links a:hover { color: var(--cyan); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal        { transform: translateY(30px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger-children.revealed > * { opacity: 1; transform: none; }

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services page */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-item {
  padding: 40px;
}

.service-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-item-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.service-item-icon svg { width: 26px; height: 26px; stroke: var(--cyan); stroke-width: 1.5; }

.service-item h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}

.service-item p { color: var(--text-muted); line-height: 1.8; }

.service-item ul {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item ul li {
  color: var(--text-muted);
  font-size: .9rem;
  padding-left: 20px;
  position: relative;
}

.service-item ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* About page */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  text-align: center;
}

.value-card .v-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 8px var(--cyan)); }
.value-card .v-icon svg { width: 36px; height: 36px; stroke: var(--cyan); stroke-width: 1.5; }
.value-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.value-card p  { color: var(--text-muted); font-size: .9rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual      { display: none; }
  .hero-orb         { width: 200px; height: 200px; }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-strip-inner  { flex-direction: column; text-align: center; }
  .services-list    { grid-template-columns: 1fr; }
  .about-hero-grid  { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 767px) {
  /* Replace Vanta.js animated background with static gradient to save battery */
  #vanta-bg {
    background: radial-gradient(ellipse at 20% 50%, rgba(0,255,204,.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(136,0,255,.06) 0%, transparent 60%),
                #050505;
  }
  #vanta-bg canvas { display: none; }

  /* Stop all heavy animations */
  .hero-ring        { animation: none; }
  .particle         { animation: none; }
  .futuristic-title { animation: none; background-position: 0 center; }

  /* Simplify orb glows */
  .hero-ring-1 { border-color: rgba(0,255,204,.2); box-shadow: none; }
  .hero-ring-2 { border-color: rgba(136,0,255,.15); box-shadow: none; }
  .hero-ring-3 { border-color: rgba(0,255,204,.08); box-shadow: none; }
  .hero-core   { -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; }
}

@media (max-width: 768px) {
  .section          { padding: 64px 0; }
  .hero-inner       { gap: 32px; }
  .hero-stats       { gap: 24px; }
  .hero-buttons     { flex-direction: column; }
  .btn-lg           { width: 100%; justify-content: center; }
  .services-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-card + .stat-card::before { display: none; }
  .contact-layout   { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .values-grid      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .menu-toggle      { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: var(--transition);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul   { flex-direction: column; align-items: center; gap: 8px; }
  .main-nav a    { font-size: 1.3rem; padding: 12px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--glass-border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { color: var(--text-muted); line-height: 1.8; margin: 0 0 1rem 1.5rem; }
.legal-content a  { color: var(--cyan); text-decoration: underline; }
.legal-content a:hover { color: var(--text); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: .9rem;
}
.cookie-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--glass-bg);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--glass-border);
}
.cookie-table td {
  padding: 10px 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
}

/* ============================================================
   GLASSMORPHISM & GLOW EFEKTI
   ============================================================ */
.borg-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.borg-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
  transform: translateY(-5px);
}

.futuristic-title {
  background: linear-gradient(90deg, #fff, #00ffcc, #8800ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}
