/* =========================================================
   CYROXTECH LANDING PAGE
   styles.css
   Base anterior + Navbar React-like + Hero mobile-first
========================================================= */

/* =========================================================
   01. VARIABLES
========================================================= */

:root {
  --bg: #ffffff;
  --fg: #1f252e;

  --muted: #f1f4f7;
  --muted-fg: #6b7280;

  --primary: #1c3c5f;
  --primary-2: #2b5a87;
  --accent: #0b8ed0;
  --green: #3d8f7b;

  --border: #dce3ea;
  --card: #f8fafc;

  --radius: 14px;
  --shadow: 0 20px 50px rgba(15, 35, 60, 0.12);
}

/* =========================================================
   02. RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* =========================================================
   03. LAYOUT GENERAL
========================================================= */

main {
  padding-top: 4rem;
}

.container-wide,
.container-narrow {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.container-narrow {
  max-width: 980px;
}

.section {
  padding: 84px 0;
}

.section h2 {
  font-size: 2rem;
  line-height: 1.08;
  margin: 0 0 16px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.lead {
  color: var(--muted-fg);
  max-width: 720px;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

/* =========================================================
   04. NAVBAR
   - Fixed
   - Glass al inicio
   - Sólido al hacer scroll
   - Se oculta al bajar y aparece al subir
========================================================= */

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;

  z-index: 9999;
  width: 100%;
  height: 4rem;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(220, 227, 234, 0.5);

  transform: translateY(0);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background: #ffffff;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  max-width: 1280px;
  height: 4rem;
  margin: 0 auto;
  padding: 0 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}

.brand-logo {
  height: 1.25rem;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.nav-link {
  padding: 0;
  color: var(--muted-fg);
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border-radius: 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: transparent;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: none;
}

/* =========================================================
   05. BOTONES GLOBALES
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 0;
  cursor: pointer;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.nav-actions .btn,
.nav-actions .btn-primary {
  background: var(--primary);
  color: #ffffff;

  padding: 0.55rem 1.1rem;
  border-radius: 0.375rem;

  box-shadow: none;
}

.nav-actions .btn:hover,
.nav-actions .btn-primary:hover {
  background: rgba(28, 60, 95, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(28, 60, 95, 0.3);
}

/* =========================================================
   06. MOBILE MENU
========================================================= */

.menu-toggle {
  display: flex;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;
  cursor: pointer;

  padding: 0;
  margin: 0;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;

  border-radius: 999px;
  background: var(--fg);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);

  padding: 1rem;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.mobile-menu.active,
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  align-items: center;

  width: 100%;
  padding: 0.95rem 1rem;

  border-radius: 0.75rem;

  color: var(--fg);
  font-size: 0.95rem;
  font-weight: 500;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: rgba(28, 60, 95, 0.1);
  color: var(--primary);
}

.mobile-btn {
  width: 100%;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  padding: 0.8rem 1.1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* =========================================================
   07. HERO / HEADER PRINCIPAL
   Mobile-first basado en clases Tailwind del React:
   h1: text-4xl md:text-5xl lg:text-6xl xl:text-7xl
   p:  text-lg md:text-xl
========================================================= */

.hero {
  min-height: calc(100vh - 4rem);
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -40px 0;

  background-image: url("../images/hero-industrial-1.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: scale(1.08);
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 44, 59, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1280px;
  margin: 0 auto;

  padding-left: 1rem;
  padding-right: 1rem;

  text-align: center;
}

.pill {
  display: inline-block;

  margin-bottom: 1rem;
  padding: 0.5rem 1rem;

  border-radius: 999px;

  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
  max-width: 64rem;
  margin: 0 auto 1.5rem;

  color: #ffffff;

  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;

  text-align: center;
}

.hero h1 span {
  color: #0d8bd8;
}

.hero p {
  max-width: 42rem;
  margin: 0 auto 2.5rem;

  color: rgba(255, 255, 255, 0.8);

  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;

  text-align: center;
}

.hero .btn {
  display: flex;
  width: 100%;

  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  margin: 0 auto;

  padding: 0.8rem 1.3rem;

  border-radius: 0.375rem;
  border: none;

  background: #2d5391;
  color: #ffffff;

  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;

  box-shadow: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero .btn:hover {
  background: rgba(28, 53, 92, 1);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(51, 55, 61, 0.5);
}

.scroll-down {
  position: absolute;
  z-index: 3;

  bottom: 24px;
  left: 50%;

  transform: translateX(-50%);

  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);

  font-size: 2rem;

  animation: bounce 1.6s infinite;
  cursor: pointer;

  transition: color 0.25s ease;
}

.scroll-down:hover {
  color: #ffffff;
}

/* =========================================================
   08. GRIDS
========================================================= */

.grid {
  display: grid;
  padding-top: 1rem;
  gap: 1.5rem;
}

.grid-4,
.grid-3,
.grid-2 {
  grid-template-columns: 1fr;
}

/* =========================================================
   CARDS / WHY CHOOSE US
========================================================= */

.card {
  background: #f8fafc;
  border: 1px solid rgba(220, 227, 234, 0.95);
  border-radius: 0.5rem;

  padding: 2.5rem 1.5rem;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(28, 60, 95, 0.25);
}

.card.center {
  text-align: center;
}

.icon {
  width: 64px;
  height: 64px;

  border-radius: 1rem;
  background: #e2e8f0;

  display: grid;
  place-items: center;

  color: var(--primary);
  font-size: 1.75rem;

  margin: 0 0 2rem;
}

.card.center .icon {
  margin-left: auto;
  margin-right: auto;
}

.card h3 {
  margin: 0 0 1rem;

  color: #0f172a;

  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}

.card p {
  max-width: 320px;
  margin: 0 auto;

  color: #475569;

  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}

/* =========================================================
   10. SECCIONES / BLOQUES
========================================================= */

.muted-section {
  background: linear-gradient(180deg, #fff, rgba(241, 244, 247, 0.7));
}

.image-panel {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-list li {
  list-style: none;
  padding-left: 30px;
  position: relative;
  color: #4b5563;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.process-num {
  font-size: 2.7rem;
  font-weight: 800;
  color: rgba(28, 60, 95, 0.18);
  line-height: 1;
}

/* =========================================================
   11. LOGOS / CLIENTES
========================================================= */

.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
}

.logo-card {
  height: 72px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;

  display: grid;
  place-items: center;

  padding: 16px;
  filter: grayscale(1);
  opacity: 0.75;

  transition: 0.25s;
}

.logo-card:hover {
  filter: none;
  opacity: 1;
  box-shadow: var(--shadow);
}

.logo-card img {
  max-height: 46px;
  width: auto;
}

/* =========================================================
   12. MÉTRICAS / CTA
========================================================= */

.metrics {
  background: var(--primary);
  color: white;
}

.metric {
  text-align: center;
}

.metric strong {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  display: block;
}

.metric span {
  color: rgba(255, 255, 255, 0.75);
}

.cta {
  background: var(--accent);
  color: white;
  text-align: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 28px;
}

/* =========================================================
   13. PAGE HERO / PÁGINAS INTERNAS
========================================================= */

.page-hero {
  padding: 132px 0 64px;
  background: linear-gradient(180deg, rgba(241, 244, 247, 0.75), white);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

/* =========================================================
   CONTACTO PAGE
========================================================= */

.contact-page {
  background: #ffffff;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}

/* HEADER */

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header .eyebrow {
  display: block;
  margin-bottom: 0.8rem;
}

.contact-header h1 {
  margin: 0 0 1rem;

  color: #0f172a;

  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
}

.contact-header p {
  max-width: 850px;
  margin: 0 auto;

  color: #64748b;

  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 500;
}

/* LAYOUT */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

/* INFO LEFT */

.contact-info h2 {
  margin: 0 0 2rem;

  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;

  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;

  border-radius: 0.75rem;
  background: #e9eef3;
  color: var(--primary);

  display: grid;
  place-items: center;

  font-size: 1.3rem;
}

.contact-icon-blue {
  background: rgba(11, 142, 208, 0.12);
  color: var(--accent);
}

.contact-item h3 {
  margin: 0 0 0.25rem;

  color: #0f172a;

  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
}

.contact-item a,
.contact-item span {
  display: block;

  color: #475569;

  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-blue {
  color: var(--accent) !important;
  font-weight: 600;
}

/* MAP */

.contact-map {
  width: 100%;
  height: 210px;

  margin-top: 2.25rem;

  border-radius: 0.75rem;
  background: #e9eef3;

  display: grid;
  place-items: center;

  color: #64748b;
}

.contact-map div {
  text-align: center;
}

.contact-map span {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-map p {
  margin: 0;
  font-size: 0.95rem;
}

/* FORM CARD */

.contact-card {
  background: #ffffff;

  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 0.75rem;

  padding: 1.75rem;
}

.contact-card h2 {
  margin: 0 0 2rem;

  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-grid.two {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field label {
  color: #0f172a;

  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;

  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;

  background: #ffffff;
  color: #0f172a;

  padding: 0.75rem 0.9rem;

  font-size: 0.95rem;
  line-height: 1.4;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28, 60, 95, 0.1);
}

/* CHECK */

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #475569;

  font-size: 0.9rem;
  line-height: 1.5;
}

.check input {
  width: 16px;
  height: 16px;
  margin-top: 0.18rem;
  flex-shrink: 0;
}

.check a {
  color: var(--primary);
  font-weight: 700;
}

.check a:hover {
  text-decoration: underline;
}

/* BUTTON */

.contact-submit {
  width: fit-content;

  background: var(--primary);
  color: #ffffff;

  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;

  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 800;
}

.contact-submit:hover {
  background: rgba(28, 60, 95, 0.9);
  transform: translateY(-1px);
}

/* MESSAGE */

.form-message {
  margin: 0rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-message.error {
  color: #dc2626;
}

.form-message.success {
  color: #15803d;
}

/* =========================================================
   CONTACTO RESPONSIVE
========================================================= */

@media (min-width: 768px) {
  .contact-page {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .contact-header h1 {
    font-size: 3.5rem;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page {
    padding-top: 4.5rem;
  }

  .contact-layout {
    grid-template-columns: 360px 1fr;
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-submit {
    width: 100%;
  }
}
/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #1f252e;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;

  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand {
  max-width: 390px;
}

.footer-title {
  display: inline-flex;
  margin-bottom: 1rem;

  color: #ffffff;

  font-size: 1.5rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.footer h4 {
  margin: 0 0 1rem;

  color: #ffffff;

  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.footer p,
.footer a,
.footer span {
  display: block;

  margin: 0 0 0.75rem;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 400;

  transition: color 0.25s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social {
  width: 2.5rem;
  height: 2.5rem;

  display: flex !important;
  align-items: center;
  justify-content: center;

  margin: 0 !important;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);

  color: #ffffff !important;

  font-size: 1rem;
  font-weight: 700;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding-top: 2rem;
  padding-bottom: 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* MD */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* LG */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
  }
}

/* =========================================================
   16. MODAL
========================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 1;

  width: min(100%, 560px);
  max-height: 92vh;
  overflow-y: auto;

  background: #ffffff;
  border-radius: 1.25rem;

  padding: 2rem;

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  animation: pop 0.22s ease-out;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;

  width: 38px;
  height: 38px;

  border: 0;
  border-radius: 999px;

  background: var(--muted);
  color: var(--fg);

  font-size: 1.5rem;
  line-height: 1;

  cursor: pointer;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form h2 {
  margin: 0;

  color: #0f172a;

  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 600;
}

.quote-form > span {
  color: var(--muted-fg);

  font-size: 0.95rem;
  line-height: 1;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: 1fr;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  height: 50px;

  border: 1px solid var(--border);
  border-radius: 0.625rem;

  padding: 0.85rem 1rem;

  background: #ffffff;
  color: var(--fg);

  font-size: 0.95rem;
  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(28, 60, 95, 0.12);
}

.check {
  display: flex;
  align-items: flex-start;

  color: var(--muted-fg);

  font-size: 0.9rem;
  line-height: 1.5;
}

.check input {
  width: auto;
  height: 20px;
  margin-top: 0;
}

.check a {
  color: var(--primary);
  font-weight: 600;
}

.btn-block {
  width: 100%;

  padding: 0.9rem 1.25rem;
  border-radius: 0.625rem;

  font-size: 1rem;
  font-weight: 700;
}

.form-message {
  margin: 0;

  font-size: 0.9rem;
  font-weight: 600;
}

.modal-success {
  text-align: center;
  padding: 3rem 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 1rem;

  border-radius: 999px;

  background: rgba(61, 143, 123, 0.12);
  color: var(--green);

  display: grid;
  place-items: center;

  font-size: 2rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .modal-card {
    padding: 2.25rem;
  }
}

/* =========================================================
   17. ANIMACIONES
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
   18. MEDIA QUERY: MD / TABLET
   min-width: 768px
========================================================= */

@media (min-width: 768px) {
  /* ------------------------------
     NAVBAR MD
     sigue usando hamburguesa
  ------------------------------ */
  .nav-wrap {
    padding: 0 2rem;
  }

  .brand-logo {
    height: 1.5rem;
  }

  /* ------------------------------
     HERO MD
  ------------------------------ */

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .hero .btn {
    width: auto;
    display: inline-flex;
  }

  /* ------------------------------
     GRID / FORM MD
  ------------------------------ */
  .grid {
    padding-top: 3rem;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    padding: 2.5rem 2rem;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .logo-card {
    height: 84px;
  }

  .modal-card {
    padding: 30px;
  }
}

/* =========================================================
   LÍNEAS DE NEGOCIO
========================================================= */

.business-section {
  background: linear-gradient(180deg, #ffffff, rgba(241, 244, 247, 0.75));
}

.business-section .center {
  margin-bottom: 3.5rem;
}

.business-section .lead {
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.business-section .card {
  text-align: left;
  padding: 2rem;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.business-section .icon {
  width: 64px;
  height: 64px;
  margin: 0 0 2rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: #ffffff;
}

.business-section .card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.business-section .card p {
  max-width: none;
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

.business-section .feature-list {
  margin: 1.75rem 0 0;
  padding: 0;
}

.business-section .feature-list li {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.4;
}

.business-section .feature-list li::before {
  color: var(--accent);
}

/* TABLET */
@media (min-width: 768px) {
  .business-section .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .business-section .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .business-section .card {
    padding: 2rem;
  }
}

/* =========================================================
   19. MEDIA QUERY: LG / DESKTOP
   min-width: 1024px
========================================================= */

@media (min-width: 1024px) {
  /* ------------------------------
     NAVBAR LG
  ------------------------------ */

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  /* ------------------------------
     HERO LG
     React: lg:text-6xl
  ------------------------------ */

  .hero h1 {
    font-size: 3.75rem;
    line-height: 1;
  }

  /* ------------------------------
     GRID / SECCIONES LG
  ------------------------------ */

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .logos {
    grid-template-columns: repeat(6, 1fr);
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .icon {
    margin-bottom: 1.75rem;
  }

  .card h3 {
    font-size: 1.15rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

/* =========================================================
   20. MEDIA QUERY: XL / LARGE DESKTOP
   min-width: 1280px
========================================================= */

@media (min-width: 1280px) {
  /* ------------------------------
     HERO XL
     React: xl:text-7xl
  ------------------------------ */
  .section h2 {
    font-size: 2.2rem;
    line-height: 1;
  }
  .hero h1 {
    font-size: 4.5rem;
    line-height: 1;
  }
}

/* =========================================================
   21. MEDIA QUERY: XS / MOBILE SMALL
   max-width: 520px
========================================================= */

@media (max-width: 520px) {
  /* ------------------------------
     LAYOUT XS
  ------------------------------ */

  .container-wide,
  .container-narrow {
    width: min(100% - 24px, 1240px);
  }

  .section {
    padding: 60px 0;
  }

  /* ------------------------------
     HERO XS
  ------------------------------ */

  .hero {
    min-height: calc(100vh - 4rem);
  }

  /* ------------------------------
     CARDS / MODAL XS
  ------------------------------ */

  .card,
  .contact-card {
    padding: 22px;
  }

  .logos {
    gap: 12px;
  }

  .logo-card {
    height: 72px;
  }
}

/* =========================================================
   COMPRESORES Y GENERACIÓN DE NITRÓGENO
========================================================= */

.compressor-section {
  background: #1f2631;
  color: #ffffff;
}

.compressor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.compressor-content .eyebrow {
  color: #0b8ed0;
}

.compressor-content h2 {
  max-width: 560px;
  margin: 1rem 0 1.5rem;

  color: #ffffff;

  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-weight: 600;
}

.compressor-lead {
  max-width: 620px;
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.compressor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;

  margin-top: 2.25rem;
}

.compressor-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
}

.compressor-icon {
  width: 48px;
  height: 48px;

  border-radius: 0.5rem;
  background: rgba(11, 142, 208, 0.18);
  color: #ffffff;

  display: grid;
  place-items: center;

  font-size: 1.35rem;
}

.compressor-feature h3 {
  margin: 0 0 0.25rem;

  color: #ffffff;

  font-size: 0.95rem;
  line-height: 1;
  font-weight: 600;
}

.compressor-feature p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.82rem;
  line-height: 1.2;
}

.compressor-image-wrap {
  position: relative;
}

.compressor-image {
  width: 100%;
  height: 360px;

  object-fit: cover;

  border-radius: 0.75rem;
}

.support-card {
  position: absolute;
  left: -0.8rem;
  bottom: -1.5rem;

  width: 150px;
  height: 105px;

  border-radius: 0.75rem;
  background: #1c4a80;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 1.5rem;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);

  transition: transform 0.15s linear;
}

.support-card strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.support-card span {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* MD */
@media (min-width: 768px) {
  .compressor-content h2 {
    font-size: 2.5rem;
  }

  .compressor-image {
    height: 380px;
  }
  .support-card {
    left: -0.6rem;
  }
}

/* LG */
@media (min-width: 1024px) {
  .compressor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .compressor-content h2 {
    font-size: 2.75rem;
  }
  .support-card {
    left: -2rem;
  }

  .compressor-image {
    height: 300px;
  }
}

/* XL */
@media (min-width: 1280px) {
  .compressor-image {
    height: 330px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .compressor-section {
    padding: 70px 0;
  }

  .compressor-features {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 1.2rem;
  }

  .compressor-feature {
    grid-template-columns: 48px 1fr;
  }

  .compressor-image {
    height: 280px;
  }

  .support-card {
    left: -0.35rem;
    bottom: 0.75rem;
    width: 155px;
    height: 110px;
  }
}

/* =========================================================
   MANUFACTURA ELECTRÓNICA
========================================================= */

.electronics-section {
  background: #ffffff;
}

.electronics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.electronics-image-wrap {
  position: relative;
  order: 2;
}

.electronics-image {
  width: 100%;
  height: 340px;

  object-fit: cover;

  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.experience-card {
  position: absolute;
  top: -1rem;
  right: -1rem;

  width: 140px;
  height: 110px;

  border-radius: 0.9rem;
  background: #1380d3;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 1.25rem;

  box-shadow: 0 18px 40px rgba(19, 128, 211, 0.3);

  transition: transform 0.15s linear;
}

.experience-card strong {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.experience-card span {
  margin-top: 0.35rem;

  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 600;
}

.electronics-content {
  order: 1;
}

.electronics-content .eyebrow {
  color: #0b8ed0;
}

.electronics-content h2 {
  margin: 1rem 0 1.5rem;

  color: #0f172a;

  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.electronics-content p {
  margin: 0 0 1.5rem;

  color: #475569;

  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.electronics-list {
  display: grid;
  gap: 1rem;

  margin: 2rem 0 0;
  padding: 0;
}

.electronics-list li {
  list-style: none;
  position: relative;

  padding-left: 2rem;

  color: #0f172a;

  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.electronics-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: #0b8ed0;
  font-weight: 800;
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) {
  .electronics-content h2 {
    font-size: 3rem;
  }

  .electronics-image {
    height: 420px;
  }
}

/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1024px) {
  .electronics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }

  .electronics-image-wrap {
    order: 1;
  }

  .electronics-content {
    order: 2;
  }

  .electronics-content h2 {
    font-size: 3.5rem;
  }

  .electronics-image {
    height: 430px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .electronics-section {
    padding: 70px 0;
  }

  .electronics-content h2 {
    font-size: 2.2rem;
  }

  .electronics-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .electronics-image {
    height: 340px;
  }

  .experience-card {
    top: -0.8rem;
    right: 0.8rem;

    width: 120px;
    height: 95px;
  }

  .experience-card strong {
    font-size: 2rem;
  }
}

/* =========================================================
   NUESTRO PROCESO
========================================================= */

.process-section {
  background: #ffffff;
}

.process-section h2 {
  font-weight: 700;
}

.process-section .center {
  margin-bottom: 4rem;
}

.process-section .lead {
  max-width: 760px;
  margin: 1rem auto 0;

  color: #475569;

  font-size: 1.05rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.process-card {
  position: relative;

  background: #f8fafc;
  border: 1px solid rgba(220, 227, 234, 0.95);
  border-radius: 0.75rem;

  padding: 2.5rem 2rem;

  text-align: center;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(28, 60, 95, 0.18);
}

.process-number {
  margin-bottom: 1.25rem;

  color: rgba(15, 23, 42, 0.18);

  font-size: 4rem;
  line-height: 1;
  font-weight: 800;
}

.process-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 1.75rem;

  border-radius: 1rem;
  background: #e2e8f0;
  color: #1c3c5f;

  display: grid;
  place-items: center;

  font-size: 1.7rem;
}

.process-card h3 {
  margin: 0 0 1rem;

  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

.process-card p {
  max-width: 320px;
  margin: 0 auto;

  color: #475569;

  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card {
    padding: 2.75rem 2rem;
  }
}

/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .process-card {
    padding: 2.25rem 1.5rem;
  }

  .process-card::after {
    content: "";

    position: absolute;
    top: 50%;
    right: -1.55rem;

    width: 24px;
    height: 1px;

    background: rgba(148, 163, 184, 0.45);
  }

  .process-card:last-child::after {
    display: none;
  }

  .process-number {
    font-size: 4.5rem;
  }

  .process-card h3 {
    font-size: 1.2rem;
  }

  .process-card p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .process-section {
    padding: 70px 0;
  }

  .process-section .center {
    margin-bottom: 3rem;
  }

  .process-card {
    padding: 2.25rem 1.5rem;
  }

  .process-number {
    font-size: 4rem;
  }

  .process-card h3 {
    font-size: 1.3rem;
  }

  .process-card p {
    font-size: 1rem;
  }
}

/* =========================================================
   CLIENTES / MARQUEE LOGOS
========================================================= */

.clients-section {
  padding: 5rem 0 5rem;
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-header h2 {
  max-width: 820px;
  margin: 0 auto;

  color: #0f172a;

  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
}

.clients-marquee {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;

  margin: 0 -1.5rem;

  padding-top: 0rem;
  padding-bottom: 6rem;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.client-logo:hover ~ .clients-track {
  animation-play-state: paused;
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1rem;
  padding-right: 3.5rem;
  animation: clientsMarquee 60s linear infinite;
  will-change: transform;
}

.client-logo {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  height: 88px;

  padding: 1rem 1.5rem;

  background: #ffffff;

  border: 1px solid rgba(220, 227, 234, 0.9);
  border-radius: 16px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.client-logo:hover {
  border-color: rgba(28, 60, 95, 0.18);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.client-logo img {
  height: 3rem;
  width: auto;

  object-fit: contain;

  filter: grayscale(1);
  opacity: 0.5;

  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

/* =========================================================
   CLIENTES RESPONSIVE
========================================================= */

@media (min-width: 768px) {
  .clients-section {
    padding: 1rem 0;
  }

  .clients-header h2 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}

@media (max-width: 520px) {
  .clients-track {
    gap: 1rem;
    padding-right: 2.5rem;
    animation-duration: 45s;
  }

  .client-logo {
    min-width: 105px;
  }

  .client-logo img {
    height: 2.5rem;
    max-width: 130px;
  }
}

/* =========================================================
   MÉTRICAS
========================================================= */

.metrics-section {
  padding: 4rem 0;
  background: var(--primary);
  color: #ffffff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.metric {
  text-align: center;
}

.metric strong {
  display: block;
  margin-bottom: 0.5rem;

  color: #ffffff;

  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
}

.metric span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}

/* MD */
@media (min-width: 768px) {
  .metric strong {
    font-size: 3rem;
  }

  .metric span {
    font-size: 1rem;
  }
}

/* LG */
@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .metric strong {
    font-size: 3.75rem;
  }
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
  background: #ffffff;
  padding: 5rem 0 6rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;

  padding: 2rem;

  border-radius: 1.5rem;

  background: linear-gradient(135deg, var(--primary), rgba(28, 60, 95, 0.82));
  color: #ffffff;

  text-align: center;

  transition: transform 0.15s linear;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  max-width: 760px;
  margin: 0 auto 1rem;

  color: #ffffff;

  font-size: 1.875rem;
  line-height: 1.12;
  font-weight: 500;
}

.cta-panel p {
  max-width: 720px;
  margin: 0 auto 2rem;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 400;
}

.cta-btn {
  background: #ffffff;
  color: var(--primary);

  padding: 0.75rem 2rem;

  border-radius: 0.375rem;

  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;

  box-shadow: none;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.cta-circle {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cta-circle-top {
  width: 16rem;
  height: 16rem;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.cta-circle-bottom {
  width: 12rem;
  height: 12rem;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

/* MD */
@media (min-width: 768px) {
  .cta-panel {
    padding: 3rem;
  }

  .cta-panel h2 {
    font-size: 2.25rem;
  }
}

/* LG */
@media (min-width: 1024px) {
  .cta-panel {
    padding: 4rem;
  }

  .cta-panel h2 {
    font-size: 3rem;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-panel {
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
  }

  .cta-panel h2 {
    font-size: 1.8rem;
  }

  .cta-panel p {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
  }
}

/* =========================================================
   PRIVACIDAD PAGE
========================================================= */

.privacy-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, rgba(241, 244, 247, 0.5), #ffffff);
}

.privacy-hero h1 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 2.5rem;
  line-height: 1.05;
  font-weight: 700;
}

.privacy-hero p {
  margin: 0;
  color: var(--muted-fg);
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-content {
  padding: 3rem 0 5rem;
}

.privacy-prose {
  color: var(--muted-fg);
  font-size: 1.125rem;
  line-height: 1.8;
}

.privacy-prose section {
  margin-bottom: 2rem;
}

.privacy-prose h2 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.privacy-prose p {
  margin: 0 0 1rem;
}

.privacy-prose ul {
  margin: 0.5rem 0 0;
  padding-left: 1.5rem;
}

.privacy-prose li {
  margin-bottom: 0.5rem;
}

.privacy-contact-list {
  list-style: none;
  padding-left: 0 !important;
}

@media (min-width: 768px) {
  .privacy-hero {
    padding: 5rem 0 3rem;
  }

  .privacy-hero h1 {
    font-size: 3rem;
  }
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-grid a,
.footer-location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-grid a svg,
.footer-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-map svg {
  width: 32px;
  height: 32px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.contact-submit svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
  modal
========================================================= */

.field-error {
  display: none;
  margin-top: 0rem;
  font-size: 0.78rem;
  color: #ef4444;
}

.field-error:not(:empty) {
  display: block;
}

.input-error {
  border-color: #ef4444 !important;
}

.btn [data-lucide="loader-circle"] {
  width: 18px;
  height: 18px;
  animation: spin 0.8s linear infinite;
}

.btn [data-submit-text] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-success {
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 34px;
  height: 34px;
}

input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f4f6f8;
  color: #6b7280;
  border-color: #d6dde5;
}

.btn.is-loading {
  background: #355882;
  transform: none !important;
  box-shadow: none !important;
}

button[type="submit"] {
  transition:
    background-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

button[type="submit"]:hover:not(:disabled) {
  background: #2a65b2;
}

.contact-form button[type="submit"] [data-submit-text] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.contact-form button[type="submit"] svg {
  width: 18px;
  height: 18px;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header p {
  margin-bottom: 2rem;
}

.contact-cta {
  background: var(--primary);
  color: #ffffff;

  padding: 0.85rem 1.35rem;
  border-radius: 0.5rem;

  font-size: 1rem;
  font-weight: 700;
}

.contact-cta:hover {
  background: rgba(28, 60, 95, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 60, 95, 0.22);
}

.contact-cta svg {
  width: 18px;
  height: 18px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-info-card {
  min-height: 220px;

  background: #f8fafc;
  border: 1px solid rgba(220, 227, 234, 0.95);
  border-radius: 0.75rem;

  padding: 2rem 1.5rem;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(28, 60, 95, 0.18);
}

.contact-info-card .contact-icon {
  margin-bottom: 1.25rem;
}

.contact-info-card h3 {
  margin: 0 0 0.75rem;

  color: #0f172a;

  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 800;
}

.contact-info-card a,
.contact-info-card span {
  display: block;

  color: #475569;

  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-info-card a:hover {
  color: var(--primary);
}

@media (min-width: 640px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}