/* ═══════════════════════════════════════════════
   7tech — Ultra-Modern Disruptive Design System
   ═══════════════════════════════════════════════ */

:root {
  /* Colors */
  --bg-dark:       #050508;
  --bg-card:       rgba(15, 15, 23, 0.65);
  --bg-card-hover: rgba(22, 22, 35, 0.85);
  --border-glass:  rgba(255, 255, 255, 0.08);
  --border-neon:   rgba(0, 240, 255, 0.3);
  
  --cyan-electric: #00F0FF;
  --purple-neon:   #8A2BE2;
  --blue-glow:     #3B82F6;
  
  --text-main:     #FAFAFA;
  --text-muted:    #94A3B8;
  --text-dim:      #64748B;

  /* Typography */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Dimensions */
  --max-w: 1240px;
  --header-h: 80px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  /* Animation Easing */
  --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-dark);
}

/* ═══ CANVAS & BACKGROUND ANIMATIONS ═══ */
#cyber-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.ambient-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  animation: orbFloat 18s ease-in-out infinite alternate;
}

.orb-cyan {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--cyan-electric) 0%, transparent 70%);
}

.orb-purple {
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, var(--purple-neon) 0%, transparent 70%);
  animation-delay: -9s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.15); }
  100% { transform: translate(-50px, 150px) scale(0.95); }
}

/* Container */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 2;
}

/* ═══ BUTTONS DISRUPTIVOS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan-electric) 0%, #00B4D8 100%);
  color: #030712;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(138, 43, 226, 0.3);
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-electric), var(--purple-neon), var(--cyan-electric));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
  filter: blur(8px);
}

.btn-glow:hover::after {
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan-electric);
  color: #FFF;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-icon, .btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon, .btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══ HEADER GLASS ═══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 8, 0.92);
  border-bottom-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan-electric), var(--purple-neon));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: #000;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
}

.logo-dot {
  color: var(--cyan-electric);
}

.nav-list {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-electric);
  margin-right: 4px;
}

.nav-link:hover {
  color: #FFF;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan-electric);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--cyan-electric);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-electric);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s ease;
}

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.pill-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--purple-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple-neon);
}

.pill-text {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cyan-electric);
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFF;
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  color: var(--cyan-electric);
}

.hero-gradient-text {
  display: block;
  background: linear-gradient(135deg, #FFF 0%, var(--cyan-electric) 50%, var(--purple-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.1;
}

.metric-lbl {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* 3D Visual Frame Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.15);
  transition: transform 0.5s var(--ease-smooth);
}

.visual-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
  animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: scale 0.5s ease;
}

.visual-frame:hover .hero-img {
  scale: 1.04;
}

.hologram-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hologram-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  background: rgba(5, 5, 8, 0.75);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--cyan-electric);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.tag-bottom {
  align-self: flex-end;
  border-color: rgba(138, 43, 226, 0.4);
  color: #C084FC;
}

/* ═══ MARQUEE TICKER ═══ */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-y: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  display: flex;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.ticker-move {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.ticker-star {
  color: var(--cyan-electric);
}

/* ═══ SERVICIOS GRID ═══ */
.services {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.badge-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan-electric);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #FFF;
  margin-bottom: 1.25rem;
}

.title-highlight {
  background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--purple-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.15);
  background: var(--bg-card-hover);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .card-img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-electric);
  background: rgba(5, 5, 8, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}

.card-text strong {
  color: #FFF;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.tech-pills li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cyan-electric);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
}

/* ═══ POR QUÉ 7TECH ═══ */
.why-section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.35rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Cyber Window Code Editor */
.cyber-window {
  background: rgba(10, 10, 18, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(138, 43, 226, 0.2);
}

.window-header {
  background: rgba(20, 20, 32, 0.8);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-right: 1.25rem;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF5F56;
}

.window-dots span:nth-child(2) { background: #FFBD2E; }
.window-dots span:nth-child(3) { background: #27C93F; }

.window-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.window-body {
  padding: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.8;
}

.code-line {
  color: var(--text-muted);
}

.c-purple { color: #C084FC; }
.c-cyan   { color: var(--cyan-electric); }
.c-yellow { color: #FACC15; }
.c-comment{ color: var(--text-dim); font-style: italic; }

.code-output {
  margin-top: 1.5rem;
  padding: 0.85rem 1.1rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 8px;
  color: var(--cyan-electric);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.output-icon {
  color: #4ADE80;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: 6rem 0 8rem;
  position: relative;
  z-index: 2;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 15, 25, 0.9) 0%, rgba(25, 15, 40, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 240, 255, 0.2);
}

.cta-bg-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #FFF;
  margin: 1rem 0 1.25rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

/* ═══ FOOTER ═══ */
.site-footer {
  background: rgba(3, 3, 5, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-head {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--cyan-electric);
}

.newsletter-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.cyber-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.cyber-input:focus {
  border-color: var(--cyan-electric);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--cyan-electric);
  color: #000;
  box-shadow: 0 0 15px var(--cyan-electric);
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header-actions .status-badge,
  .header-actions .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
