/* =========================================
   7bee SITI - Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --black: #080A0E;
  --dark: #0D1117;
  --dark-2: #131921;
  --dark-3: #1A2332;
  --accent: #F5A623;
  --accent-2: #FF6B2B;
  --amber: #FFBE0B;
  --blue: #0EA5E9;
  --teal: #06B6D4;
  --white: #F7F8FA;
  --gray: #8B95A1;
  --gray-2: #4A5568;
  --border: rgba(255,255,255,0.07);
  --glow: rgba(245, 166, 35, 0.15);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Inner pages (non-hero) get a top padding so content clears the fixed navbar */
body.inner-page {
  padding-top: 72px;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none !important;
  touch-action: none;
  z-index: -1;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 100px 0; }

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8,10,14,0.85);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8,10,14,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--border);
}

.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--amber) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  gap: 6px;
}

.btn-ghost:hover { gap: 12px; }
.btn-ghost svg { transition: var(--transition); }

/* =========================================
   CARDS
   ========================================= */

.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.3);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 20px;
  transition: var(--transition);
}

.card-link:hover { gap: 12px; }

/* =========================================
   HERO SECTION
   ========================================= */

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

/* Hero overrides the generic container to pin content to left */
.hero > .container {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(32px, 6vw, 100px);
  padding-right: 0;
  margin: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(14,165,233,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
  pointer-events: none !important;
  touch-action: none !important;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none !important;
  touch-action: none !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  margin-bottom: 24px;
  line-height: 1.08;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s 0.4s ease both;
}

.stat-item { }

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  height: 600px;
  pointer-events: none;
}

/* =========================================
   HOME-01 — Integrated hero character image
   Right-side, cinematic, fades left into text
   ========================================= */

.hero-img-01 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 62%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-img-01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88) saturate(0.85) contrast(1.05);
  transform: scale(1.04);
  transition: transform 10s ease, filter 1.2s ease;
  animation: heroImgReveal 1.4s 0.3s ease both;
}

@keyframes heroImgReveal {
  from { opacity: 0; transform: scale(1.08); filter: brightness(0.4) saturate(0.5); }
  to   { opacity: 1; transform: scale(1.04); filter: brightness(0.88) saturate(0.85) contrast(1.05); }
}

.hero-img-01__veil {
  position: absolute;
  inset: 0;
  background:
    /* Strong left fade so text stays fully readable */
    linear-gradient(90deg,
      var(--black)              0%,
      rgba(8,10,14,0.96)       10%,
      rgba(8,10,14,0.75)       24%,
      rgba(8,10,14,0.20)       46%,
      rgba(8,10,14,0.05)       65%,
      transparent              82%),
    /* Top fade from nav */
    linear-gradient(180deg,
      rgba(8,10,14,0.75)        0%,
      rgba(8,10,14,0.20)       18%,
      transparent              40%,
      transparent              72%,
      rgba(8,10,14,0.45)       88%,
      var(--dark)             100%),
    /* Right edge vignette */
    linear-gradient(270deg,
      rgba(8,10,14,0.3)         0%,
      transparent              20%);
  pointer-events: none;
  z-index: 1;
}

/* Scanline atmosphere on image */
.hero-img-01__veil::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 3px
  );
  pointer-events: none;
}

/* (vertical line removed — replaced by holographic grid overlay) */

/* =========================================
   HERO TECH FX — HOLOGRAPHIC GRID + HUD
   ========================================= */

/* Holographic grid canvas */
.hero-holo-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: holoIn 1.8s 0.6s ease forwards;
}

@keyframes holoIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Top-left HUD bracket */
.hero-hud-tl {
  position: absolute;
  top: 32px; right: 52px;
  width: 52px; height: 52px;
  border-top: 2px solid rgba(245,166,35,0.7);
  border-right: 2px solid rgba(245,166,35,0.7);
  box-shadow: 4px -4px 14px rgba(245,166,35,0.2);
  z-index: 5;
  opacity: 0;
  animation: hudIn 0.8s 1s ease forwards;
  pointer-events: none !important;
  touch-action: none !important;
}

/* Bottom-right HUD bracket */
.hero-hud-br {
  position: absolute;
  bottom: 32px; left: 52px;
  width: 52px; height: 52px;
  border-bottom: 2px solid rgba(14,165,233,0.6);
  border-left: 2px solid rgba(14,165,233,0.6);
  box-shadow: -4px 4px 14px rgba(14,165,233,0.18);
  z-index: 5;
  opacity: 0;
  animation: hudIn 0.8s 1.1s ease forwards;
  pointer-events: none !important;
  touch-action: none !important;
}

@keyframes hudIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Animated data readout lines (top right area) */
.hero-data-lines {
  position: absolute;
  top: 44px; right: 116px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  animation: hudIn 0.8s 1.3s ease forwards;
  pointer-events: none !important;
  touch-action: none !important;
}

.hdl {
  height: 2px;
  border-radius: 2px;
  background: rgba(245,166,35,0.55);
  animation: hdlPulse 3.5s ease-in-out infinite;
}
.hdl-1 { width: 72px; animation-delay: 0s; }
.hdl-2 { width: 44px; animation-delay: 0.6s; background: rgba(14,165,233,0.55); }
.hdl-3 { width: 58px; animation-delay: 1.2s; }

@keyframes hdlPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Floating status tag bottom-left of image */
.hero-status-tag {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(8,10,14,0.85);
  border: 1px solid rgba(245,166,35,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 100px;
  padding: 8px 20px 8px 14px;
  opacity: 0;
  transform: translateY(12px);
  animation: tagIn 0.9s 1.4s ease forwards;
  pointer-events: none !important;
  touch-action: none !important;
}

@keyframes tagIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-status-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(245,166,35,0.9);
  flex-shrink: 0;
}

.hero-status-tag span:last-child {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* Ambient amber glow orb centered on image */
.hero-glow-orb {
  position: absolute;
  right: 18%;
  top: 40%;
  transform: translate(50%, -50%);
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245,166,35,0.12) 0%,
    rgba(245,166,35,0.04) 40%,
    transparent 70%);
  z-index: 1;
  animation: orbBreath 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbBreath {
  0%, 100% { transform: translate(50%, -50%) scale(1);    opacity: 0.7; }
  50%       { transform: translate(50%, -50%) scale(1.15); opacity: 1;   }
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */

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

.service-feature-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
  position: relative;
}

.service-feature-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.service-feature-card .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

.service-feature-card h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-feature-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.service-feature-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.8rem;
}

.mini-card .mini-icon { font-size: 20px; margin-bottom: 8px; }
.mini-card span { color: var(--gray); display: block; margin-top: 4px; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */

.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none !important;
  touch-action: none !important;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,166,35,0.07) 0%, transparent 60%),
    var(--dark);
  pointer-events: none !important;
  touch-action: none !important;
}

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

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 16px; }

.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info { }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 42px; height: 42px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition);
}

.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B95A1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option { background: var(--dark-2); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.05);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand img { height: 70px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--gray); max-width: 260px; line-height: 1.65; }

/* Footer section titles - orange accent */
.footer-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  pointer-events: none !important;
  touch-action: none !important;
}

/* Keep old h4 for any legacy use */
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

/* Social icons in footer brand */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Social icons – neutral by default, branded color on hover */
.fsocial-link {
  width: 38px;
  height: 38px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}
.fsocial-link svg {
  width: 17px;
  height: 17px;
  transition: var(--transition);
}
/* WhatsApp – green */
.fsocial-link[title="WhatsApp"]:hover {
  color: #25D366;
  border-color: #25D366;
  background: rgba(37,211,102,0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.20);
}
/* Email – sky blue */
.fsocial-link[title="Email"]:hover {
  color: #38bdf8;
  border-color: #38bdf8;
  background: rgba(56,189,248,0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(56,189,248,0.20);
}
/* Facebook – blue */
.fsocial-link[title="Facebook"]:hover {
  color: #1877f2;
  border-color: #1877f2;
  background: rgba(24,119,242,0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(24,119,242,0.22);
}
/* LinkedIn – LinkedIn blue */
.fsocial-link[title="LinkedIn"]:hover {
  color: #0a66c2;
  border-color: #0a66c2;
  background: rgba(10,102,194,0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(10,102,194,0.22);
}
/* Instagram – pink/magenta */
.fsocial-link[title="Instagram"]:hover {
  color: #e1306c;
  border-color: #e1306c;
  background: rgba(225,48,108,0.10);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(225,48,108,0.22);
}

/* Contact column items */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* All contact items neutral by default, accent only on hover */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--dark-2);
  color: var(--gray);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.footer-contact-item:hover {
  border-color: var(--accent);
  background: rgba(245,166,35,0.07);
  transform: translateX(4px);
}

/* WhatsApp contact card – green on hover */
.footer-contact-item.footer-contact-wa:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.07);
}
.footer-contact-item.footer-contact-wa:hover .fci-icon { color: #25D366; }
.footer-contact-item.footer-contact-wa:hover .fci-value { color: #25D366; }

.fci-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gray);
  transition: color 0.15s ease;
}
.footer-contact-item:hover .fci-icon { color: var(--accent); }

.fci-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fci-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-2);
  font-weight: 500;
}
.fci-value {
  font-size: 0.84rem;
  color: var(--light);
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-contact-hours {
  cursor: default;
}
.footer-contact-hours:hover {
  border-color: var(--border);
  background: var(--dark-2);
  transform: none;
}
.footer-contact-hours:hover .fci-icon { color: var(--gray); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p { font-size: 0.82rem; color: var(--gray); }

/* Legacy social-links kept for compat */
.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   UTILITY
   ========================================= */

.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }

.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-header p { font-size: 1rem; color: var(--gray); max-width: 560px; margin-top: 12px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 12px auto 0; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================
   MOBILE NAV OVERLAY
   ========================================= */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray);
  padding: 12px 24px;
  border-radius: 12px;
  transition: var(--transition);
  width: 280px;
  text-align: center;
}

.mobile-nav a:hover { color: var(--accent); background: var(--dark-2); }
.mobile-nav a.cta-mobile { background: var(--accent); color: var(--black); margin-top: 12px; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: var(--gray);
}

/* =========================================
   CHIPS / TAGS
   ========================================= */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.tag.accent { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.25); color: var(--accent); }
.tag.blue { background: rgba(14,165,233,0.1); border-color: rgba(14,165,233,0.25); color: var(--blue); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero > .container { padding-left: clamp(24px, 5vw, 48px); }
  .hero-visual { display: none; }
  .hero-img-01 { width: 70%; }
  .hero-img-01__veil {
    background:
      linear-gradient(90deg,
        var(--black)              0%,
        rgba(8,10,14,0.99)       18%,
        rgba(8,10,14,0.90)       35%,
        rgba(8,10,14,0.50)       55%,
        rgba(8,10,14,0.15)       75%,
        transparent              92%),
      linear-gradient(180deg,
        rgba(8,10,14,0.90) 0%,
        rgba(8,10,14,0.30) 20%,
        transparent 45%,
        transparent 70%,
        rgba(8,10,14,0.60) 88%,
        var(--dark) 100%);
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-feature-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-img-01 { width: 100%; opacity: 0.7; }
  .hero-img-01__veil {
    background:
      linear-gradient(90deg,
        var(--black) 0%,
        rgba(8,10,14,0.97) 30%,
        rgba(8,10,14,0.80) 60%,
        rgba(8,10,14,0.50) 100%),
      linear-gradient(180deg,
        rgba(8,10,14,0.90) 0%,
        rgba(8,10,14,0.30) 20%,
        transparent 45%,
        transparent 70%,
        rgba(8,10,14,0.80) 88%,
        var(--dark) 100%);
  }
  .hero-holo-grid,
  .hero-hud-tl,
  .hero-hud-br,
  .hero-data-lines,
  .hero-status-tag,
  .hero-glow-orb { display: none; }
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .service-feature-card { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* =========================================
   MOBILE TOUCH FIXES
   ========================================= */

/* ---- OVERLAYS DECORATIVOS: nunca bloquear clicks/touches ---- */
body::before,
#circuit-canvas,
.hero-bg,
.hero-grid,
.hero-visual,
.hero-img-01,
.hero-img-01__veil,
.hero-img-01__veil::after,
.hero-holo-grid,
.hero-hud-tl,
.hero-hud-br,
.hero-data-lines,
.hero-glow-orb,
.img-block-01__overlay,
.img-block-01__overlay::before,
.img-block-01__overlay::after,
.img-block-01__frame,
.img-block-01__frame::before,
.img-block-01__frame::after,
.img-block-01__hero-line,
.img-block-02::before,
.img-block-02__bg,
.img-block-02__bg::before,
.img-block-02__bg::after,
.img-block-02__cut,
.scan-line,
.service-feature-card::after,
.cta-banner::before {
  pointer-events: none !important;
  touch-action: none !important;
}

/* ---- HAMBURGER: botón nativo, siempre interactivo ---- */
.nav-hamburger {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  position: relative;
  z-index: 1002;
}

/* ---- CLOSE BUTTON DEL MENÚ MÓVIL ---- */
.mobile-close {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---- TODOS LOS ELEMENTOS INTERACTIVOS ---- */
.btn, button, [role="button"], a,
input, select, textarea, label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ---- MOBILE: z-index stack y tamaños táctiles ---- */
@media (max-width: 768px) {
  .navbar   { z-index: 1000 !important; }
  .mobile-nav { z-index: 1001 !important; }
  .nav-hamburger { display: flex !important; z-index: 1002 !important; }

  .btn {
    min-height: 44px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .wac-fab {
    min-width: 56px;
    min-height: 56px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* scrollTopBtn handled in components.css */

  .footer-col a,
  .footer-social a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Secciones con contenido interactivo por encima de overlays */
}


/* =========================================
   MOBILE TOUCH FIX — CORRECCIÓN DEFINITIVA
   Garantiza que NINGÚN overlay/pseudo-elemento
   bloquee clicks o taps en cualquier dispositivo.
   ========================================= */

/* 1. Todos los ::before y ::after decorativos nunca bloquean */
*::before,
*::after {
  pointer-events: none;
}

/* 2. Restaurar pointer-events en elementos interactivos reales */
a, button, input, select, textarea, label,
[role="button"], [tabindex], summary,
.btn, .nav-logo, .nav-links a, .mobile-nav a,
.nav-hamburger, .mobile-close,
.wac-fab, .wac-close, .wac-send, .wac-input,
.ctab, .footer-social a,
.footer-col a, .footer-contact-item,
.footer-contact-wa, .fsocial-link {
  pointer-events: auto !important;
}

/* 3. NO poner z-index en <a> generales — crea stacking contexts que rompen taps en móvil
   Los links funcionan sin z-index. Solo navbar/mobile-nav necesitan z-index propio. */

/* scrollTopBtn gestionado en components.css — no sobreescribir aqui */

/* 4. Secciones y contenedores de contenido interactivo */
/* 4. Eliminado z-index en secciones de contenido — innecesario y causa superposiciones en móvil */

/* 5. Touch-action correcto en móvil */
@media (max-width: 1024px) {
  a, button, .btn, [role="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(245, 166, 35, 0.15);
    cursor: pointer;
  }

  /* Asegurar que secciones con overlays no bloqueen */
  /* Navbar hamburger siempre visible y funcional */
  .nav-hamburger {
    display: flex !important;
    z-index: 1010 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
  }

  .navbar {
    z-index: 1005 !important;
  }

  .mobile-nav {
    z-index: 1006 !important;
  }

  .mobile-close {
    z-index: 1007 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  /* WhatsApp FAB siempre encima */
  #wa-chat-widget {
    z-index: 1008 !important;
    pointer-events: auto !important;
  }

  .wac-fab {
    z-index: 1009 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }
}


/* =========================================
   FIX DEFINITIVO — PÁGINAS INTERNAS
   Eleva el container de los hero en páginas
   internas por encima de todos los overlays.
   ========================================= */

/* El container principal de cada página siempre por encima */
.page-hero .container,
.dev-hero .container,
.page-hero > .container {
  position: relative !important;
  z-index: 20 !important;
}

/* hero-split z-index:20 removed — no stacking context needed */

/* btn-group en secciones finales (CTA banners) */
/* .btn-group z-index removed — no stacking context needed */

/* section link z-index removed — caused tap blocking in mobile */
