/* THE LINK GROUP — Startup redesign : animations + expressif */

:root {
  --blue: #3597D4;
  --blue-dark: #1E7AB8;
  --blue-bright: #5BB8E8;
  --blue-light: #E8F4FC;
  --blue-soft: #F0F7FC;
  --navy: #1E293B;
  --text: #334155;
  --text-soft: #64748B;
  --gray-light: #F8FAFC;
  --white: #FFFFFF;
  --green: #10B981;
  --wa: #25D366;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(53, 151, 212, 0.10);
  --shadow-lg: 0 16px 48px rgba(53, 151, 212, 0.16);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 22px; }

/* Ambient glow */
.bg-glow {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(91, 184, 232, 0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.reveal-delay.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(53, 151, 212, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(53, 151, 212, 0.45);
}
.btn-glow {
  animation: btnGlow 2.5s ease-in-out infinite;
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(53, 151, 212, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(53, 151, 212, 0.55); }
}
.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.btn-whatsapp {
  background: var(--wa);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(53, 151, 212, 0.08);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s;
  border: none;
}
.logo:hover .logo-img { transform: scale(1.06) rotate(-3deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav { display: flex; gap: 26px; }
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 2px;
}
.header-cta { padding: 9px 18px; font-size: 13.5px; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  width: 22px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* ========== HERO STARTUP ========== */
.hero {
  position: relative;
  z-index: 1;
  padding: 140px 0 50px;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(91, 184, 232, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 5% 90%, rgba(53, 151, 212, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  justify-items: start;
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.hero-content {
  text-align: left;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-light), #DBEAFE);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 16px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 10px;
  line-height: 1.65;
}
.hero-subtitle + .hero-subtitle {
  margin-bottom: 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

/* Visual card - corridor illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.visual-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(53, 151, 212, 0.1);
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.visual-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.visual-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px 0;
}
.route-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.route-point .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(53, 151, 212, 0.2);
}
.route-point.end .dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.route-point .label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.route-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 3px;
  position: relative;
  margin: 0 4px 18px;
}
.route-truck {
  position: absolute;
  top: -14px;
  left: 0;
  font-size: 20px;
  animation: truckMove 3.5s ease-in-out infinite;
}
@keyframes truckMove {
  0% { left: 0; }
  50% { left: calc(100% - 24px); }
  100% { left: 0; }
}
.visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: var(--blue-soft);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.visual-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
}
.visual-metrics span {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(53, 151, 212, 0.1);
  z-index: 3;
  animation: floatY 3.5s ease-in-out infinite;
}
.float-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-2 { bottom: 18%; right: -6%; animation-delay: 1.2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  background: white;
  border-top: 1px solid #F1F5F9;
  border-bottom: 1px solid #F1F5F9;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.stat-item span {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

/* Sections */
.section { position: relative; z-index: 1; padding: 60px 0; }
.section-header.compact { text-align: center; margin-bottom: 36px; }
.section-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.section-header.compact h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.section-header.compact p { font-size: 15px; color: var(--text-soft); }

/* Service buttons */
.service-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-btn {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-btn:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-btn:hover::before { transform: scaleX(1); }
.service-btn-icon {
  font-size: 30px;
  margin-bottom: 12px;
  transition: transform 0.3s;
}
.service-btn:hover .service-btn-icon { transform: scale(1.15); }
.service-btn-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.service-btn-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  flex: 1;
  line-height: 1.45;
}
.service-btn-arrow {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 18px;
  color: var(--blue);
  opacity: 0.4;
  transition: all 0.25s;
}
.service-btn:hover .service-btn-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* Filiales */
.filiales { background: var(--gray-light); }
.filiales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.filiale-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(53, 151, 212, 0.06);
  transition: all 0.3s ease;
}
.filiale-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.filiale-logo-wrap {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.filiale-logo-bo { background: linear-gradient(145deg, #0f0f0f, #1a1a1a); }
.filiale-logo-rca { background: linear-gradient(145deg, #ffffff, #f1f5f9); }
.filiale-logo-tv { background: linear-gradient(145deg, #f1f5f9, #e2e8f0); }
.filiale-logo { max-height: 95px; max-width: 88%; object-fit: contain; }
.filiale-content { padding: 22px 24px 26px; }
.filiale-type {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.filiale-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  margin: 6px 0 10px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.filiale-content p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.55;
}

/* CTA */
.contact-cta-section { padding: 40px 0 56px; }
.contact-cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, #0369A1 50%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(53, 151, 212, 0.35);
  position: relative;
  overflow: hidden;
}
.contact-cta-box::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -60px; right: -40px;
}
.contact-cta-box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.contact-cta-box p { opacity: 0.92; font-size: 15px; }
.contact-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* Inner pages (shared) */
.page-content { padding: 130px 0 60px; position: relative; z-index: 1; }
.page-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-header p { color: var(--text-soft); font-size: 16px; }
.service-detail {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(53, 151, 212, 0.06);
  transition: box-shadow 0.25s;
}
.service-detail:hover { box-shadow: var(--shadow); }
.service-detail h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-detail > p { font-size: 15px; color: var(--text-soft); margin-bottom: 14px; }
.service-detail li {
  font-size: 14.5px;
  color: var(--text);
  padding: 6px 0 6px 18px;
  position: relative;
}
.service-detail ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.numbered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 28px;
}
.numbered-list li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-display);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}
.detail-grid h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.compare-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.compare-bad-mini, .compare-good-mini {
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}
.compare-bad-mini { background: #FEF2F2; }
.compare-good-mini { background: #ECFDF5; }
.compare-bad-mini strong { color: #DC2626; display: block; margin-bottom: 4px; font-family: var(--font-display); }
.compare-good-mini strong { color: var(--green); display: block; margin-bottom: 4px; font-family: var(--font-display); }
.compare-mini p { font-size: 13px; color: var(--text-soft); margin: 0; }
.page-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.about-content { max-width: 780px; margin: 0 auto; }
.about-content .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--navy);
  font-family: var(--font-display);
}
.about-content p { font-size: 15.5px; color: var(--text-soft); margin-bottom: 14px; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 18px;
  color: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(53, 151, 212, 0.08);
  transition: transform 0.25s;
}
.why-card:hover { transform: translateY(-3px); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.why-card p { font-size: 13.5px; color: var(--text-soft); margin: 0; }
.competences li {
  font-size: 14.5px;
  color: var(--text);
  padding: 7px 0 7px 20px;
  position: relative;
}
.competences li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.contact-card-large {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: all 0.25s;
}
.contact-card-large:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.contact-card-large h3 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.contact-card-large p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--navy);
}
.contact-card-large a:hover { color: var(--blue); }
.diagnostic-box-mini {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(53, 151, 212, 0.28);
}
.diagnostic-box-mini h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.diagnostic-box-mini p { opacity: 0.92; margin-bottom: 18px; font-size: 15px; }

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0F172A 0%, #020617 100%);
  color: white;
  padding: 32px 0;
}
.footer-simple {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.logo-img-sm {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}
.footer-simple > p { font-size: 13px; color: #94A3B8; }
.footer-simple a { color: #94A3B8; transition: color 0.2s; }
.footer-simple a:hover { color: #E0F2FE; }
.footer-links-mini { display: flex; gap: 18px; }
.footer-links-mini a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: #CBD5E1;
}
.footer-links-mini a:hover { color: white; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .float-1, .float-2 { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-buttons-grid { grid-template-columns: 1fr 1fr; }
  .filiales-grid, .detail-grid, .why-grid, .compare-mini, .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 125px 0 36px; }
  .service-buttons-grid { grid-template-columns: 1fr; }
  .contact-cta-box { flex-direction: column; text-align: center; }
  .footer-simple { flex-direction: column; text-align: center; }
  .bg-glow { width: 80vw; height: 80vw; }
}

/* ========== GALLERY IMAGES ========== */
.visual-strip { background: var(--white); padding-top: 20px; }
.visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.75));
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
}

/* Staggered reveal for gallery */
.visual-gallery .gallery-item:nth-child(1) { transition-delay: 0.05s; }
.visual-gallery .gallery-item:nth-child(2) { transition-delay: 0.15s; }
.visual-gallery .gallery-item:nth-child(3) { transition-delay: 0.25s; }

/* Extra service card animation */
.service-buttons-grid .service-btn:nth-child(1) { transition-delay: 0.02s; }
.service-buttons-grid .service-btn:nth-child(2) { transition-delay: 0.06s; }
.service-buttons-grid .service-btn:nth-child(3) { transition-delay: 0.1s; }
.service-buttons-grid .service-btn:nth-child(4) { transition-delay: 0.14s; }
.service-buttons-grid .service-btn:nth-child(5) { transition-delay: 0.18s; }
.service-buttons-grid .service-btn:nth-child(6) { transition-delay: 0.22s; }

/* Soft shimmer on CTA */
.contact-cta-box {
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 900px) {
  .visual-gallery { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.hero-subtitle-dark {
  color: #0f172a !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
  max-width: 560px;
}

.axes-gallery {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px !important;
}
.axes-gallery .gallery-item {
  aspect-ratio: 16/10;
  min-height: 220px;
}
.gallery-caption .axis-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #7dd3fc;
  margin-bottom: 4px;
}
.gallery-caption {
  font-size: 15px !important;
  line-height: 1.35;
  padding: 36px 18px 16px !important;
}
.service-buttons-4 {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* Filiale logos fill frame completely - no extra bg padding */
.filiale-logo-wrap {
  height: 160px !important;
  padding: 0 !important;
  overflow: hidden;
}
.filiale-logo-fill {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
}
.filiale-logo-bo {
  background: #0a0a0a !important;
}
.filiale-logo-tv {
  background: #ffffff !important;
}

@media (max-width: 900px) {
  .axes-gallery {
    grid-template-columns: 1fr !important;
  }
  .service-buttons-4 {
    grid-template-columns: 1fr !important;
  }
}
