/* ===== FOUNDATION ===== */
:root {
  --bg-deep: #050510;
  --bg-surface: rgba(10, 10, 30, 0.7);
  --bg-card: rgba(14, 14, 35, 0.85);
  --bg-sidebar: rgba(8, 8, 22, 0.95);
  --neon-cyan: #00e5ff;
  --neon-purple: #c840e9;
  --neon-cyan-dim: rgba(0, 229, 255, 0.15);
  --neon-purple-dim: rgba(200, 64, 233, 0.12);
  --border-glow: rgba(0, 229, 255, 0.2);
  --text-primary: #e4e6f0;
  --text-secondary: #8890b5;
  --text-dim: #555b75;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle animated grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

@keyframes gridShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}

/* ===== SHELL LAYOUT ===== */
.shell {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 0 0 260px;
  padding: 28px 22px;
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border-glow);
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Logo */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 4px 0;
}

.sidebar-logo .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3), 0 0 40px rgba(200, 64, 233, 0.2);
  flex-shrink: 0;
}

.sidebar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sidebar-logo .logo-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.sidebar-logo .logo-tag {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Side Navigation */
.sidenav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidenav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  letter-spacing: 0.1px;
}

.sidenav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--neon-cyan);
  border-radius: 0 3px 3px 0;
  transition: height var(--transition-smooth);
  box-shadow: 0 0 8px var(--neon-cyan);
}

.sidenav a:hover,
.sidenav a.active {
  color: var(--neon-cyan);
  background: var(--neon-cyan-dim);
}

.sidenav a:hover::before,
.sidenav a.active::before {
  height: 20px;
}

.sidenav a svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.sidenav a:hover svg,
.sidenav a.active svg {
  opacity: 1;
}

.sidenav .nav-divider {
  height: 1px;
  background: var(--border-glow);
  margin: 8px 4px;
}

.sidenav .nav-cta {
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(200,64,233,0.1));
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--neon-cyan) !important;
  font-weight: 600;
  margin-top: 4px;
}

.sidenav .nav-cta:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
  background: linear-gradient(135deg, rgba(0,229,255,0.18), rgba(200,64,233,0.14));
}

/* Sidebar social */
.sidebar-social {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.sidebar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.sidebar-social a:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

/* ===== CONTENT COLUMN ===== */
.content-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

/* ===== HEADER ===== */
.content-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--neon-cyan);
}

.header-phone svg {
  color: var(--neon-cyan);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
}

.header-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.header-btn {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.header-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

.header-btn.primary {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(200,64,233,0.12));
  border-color: var(--neon-purple);
  color: var(--text-primary);
}

.header-btn.primary:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(200, 64, 233, 0.2);
}

/* ===== MAIN ===== */
main {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SECTIONS ===== */
.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(0,229,255,0.3), transparent);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HERO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.05);
  width: fit-content;
  letter-spacing: 0.3px;
}

.hero-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--neon-cyan), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  letter-spacing: 0.1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), #0098b3);
  color: #050510;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0, 229, 255, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 60%, rgba(5,5,16,0.5));
  pointer-events: none;
}

/* Neon frame around hero image */
.hero-neon-frame {
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow:
    0 0 10px rgba(0, 229, 255, 0.1),
    inset 0 0 10px rgba(0, 229, 255, 0.05);
  pointer-events: none;
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { border-color: rgba(0, 229, 255, 0.15); }
  50% { border-color: rgba(0, 229, 255, 0.35); }
}

/* Floating decor elements */
.hero-floating {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-floating.f1 {
  width: 12px; height: 12px;
  background: var(--neon-cyan);
  top: 15%; right: -6px;
  box-shadow: 0 0 16px var(--neon-cyan), 0 0 32px rgba(0,229,255,0.4);
  animation: floatVert 5s ease-in-out infinite;
}

.hero-floating.f2 {
  width: 8px; height: 8px;
  background: var(--neon-purple);
  bottom: 25%; left: -4px;
  box-shadow: 0 0 12px var(--neon-purple);
  animation: floatVert 4s ease-in-out 1s infinite;
}

@keyframes floatVert {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition-smooth);
}

.stat-card:hover {
  border-color: var(--border-glow);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

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

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--transition-fast);
}

.highlight-item:hover {
  border-color: var(--border-glow);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon-cyan);
}

.highlight-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.highlight-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(200, 64, 233, 0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(200,64,233,0.05));
}

.service-card.featured .service-badge {
  background: rgba(200, 64, 233, 0.15);
  color: #d47fff;
  border: 1px solid rgba(200, 64, 233, 0.3);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.service-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.service-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: -0.5px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.service-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-all;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-card);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,229,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  position: relative;
}

.cta-section .btn-primary {
  position: relative;
  font-size: 16px;
  padding: 15px 36px;
}

/* ===== FOOTER ===== */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.footer-info {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .shell {
    flex-direction: column;
  }

  .sidebar {
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 18px;
    gap: 14px;
    position: sticky;
    top: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border-glow);
    z-index: 100;
  }

  .sidebar-logo .logo-tag {
    display: none;
  }

  .sidenav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px;
  }

  .sidenav a {
    padding: 8px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .sidenav a::before {
    display: none;
  }

  .sidenav .nav-divider {
    display: none;
  }

  .sidebar-social {
    display: none;
  }

  .content-header {
    padding: 12px 20px;
    justify-content: center;
  }

  main {
    padding: 0 20px;
  }

  .section {
    padding: 36px 0;
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 32px 20px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.6s ease forwards;
}

/* Neon line divider */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.3;
  width: 100%;
}
