:root {
  --bg: #07101d;
  --bg-soft: #0b1728;
  --surface: #0e1c2e;
  --surface-2: #11233a;
  --text: #f4f8ff;
  --muted: #9bacbf;
  --line: rgba(255,255,255,.09);
  --accent: #18b6ff;
  --accent-2: #5ee7ff;
  --white: #ffffff;
  --shadow: 0 25px 70px rgba(0,0,0,.28);
  --radius: 20px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7,16,29,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.header.scrolled {
  background: rgba(7,16,29,.95);
  border-color: var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(94,231,255,.6);
  border-radius: 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.5px;
  box-shadow: 0 0 25px rgba(24,182,255,.12);
}

.logo-text { font-size: 16px; letter-spacing: -.3px; }
.logo-text strong { color: var(--accent-2); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: .25s;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--white); }

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(94,231,255,.35);
  border-radius: 10px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  transition: .25s;
}

.nav-cta:hover {
  background: rgba(24,182,255,.1);
  transform: translateY(-2px);
}

.nav-cta span, .btn span { margin-left: 8px; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px;
}

/* Hero */
.hero {
  min-height: 850px;
  padding: 170px 0 110px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 45%, rgba(24,182,255,.14), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(55,92,255,.09), transparent 28%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow, .section-label {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(94,231,255,.18);
  border-radius: 50px;
  background: rgba(24,182,255,.05);
  margin-bottom: 24px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 13px var(--accent-2);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -4px;
  margin-bottom: 25px;
}

.hero h1 span, h2 span { color: var(--accent-2); }

.hero-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 13px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #03111d;
  box-shadow: 0 10px 30px rgba(24,182,255,.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(24,182,255,.28);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.025);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding-left: 15px;
}

.hero-trust strong { font-size: 13px; }
.hero-trust span { color: var(--muted); font-size: 11px; }

/* Hero visual */
.hero-visual {
  min-height: 510px;
  position: relative;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(24,182,255,.12);
  box-shadow: 0 0 100px rgba(24,182,255,.1);
}

.orb-2 {
  width: 170px;
  height: 170px;
  background: rgba(94,231,255,.06);
}

.tech-card {
  width: min(100%, 440px);
  min-height: 390px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(94,231,255,.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20,39,62,.92), rgba(8,20,35,.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  padding: 25px;
  backdrop-filter: blur(12px);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7f95aa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fe1a1;
  box-shadow: 0 0 10px #4fe1a1;
}

.card-dots { margin-left: auto; letter-spacing: 3px; }

.network {
  height: 260px;
  position: relative;
  display: grid;
  place-items: center;
}

.node {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94,231,255,.3);
  border-radius: 14px;
  background: #10273d;
  color: var(--accent-2);
  position: absolute;
  z-index: 3;
  box-shadow: 0 0 25px rgba(24,182,255,.1);
}

.node-main {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(145deg, #12324e, #0b1d31);
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(24,182,255,.18);
}

.node-a { top: 30px; left: 45px; }
.node-b { top: 35px; right: 45px; }
.node-c { bottom: 25px; left: 85px; }
.node-d { bottom: 25px; right: 85px; }

.connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,231,255,.6), transparent);
  transform-origin: left center;
  width: 145px;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.c1 { transform: rotate(-145deg); }
.c2 { transform: rotate(-35deg); }
.c3 { transform: rotate(145deg); }
.c4 { transform: rotate(35deg); }

.card-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.card-stats div {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
}

.card-stats span, .card-stats strong {
  display: block;
  font-size: 8px;
}

.card-stats span { color: #6f8498; margin-bottom: 3px; }
.card-stats strong { color: #7eeec1; }

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  background: rgba(10,26,43,.94);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  animation: float 5s ease-in-out infinite;
}

.floating-card-one { left: -15px; top: 105px; }
.floating-card-two { right: -8px; bottom: 90px; animation-delay: -2.5s; }

.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
  background: rgba(24,182,255,.1);
  border-radius: 9px;
}

.float-icon.security {
  color: #71e4b5;
  background: rgba(50,210,150,.08);
}

.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #71869a; font-size: 8px; }
.floating-card strong { font-size: 11px; margin-top: 2px; }

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

/* General sections */
.section { padding: 120px 0; }

.services { background: #091523; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading.centered {
  display: block;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 55px;
}

.section-heading h2, .about-copy h2, .contact-copy h2, .cta-box h2 {
  font-size: clamp(33px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin-top: 12px;
}

.section-heading > p, .section-heading.centered p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 480px;
}

.section-heading.centered p { margin: 17px auto 0; }

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.018);
  overflow: hidden;
  transition: .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94,231,255,.3);
  background: rgba(24,182,255,.035);
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(24,182,255,.09), rgba(255,255,255,.018));
  border-color: rgba(94,231,255,.22);
}

.service-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent-2);
  background: rgba(24,182,255,.09);
  border: 1px solid rgba(94,231,255,.1);
  font-size: 20px;
  margin-bottom: 28px;
}

.service-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #33475b;
  font-size: 10px;
  font-weight: 800;
}

.service-card h3 { font-size: 16px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.service-card a {
  position: absolute;
  bottom: 25px;
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 800;
}

/* About */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.about-panel {
  width: min(100%, 430px);
  height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  border: 1px solid rgba(94,231,255,.18);
  background:
    radial-gradient(circle at 50% 45%, rgba(24,182,255,.2), transparent 30%),
    linear-gradient(145deg,#102940,#081524);
  box-shadow: var(--shadow);
}

.about-lines {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(94,231,255,.16) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(94,231,255,.1) 50%, transparent 50.5%);
  background-size: 110px 110px;
}

.about-logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(94,231,255,.9);
  font-size: 78px;
  font-weight: 900;
  letter-spacing: -8px;
  text-shadow: 0 0 60px rgba(24,182,255,.5);
}

.about-caption {
  position: absolute;
  left: 25px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
}

.about-caption span { color: #7590a5; font-size: 8px; letter-spacing: 2px; }
.about-caption strong { font-size: 13px; }

.experience-badge {
  position: absolute;
  right: -10px;
  bottom: 35px;
  padding: 17px 20px;
  border-radius: 14px;
  background: #102238;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.experience-badge strong { display: block; color: var(--accent-2); font-size: 22px; }
.experience-badge span { color: var(--muted); font-size: 9px; line-height: 1.4; }

.about-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 600px;
  margin-top: 18px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 35px;
}

.check-list div {
  color: #cbd6e1;
  font-size: 11px;
}

.check-list span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(24,182,255,.1);
  color: var(--accent-2);
}

/* Process */
.process { background: #091523; }

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.process-item { text-align: center; padding: 0 8px; }

.process-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(94,231,255,.25);
  background: rgba(24,182,255,.05);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
}

.process-item h3 { font-size: 15px; margin-bottom: 8px; }
.process-item p { color: var(--muted); font-size: 11px; line-height: 1.7; }
.process-line {
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,231,255,.3), transparent);
  margin-top: 29px;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
}

.project-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg,#11243a,#091523);
}

.project-large { grid-row: span 2; min-height: 534px; }

.project-content { position: relative; z-index: 2; max-width: 350px; }
.project-content span { color: var(--accent-2); font-size: 8px; letter-spacing: 1.7px; font-weight: 800; }
.project-content h3 { font-size: 23px; margin: 10px 0 7px; }
.project-content p { color: var(--muted); font-size: 11px; line-height: 1.7; }

.project-pattern { position: absolute; inset: 0; }

.network-pattern {
  opacity: .35;
  background-image:
    radial-gradient(circle, rgba(94,231,255,.6) 1px, transparent 2px),
    linear-gradient(120deg, transparent 49%, rgba(94,231,255,.08) 50%, transparent 51%);
  background-size: 40px 40px, 90px 90px;
  mask-image: linear-gradient(135deg, transparent 10%, black 70%);
}

.camera-pattern {
  display: grid;
  place-items: center;
  font-size: 180px;
  color: rgba(94,231,255,.06);
  font-weight: 900;
}

.biometric-pattern {
  display: grid;
  place-items: center;
  font-size: 180px;
  color: rgba(94,231,255,.06);
}

/* CTA */
.cta-section { padding: 0 0 120px; background: var(--bg); }

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 30px;
  border-radius: 25px;
  border: 1px solid rgba(94,231,255,.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(24,182,255,.2), transparent 45%),
    linear-gradient(145deg,#10263e,#091523);
}

.cta-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: -230px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(24,182,255,.15);
  filter: blur(50px);
}

.cta-box h2 { position: relative; }
.cta-box p {
  position: relative;
  max-width: 550px;
  margin: 18px auto 30px;
  color: var(--muted);
  font-size: 13px;
}

/* Contact */
.contact { background: #091523; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-copy > p {
  color: var(--muted);
  max-width: 480px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}

.contact-details { margin-top: 35px; display: grid; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.detail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--accent-2);
  background: rgba(24,182,255,.08);
  border: 1px solid var(--line);
}

.contact-detail small, .contact-detail strong { display: block; }
.contact-detail small { color: #6f8599; font-size: 9px; }
.contact-detail strong { font-size: 11px; margin-top: 2px; }

.contact-form {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.form-header { margin-bottom: 25px; }
.form-header span { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.form-header small { color: var(--muted); font-size: 10px; }

.contact-form label {
  display: block;
  color: #aebdcc;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--text);
  background: #091624;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  resize: vertical;
  transition: .2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(94,231,255,.45);
  box-shadow: 0 0 0 3px rgba(24,182,255,.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #52687d; }

.contact-form select { cursor: pointer; }
.contact-form option { background: #091624; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-submit { width: 100%; margin-top: 3px; }
.form-note { min-height: 18px; margin-top: 10px; color: #6fe4b3; font-size: 10px; text-align: center; }

/* Footer */
.footer { background: #050c15; border-top: 1px solid var(--line); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr .8fr;
  gap: 45px;
  padding: 65px 0;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 15px;
  color: #71859a;
  font-size: 11px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links h4 { font-size: 10px; margin-bottom: 8px; color: white; }
.footer-links a { color: #71859a; font-size: 10px; transition: .2s; }
.footer-links a:hover { color: var(--accent-2); }

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #526477;
  font-size: 9px;
}

/* WhatsApp */
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #21c77a;
  color: white;
  font-size: 23px;
  box-shadow: 0 10px 30px rgba(33,199,122,.25);
  transition: .25s;
}

.whatsapp:hover { transform: scale(1.08) translateY(-2px); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Responsive */
@media (max-width: 1000px) {
  .nav-cta { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 15px; }
  .section-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 60px; }
  .about-visual { order: 2; }
  .about-copy { order: 1; }
  .contact-grid { gap: 50px; }
  .section-heading > p { max-width: 650px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 10px; }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-links:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header .nav { min-height: 68px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(7,16,29,.98);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 13px; }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero h1 { font-size: 45px; letter-spacing: -2.7px; }
  .hero-copy > p { font-size: 14px; }
  .hero-trust { gap: 15px; }
  .hero-trust div { padding-left: 9px; }
  .hero-trust strong { font-size: 10px; }
  .hero-trust span { font-size: 8px; }
  .hero-visual { min-height: 390px; }
  .tech-card { min-height: 335px; padding: 18px; }
  .network { height: 215px; transform: scale(.86); }
  .floating-card-one { left: -4px; top: 55px; }
  .floating-card-two { right: -4px; bottom: 45px; }
  .section { padding: 80px 0; }
  .section-heading { gap: 20px; margin-bottom: 35px; }
  .section-heading h2, .about-copy h2, .contact-copy h2, .cta-box h2 {
    font-size: 35px;
    letter-spacing: -1.8px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .about-panel { height: 330px; }
  .check-list { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .project-large { min-height: 380px; grid-row: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-item { max-width: 320px; margin-inline: auto; }
  .cta-section { padding-bottom: 80px; }
  .cta-box { padding: 65px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
  .footer-bottom { padding: 18px 0; flex-direction: column; gap: 7px; align-items: flex-start; }
}

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


/* =========================================================
   IDENTIDAD DIGITAL SERVICES
   Inspirada directamente en el logo:
   Azul #004AAD | Turquesa #03989E | Blanco
   ========================================================= */

:root {
  --ds-blue: #004AAD;
  --ds-blue-dark: #003b8a;
  --ds-turq: #03989E;
  --ds-turq-light: #67d5d8;
  --ds-white: #ffffff;
  --ds-bg: #050d18;
  --ds-bg-2: #071728;
  --ds-surface: #0b1c2d;
  --ds-line: rgba(255,255,255,.10);
}

/* Tipografía y personalidad */
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 85% 5%, rgba(3,152,158,.08), transparent 24%),
    radial-gradient(circle at 5% 30%, rgba(0,74,173,.08), transparent 26%),
    var(--ds-bg);
}

h1, h2, h3 {
  letter-spacing: -.035em;
}

.section-label {
  color: var(--ds-turq-light);
  letter-spacing: .22em;
}

/* Barra superior más limpia, como la banda blanca del logo */
.header {
  background: rgba(5,13,24,.82);
  border-bottom: 1px solid rgba(3,152,158,.16);
  backdrop-filter: blur(18px);
}

.logo {
  width: 220px;
  height: 68px;
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 215px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--ds-turq-light);
}

.nav-cta {
  border-color: rgba(3,152,158,.40);
  color: var(--ds-turq-light);
}

.nav-cta:hover {
  background: rgba(3,152,158,.10);
}

/* Hero con geometría DS */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,74,173,.12), transparent 38%),
    linear-gradient(315deg, rgba(3,152,158,.08), transparent 40%),
    var(--ds-bg);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(3,152,158,.13);
  transform: rotate(45deg);
}

.hero::before {
  width: 330px;
  height: 330px;
  right: -120px;
  top: 120px;
}

.hero::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: 60px;
  border-color: rgba(0,74,173,.18);
}

.hero h1 span,
h2 span {
  color: var(--ds-turq);
}

.eyebrow {
  border-color: rgba(3,152,158,.28);
  background: rgba(3,152,158,.055);
}

.pulse {
  background: var(--ds-turq);
  box-shadow: 0 0 14px rgba(3,152,158,.7);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ds-blue), #075cc7);
  box-shadow: 0 12px 30px rgba(0,74,173,.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(0,74,173,.42);
}

/* Tarjeta central: banda blanca inspirada en el logo */
.tech-card {
  border: 1px solid rgba(3,152,158,.22);
  background:
    linear-gradient(145deg, rgba(8,29,48,.96), rgba(4,16,28,.98));
  box-shadow: 0 28px 70px rgba(0,0,0,.30);
}

.node-main {
  padding: 0;
  overflow: hidden;
  background: var(--ds-white);
  border-color: rgba(255,255,255,.55);
}

.node-main img {
  width: 82px;
  height: 46px;
  object-fit: contain;
}

.node {
  border-color: rgba(3,152,158,.34);
  color: var(--ds-turq-light);
}

.connection {
  background: linear-gradient(90deg, transparent, rgba(3,152,158,.72), transparent);
}

.status-dot {
  background: var(--ds-turq);
  box-shadow: 0 0 10px rgba(3,152,158,.65);
}

.service-card:hover {
  border-color: rgba(3,152,158,.38);
  transform: translateY(-5px);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(0,74,173,.17), rgba(3,152,158,.035)),
    var(--ds-surface);
  border-color: rgba(3,152,158,.30);
}

.service-icon,
.float-icon {
  color: var(--ds-turq-light);
  background: rgba(3,152,158,.09);
  border-color: rgba(3,152,158,.16);
}

/* About */
.about-panel {
  background:
    radial-gradient(circle at 50% 45%, rgba(3,152,158,.19), transparent 34%),
    linear-gradient(145deg,#0d2943,#061525);
  border: 1px solid rgba(3,152,158,.18);
}

.about-logo {
  display: none;
}

.about-logo-image {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 82%;
  max-width: 370px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(3,152,158,.20));
}

/* =========================================================
   PORTAFOLIO FOTOGRÁFICO
   ========================================================= */

.projects {
  background:
    linear-gradient(180deg, transparent, rgba(0,74,173,.045)),
    var(--ds-bg);
}

.projects-heading {
  margin-bottom: 45px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid rgba(3,152,158,.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(10,29,46,.96), rgba(5,16,28,.98));
  box-shadow: 0 16px 45px rgba(0,0,0,.16);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.portfolio-card:hover {
  transform: translateY(-7px);
  border-color: rgba(3,152,158,.42);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.portfolio-featured {
  grid-column: span 2;
}

.portfolio-image {
  position: relative;
  height: 285px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(3,152,158,.24), transparent 28%),
    linear-gradient(135deg, #0a2941, #061322);
}

.portfolio-featured .portfolio-image {
  height: 390px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.035);
}

.portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2,10,18,.78) 100%);
  pointer-events: none;
}

.portfolio-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(3,20,32,.72);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  backdrop-filter: blur(10px);
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 25px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,74,173,.35), rgba(3,152,158,.12));
}

.photo-placeholder span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 1px solid rgba(103,213,216,.35);
  color: var(--ds-turq-light);
  font-weight: 800;
}

.photo-placeholder strong {
  font-size: 16px;
}

.photo-placeholder small {
  margin-top: 7px;
  color: rgba(255,255,255,.55);
  font-size: 11px;
}

.portfolio-image:not(.no-photo) .photo-placeholder {
  display: none;
}

.portfolio-info {
  padding: 24px 25px 28px;
}

.portfolio-info > span {
  color: var(--ds-turq-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.portfolio-info h3 {
  margin: 9px 0 8px;
  font-size: 22px;
}

.portfolio-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.portfolio-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 25px;
  border: 1px solid rgba(3,152,158,.18);
  border-radius: 18px;
  background: rgba(3,152,158,.035);
}

.portfolio-note-icon {
  flex: 0 0 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ds-blue);
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
}

.portfolio-note strong {
  display: block;
  margin-bottom: 4px;
}

.portfolio-note p {
  margin: 0;
  color: var(--muted);
}

/* CTA */
.cta-box {
  background:
    linear-gradient(120deg, rgba(0,74,173,.92), rgba(3,152,158,.72)),
    #004AAD;
}

/* WhatsApp */
.whatsapp {
  background: var(--ds-turq);
  box-shadow: 0 12px 30px rgba(3,152,158,.28);
}

/* Responsive */
@media (max-width: 800px) {
  .logo {
    width: 170px;
    height: 58px;
  }

  .brand-logo {
    width: 165px;
    max-height: 54px;
  }

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

  .portfolio-featured {
    grid-column: span 1;
  }

  .portfolio-image,
  .portfolio-featured .portfolio-image {
    height: 270px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 145px;
  }

  .brand-logo {
    width: 140px;
  }

  .portfolio-note {
    align-items: flex-start;
  }
}


/* =========================================================
   AJUSTES FINALES — CONSISTENCIA Y RESPONSIVE
   ========================================================= */

/* Servicios: evita que "Más información" se monte con el texto.
   La tarjeta usa flex para que el enlace quede siempre abajo,
   sin depender de una posición absoluta. */
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.service-card p {
  margin: 0;
  padding-bottom: 18px;
}

.service-card a {
  position: static;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--ds-turq-light);
  line-height: 1.4;
}

.service-card a span {
  margin-left: 7px;
  transition: transform .2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

/* Todas las tarjetas mantienen una separación visual cómoda. */
.service-icon {
  flex: 0 0 auto;
}

.service-card h3 {
  line-height: 1.35;
}

/* Portafolio: imágenes más limpias y sin deformación. */
.portfolio-image {
  isolation: isolate;
}

.portfolio-image img {
  position: relative;
  z-index: 0;
}

/* Si una foto no carga, el placeholder ocupa toda la imagen. */
.portfolio-image.no-photo .photo-placeholder {
  display: flex;
}

/* Botones y enlaces: área de clic más cómoda. */
.btn,
.nav-cta {
  -webkit-tap-highlight-color: transparent;
}

/* Evita que textos largos rompan tarjetas o columnas. */
.service-card h3,
.service-card p,
.portfolio-info h3,
.portfolio-info p,
.contact-detail strong {
  overflow-wrap: anywhere;
}

/* Mejor equilibrio de la sección de contacto. */
.contact-detail {
  max-width: 100%;
}

.contact-detail strong {
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 1000px) {
  .service-card {
    min-height: 290px;
  }

  .about-grid {
    gap: 55px;
  }

  .contact-grid {
    gap: 45px;
  }
}

/* Móvil */
@media (max-width: 720px) {
  .service-card {
    min-height: 0;
    padding: 23px;
  }

  .service-card p {
    line-height: 1.7;
  }

  .service-card a {
    margin-top: 12px;
    padding-top: 10px;
  }

  .portfolio-info {
    padding: 20px 21px 24px;
  }

  .portfolio-info h3 {
    font-size: 20px;
    line-height: 1.25;
  }

  .portfolio-note {
    gap: 13px;
    padding: 18px;
  }

  .portfolio-note p {
    line-height: 1.6;
  }

  .contact-detail {
    width: 100%;
  }

  .contact-detail strong {
    font-size: 10px;
  }
}

/* Pantallas muy pequeñas */
@media (max-width: 400px) {
  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 11.5px;
  }

  .contact-form {
    padding: 18px;
  }
}

/* Ajuste de tarjetas de servicios: la tarjeta crece según su contenido */
.services-grid {
  align-items: start;
}

.service-card {
  min-height: 0;
  height: auto;
}

.service-card p {
  padding-bottom: 0;
}

.service-card a {
  margin-top: 18px;
  padding-top: 0;
}

@media (max-width: 1000px) {
  .service-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .service-card {
    min-height: 0;
  }

  .service-card a {
    margin-top: 16px;
    padding-top: 0;
  }
}


/* =========================================================
   TARJETAS DE SERVICIOS — AJUSTE FINAL
   El contenido determina la altura y el enlace queda
   separado del texto sin superponerse.
   ========================================================= */

.services-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: auto;
  padding: 27px;
  box-sizing: border-box;
}

.service-card .service-icon {
  flex: 0 0 auto;
}

.service-card h3 {
  margin: 0 0 10px;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.service-card a {
  position: static;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-top: 18px;
  padding: 0;
  line-height: 1.4;
}

.service-card a span {
  margin-left: 7px;
}

/* En pantallas pequeñas cada tarjeta ocupa solamente
   el espacio que necesita su propio contenido. */
@media (max-width: 720px) {
  .services-grid {
    align-items: stretch;
  }

  .service-card {
    min-height: 0;
    padding: 23px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.7;
  }

  .service-card a {
    margin-top: 16px;
  }
}

@media (max-width: 400px) {
  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 15px;
  }

  .service-card p {
    font-size: 11.5px;
    line-height: 1.7;
  }
}

/* =========================================================
   TEXTO DE TARJETAS DE SERVICIOS — JUSTIFICADO
   ========================================================= */
.service-card p {
  text-align: justify;
  text-justify: inter-word;
}


/* =========================================================
   GALERÍA DE PROYECTOS POR SERVICIO
   ========================================================= */
.service-card[data-gallery] {
  cursor: pointer;
}

.service-card[data-gallery]:focus-visible {
  outline: 2px solid var(--ds-turq-light);
  outline-offset: 4px;
}

.service-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.service-gallery-modal.open {
  display: flex;
}

.service-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 17, .88);
  backdrop-filter: blur(7px);
}

.service-gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(42, 210, 211, .28);
  border-radius: 24px;
  background: linear-gradient(145deg, #0b263d, #071827);
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}

.gallery-close {
  position: absolute;
  top: 14px;
  right: 17px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-header {
  padding-right: 50px;
  margin-bottom: 20px;
}

.gallery-header h2 {
  margin: 6px 0 7px;
}

.gallery-header p {
  margin: 0;
  color: var(--muted);
}

.gallery-main {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.gallery-view {
  margin: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #030a12;
  border: 1px solid rgba(255,255,255,.08);
}

.gallery-view img {
  display: block;
  width: 100%;
  max-height: 58vh;
  object-fit: contain;
}

.gallery-view figcaption {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0,0,0,.35);
  color: #fff;
}

.gallery-view figcaption strong,
.gallery-view figcaption span {
  display: block;
}

.gallery-view figcaption span {
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.gallery-arrow {
  width: 44px;
  height: 52px;
  border: 1px solid rgba(42,210,211,.3);
  border-radius: 12px;
  background: rgba(42,210,211,.08);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.gallery-arrow:disabled {
  opacity: .25;
  cursor: default;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.gallery-thumb {
  flex: 0 0 92px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #030a12;
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: var(--ds-turq-light);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-empty {
  width: 100%;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 12px;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .service-gallery-modal {
    padding: 12px;
  }

  .service-gallery-dialog {
    padding: 22px 16px;
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }

  .gallery-main {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .gallery-view {
    min-height: 260px;
  }

  .gallery-view img {
    max-height: 48vh;
  }

  .gallery-arrow {
    width: 36px;
    height: 44px;
    font-size: 28px;
  }

  .gallery-close {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

/* Enlace de galería en las tarjetas de servicios */
.service-card .gallery-link {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding: 9px 13px;
  border: 1px solid rgba(3,152,158,.32);
  border-radius: 9px;
  background: rgba(3,152,158,.08);
  color: var(--ds-turq-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  transition: .25s ease;
}

.service-card .gallery-link:hover {
  background: rgba(3,152,158,.16);
  border-color: rgba(3,152,158,.55);
  transform: translateY(-1px);
}

.service-card .gallery-link span {
  margin-left: 0;
  transition: transform .2s ease;
}

.service-card .gallery-link:hover span {
  transform: translateX(4px);
}

/* =========================================================
   CLIENTES — SLIDER DE LOGOS
   ========================================================= */
.clients-section {
  margin-top: 72px;
  padding: 56px 0 64px;
  text-align: center;
  overflow: hidden;
}

.clients-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.clients-heading .section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #03989e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.clients-heading h2 {
  margin: 0 0 12px;
}

.clients-heading p {
  margin: 0 auto;
  opacity: .78;
  line-height: 1.7;
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 18px;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: clientsScroll 28s linear infinite;
}

.client-logo {
  width: 210px;
  height: 96px;
  flex: 0 0 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1px solid rgba(3,152,158,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  box-sizing: border-box;
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 66px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .clients-section {
    margin-top: 48px;
    padding: 42px 0 48px;
  }

  .client-logo {
    width: 170px;
    flex-basis: 170px;
    height: 82px;
  }

  .clients-track {
    gap: 16px;
    animation-duration: 22s;
  }
}

/* =========================================================
   CLIENTES — VERSION COMPACTA
   ========================================================= */
.clients-section {
  width: 100%;
  margin: 34px 0 0;
  padding: 26px 0 8px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(3,152,158,.14);
}

.clients-heading {
  max-width: none;
  margin: 0 0 18px;
  padding: 0 10px;
}

.clients-heading .section-eyebrow {
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: .16em;
}

.clients-heading h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
}

.clients-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 2px 0 8px;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: clientsScrollCompact 30s linear infinite;
}

.client-logo {
  width: 132px;
  height: 58px;
  flex: 0 0 132px;
  padding: 7px 10px;
  border: 1px solid rgba(3,152,158,.18);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
  box-sizing: border-box;
}

.client-logo img {
  max-width: 100%;
  max-height: 42px;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes clientsScrollCompact {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@media (max-width: 700px) {
  .clients-section {
    margin-top: 28px;
    padding: 22px 0 4px;
  }

  .clients-heading {
    margin-bottom: 14px;
  }

  .clients-heading h2 {
    font-size: 20px;
  }

  .client-logo {
    width: 110px;
    height: 50px;
    flex-basis: 110px;
  }

  .client-logo img {
    max-height: 36px;
  }

  .clients-track {
    gap: 10px;
    animation-duration: 24s;
  }
}
