* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #050816;
  --dark-2: #0B1120;
  --dark-3: #111827;
  --blue-main: #2563EB;
  --blue-dark: #1E40AF;
  --blue-soft: #3B82F6;
  --blue-light: #93C5FD;
  --white: #FFFFFF;
  --soft-bg: #F8FAFC;
  --soft-blue: #EFF6FF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-soft: #CBD5E1;
  --border: #E2E8F0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 24px 70px rgba(30, 64, 175, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(5, 15, 45, 0.94));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  max-width: 1240px;
  height: 86px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 60px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo img{
    width:70px;
    height:auto;
    object-fit:contain;
}

.logo-text{
    font-size:2.5rem;
    font-weight:900;
    letter-spacing:-1px;
    color:#ffffff;
    line-height:1;
}

.logo-blue{
    background:linear-gradient(90deg,#4da3ff,#2563eb);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav-links a {
  color: #E5E7EB;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 12px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:last-child {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.nav-links a:last-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.38);
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

/* HOME HERO */

.hero {
  min-height: 100vh;
  padding: 160px 24px 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.18), transparent 32%),
    radial-gradient(circle at 12% 85%, rgba(59, 130, 246, 0.12), transparent 35%),
    linear-gradient(135deg, #050816 0%, #0B1120 55%, #111827 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  position: relative;
}

.hero-content::before {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-main));
  margin-bottom: 30px;
}

.tag {
  color: var(--blue-light);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -3px;
  max-width: 900px;
  margin: 18px 0 10px;
}

.typing-wrapper {
  height: 90px;
  display: flex;
  align-items: center;
}

#typing-text {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -2.5px;
  position: relative;
}

#typing-text::after {
  content: "";
  width: 4px;
  height: 65px;
  background: var(--blue-light);
  display: inline-block;
  margin-left: 10px;
  border-radius: 999px;
  animation: blink .8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 18px 45px rgba(30, 64, 175, 0.28);
}

.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(30, 64, 175, 0.38);
}

.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(147, 197, 253, 0.35);
}

.secondary:hover {
  background: rgba(147, 197, 253, 0.12);
  transform: translateY(-3px);
}

/* BRANDS */

.brands-section {
  padding: 70px 0;
  background: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.brands-section p {
  text-align: center;
  margin-bottom: 45px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748B;
}

.brands-marquee {
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: scrollBrands 28s linear infinite;
}

.brands-track img {
  width: 180px;
  height: 70px;
  object-fit: contain;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: 0.3s ease;
  display: block;
}

.brands-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SERVICIOS HOME */

.services-premium {
  padding: 120px 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.06), transparent 28%),
    var(--soft-bg);
  overflow: hidden;
}

.services-header {
  max-width: 1180px;
  margin: auto;
  text-align: center;
}

.services-header h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  max-width: 980px;
  margin: auto;
  color: var(--text-dark);
  letter-spacing: -1.8px;
}

.services-header span {
  color: var(--blue-dark);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 55px;
  margin-bottom: 80px;
}

.tab {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #64748B;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  padding-bottom: 8px;
}

.tab:hover,
.tab.active {
  color: var(--blue-dark);
  border-bottom: 3px solid var(--blue-dark);
}

.service-feature {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.service-image {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  width: 260px;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 35px rgba(15, 23, 42, 0.18));
}

.shape {
  position: absolute;
  border-radius: 24px;
}

.yellow {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  right: 20px;
  bottom: 40px;
}

.gray {
  width: 120px;
  height: 120px;
  background: #E5E7EB;
  left: 10px;
  bottom: 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 55px;
  border-radius: 30px;
  max-width: 650px;
  min-height: 320px;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark-2);
  letter-spacing: -1px;
}

.line {
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-dark));
  margin-bottom: 30px;
}

.service-card p {
  font-size: 19px;
  line-height: 1.9;
  color: #475569;
  max-width: 520px;
}

.service-arrow {
  position: absolute;
  right: 45px;
  bottom: 35px;
  font-size: 48px;
  text-decoration: none;
  color: var(--blue-dark);
  transition: 0.3s;
}

.service-arrow:hover {
  transform: translateX(8px);
  color: var(--blue-main);
}

/* PÁGINA SERVICIOS */

.services-page {
  padding: 150px 9% 120px;
  background:
    radial-gradient(circle at 50% 130px, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
  position: relative;
  overflow: hidden;
}

.services-hero {
  max-width: 980px;
  margin: 0 auto 90px;
  text-align: center;
}

.services-hero .tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: var(--blue-soft);
  margin-bottom: 24px;
}

.services-hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2.8px;
  color: #020617;
  max-width: 980px;
  margin: 0 auto 30px;
}

.services-hero p {
  font-size: 20px;
  line-height: 1.85;
  color: #475569;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

.services-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.deep-service-card {
  background: #FFFFFF;
  padding: 44px;
  border-radius: 30px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.deep-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.14);
}

.deep-service-card::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  pointer-events: none;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #DBEAFE;
  color: #2563EB;
  font-size: 16px;
  font-weight: 900;
}

.service-icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.12);
  transition: 0.35s ease;
}

.deep-service-card:hover .service-icon {
  transform: translateY(-5px) scale(1.05);
}

.deep-service-card h2 {
  font-size: 32px;
  line-height: 1.17;
  color: #071028;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.deep-service-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 28px;
}

.deep-service-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
}

.deep-service-card li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.7;
}

.deep-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563EB;
  font-weight: 900;
}

/* NOSOTROS */

.about {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  padding: 110px 24px;
}

.about-content {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  margin: 16px 0;
  color: var(--text-dark);
}

.about p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.about ul {
  list-style: none;
}

.about li {
  margin-bottom: 13px;
  font-weight: 700;
  color: #344054;
}

.about li::before {
  content: "✓ ";
  color: var(--blue-dark);
  font-weight: 900;
}

/* NOSOTROS PAGE */

.about-premium {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  padding: 140px 9%;
  background: #F5F7FB;
}

.about-left h2 {
  font-size: 56px;
  line-height: 1.05;
  color: #071028;
  margin: 22px 0;
  max-width: 760px;
  font-weight: 800;
}

.about-left h2 span {
  color: #2563EB;
}

.about-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 24px;
  max-width: 760px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.stat-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h3 {
  font-size: 20px;
  color: #071028;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.7;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-card {
  background: #FFFFFF;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 12px 50px rgba(15, 23, 42, 0.08);
}

.about-card.dark {
  background: #071028;
  color: #FFFFFF;
}

.about-card.dark li {
  color: #CBD5E1;
}

.about-card.dark h4 {
  color: #FFFFFF;
}

.about-card h3 {
  font-size: 34px;
  line-height: 1.2;
  color: #071028;
  margin: 18px 0;
}

.about-card p {
  color: #64748B;
  line-height: 1.8;
}

.about-card h4 {
  font-size: 26px;
  margin-bottom: 26px;
}

.about-card ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 18px;
}

.about-card li {
  line-height: 1.7;
}

.mini-tag {
  display: inline-block;
  background: #DBEAFE;
  color: #2563EB;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* CTA */

.cta {
  margin: 90px auto;
  max-width: 1180px;
  padding: 64px 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.16), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2), var(--dark-3));
  color: var(--white);
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.cta h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta p {
  color: #DCEBFF;
  margin-bottom: 30px;
}

/* CONTACTO */

.contact-premium {
  position: relative;
  padding: 130px 24px;
  background: var(--white);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 18% 0 0 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(135deg, var(--dark), var(--dark-2) 65%, var(--dark-3) 160%);
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0% 100%);
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.contact-copy {
  color: var(--white);
  padding-top: 120px;
}

.contact-copy .tag {
  color: var(--blue-light);
}

.contact-copy h2 {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 800;
  max-width: 580px;
  margin-bottom: 48px;
  letter-spacing: -1.5px;
}

.contact-highlight {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.contact-highlight h3 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-highlight p {
  color: #CBD5E1;
  font-size: 17px;
  max-width: 420px;
}

.premium-form {
  background: var(--white);
  padding: 38px;
  border-radius: 24px;
  box-shadow: var(--shadow-blue);
  border-top: 5px solid var(--blue-dark);
  display: grid;
  gap: 16px;
}

.premium-form label {
  color: #173042;
  font-weight: 800;
  display: grid;
  gap: 8px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  border-radius: 10px;
  padding: 16px 14px;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
  font-family: inherit;
}

.premium-form input:focus,
.premium-form textarea:focus {
  border-color: var(--blue-main);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.premium-form button {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 18px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 16px 38px rgba(30, 64, 175, 0.28);
}

.premium-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(30, 64, 175, 0.38);
}

/* FOOTER */

.footer-premium {
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.12), transparent 28%),
    #081827;
  color: var(--white);
}

.footer-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1.2fr;
  gap: 50px;
  padding: 80px 24px;
}

.footer-brand h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.logo-blue {
  background: linear-gradient(90deg, #60A5FA, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: #CBD5E1;
  margin-bottom: 28px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact strong {
  margin-bottom: 6px;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--blue-light);
}

.footer-column h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: var(--white);
}

.footer-column a {
  display: block;
  color: #94A3B8;
  text-decoration: none;
  font-weight: 800;
  margin-bottom: 13px;
  transition: 0.25s ease;
}

.footer-column a:hover {
  color: var(--blue-light);
  transform: translateX(5px);
}

.footer-bottom-premium {
  max-width: 1180px;
  margin: auto;
  padding: 24px;
  border-top: 1px solid rgba(147, 197, 253, 0.14);
  color: #94A3B8;
  font-size: 14px;
}

/* WHATSAPP */

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.35);
  z-index: 999;
  transition: 0.25s ease;
}

.whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .navbar {
    height: 78px;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
  }

  .logo img {
    width: 155px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--dark);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(147, 197, 253, 0.16);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .hero {
    padding: 115px 24px 70px;
    min-height: auto;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 100%;
    margin-bottom: 8px;
  }

  .typing-wrapper {
    height: 58px;
    max-width: 100%;
    overflow: hidden;
  }

  #typing-text {
    font-size: 44px;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
    max-width: 100%;
  }

  #typing-text::after {
    height: 42px;
    width: 3px;
  }

  .buttons {
    width: 100%;
  }

  .buttons .btn {
    width: 100%;
    text-align: center;
  }

  .services-premium {
    padding: 90px 20px;
  }

  .services-tabs {
    gap: 24px;
    margin-bottom: 55px;
  }

  .service-card {
    padding: 35px;
  }

  .service-arrow {
    position: relative;
    display: inline-block;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .service-image {
    width: 260px;
    height: 260px;
  }

  .service-image img {
    width: 190px;
  }

  .services-page {
    padding: 110px 24px 90px;
  }

  .services-hero h1 {
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .services-hero p {
    font-size: 17px;
  }

  .services-deep-grid {
    grid-template-columns: 1fr;
  }

  .deep-service-card {
    padding: 34px;
  }

  .about-premium {
    grid-template-columns: 1fr;
  }

  .about-left h2 {
    font-size: 42px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .contact-premium {
    padding: 90px 20px;
  }

  .contact-bg {
    inset: 8% 0 0 0;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-copy {
    padding-top: 60px;
  }

  .contact-copy h2 {
    font-size: 36px;
  }

  .contact-highlight {
    flex-direction: column;
  }

  .contact-highlight h3 {
    font-size: 28px;
  }

  .premium-form {
    padding: 26px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 34px;
  }

  #typing-text {
    font-size: 38px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .services-hero h1 {
    font-size: 35px;
  }

  .deep-service-card h2 {
    font-size: 27px;
  }

  .cta {
    margin: 60px 20px;
    padding: 42px 24px;
  }

  .brands-track {
    gap: 45px;
  }

  .brands-track img {
    width: 140px;
    height: 55px;
  }
}
@media (max-width: 520px) {

  .navbar {
    height: 76px;
    padding: 0 20px;
  }

  .logo {
    gap: 8px;
  }

  .logo img {
    width: 54px;
  }

  .logo-text {
    font-size: 1.8rem;
    letter-spacing: -1px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  #typing-text {
    font-size: 34px;
    line-height: 1;
  }

  .typing-wrapper {
    height: 54px;
  }
}
@media (max-width: 768px) {
  .contact-premium {
    padding: 120px 20px 80px;
  }

  .contact-bg {
    inset: 140px 0 0 0;
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
  }

  .contact-copy {
    padding-top: 80px;
  }

  .contact-copy .tag {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-bottom: 18px;
  }

  .contact-copy h2 {
    position: relative;
    z-index: 3;
  } 
}