/* ================================================
   TUBOS DE MONTERREY — Landing Page Styles
   Stack: HTML + CSS + Vanilla JS
   Tema: Industrial oscuro · Azul #2448a3 · Rojo #cc1127
   Fuentes: Barlow Condensed (títulos) · DM Sans (cuerpo)
   ================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --bg:         #07090f;
  --bg2:        #0c0f1c;
  --bg3:        #101424;
  --card:       #0e1120;
  --card-h:     #12162a;
  --blue:       #2448a3;
  --blue-l:     #3560cc;
  --red:        #cc1127;
  --red-l:      #e61530;
  --text:       #d4daf0;
  --muted:      #6272a0;
  --dim:        #2a3050;
  --border:     rgba(255,255,255,0.05);
  --border-b:   rgba(36,72,163,0.25);
  --steel:      #7a8ab5;

  --font-h:     'Barlow Condensed', sans-serif;
  --font-b:     'DM Sans', sans-serif;
  --font-l:     'Bebas Neue', cursive;

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --pad:        clamp(80px, 8vw, 120px);
  --wrap:       1200px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ---------- UTILITIES ---------- */
.red { color: var(--red); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-l);
  font-size: 12px;
  letter-spacing: 3.5px;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 1.2rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
}

/* ---------- BUTTONS ---------- */
.btn-solid, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-solid {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}
.btn-solid:hover { background: var(--blue-l); border-color: var(--blue-l); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger for grid children */
.grid-products .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-products .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-products .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid-products .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid-products .reveal:nth-child(6) { transition-delay: 0.40s; }


/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  padding-block: 1.4rem;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding-block: 0.9rem;
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-eyebrow {
  font-family: var(--font-l);
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--red);
}
.logo-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  background: var(--red) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px)) !important;
  transition: background 0.25s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--red-l) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-overlay.open { transform: translateX(0); }
.overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.overlay-close:hover { color: #fff; }
.overlay-link {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
}
.overlay-link:hover { color: var(--red); }


/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Canvas background */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 70% at 65% 50%, rgba(36,72,163,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(204,17,39,0.06) 0%, transparent 55%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 75%, var(--bg) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: 100svh;
  padding-block: 6rem 4rem;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  font-family: var(--font-l);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  line-height: 0.93;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 1.8rem;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
  animation: slideUp 1s var(--ease) both;
}
.hero-headline .line:nth-child(1) { animation-delay: 0.25s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.40s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.55s; }

.hero-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.65s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.8s both;
}

/* Badge */
.hero-badge {
  flex-shrink: 0;
  animation: fadeUp 0.8s var(--ease) 1s both;
}
.badge-ring {
  position: relative;
  width: 140px;
  height: 140px;
  animation: spin 18s linear infinite;
}
.badge-svg { width: 100%; height: 100%; }
.badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: spinReverse 18s linear infinite;
}
.badge-num {
  font-family: var(--font-l);
  font-size: 3.5rem;
  color: var(--blue-l);
  line-height: 1;
}
.badge-label {
  font-family: var(--font-l);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: fadeUp 1s var(--ease) 1.3s both;
}
.scroll-track {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  display: block;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  display: block;
}


/* ===================================================
   PRODUCTS
   =================================================== */
.products {
  padding-block: var(--pad);
  position: relative;
}
.top-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--blue) 30%, var(--red) 70%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .tag { padding-left: 0; }
.section-header .tag::before { display: none; }
.section-header .section-desc { margin-inline: auto; }

/* Products grid */
.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card {
  background: var(--card);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { background: var(--card-h); }
.card:hover::before { transform: scaleX(1); }

.card-icon-wrap {
  width: 62px;
  height: 62px;
  margin-bottom: 1.5rem;
  color: var(--blue-l);
  transition: color 0.35s, transform 0.45s var(--spring);
}
.card:hover .card-icon-wrap { color: var(--red); transform: translateY(-5px) scale(1.08); }
.card-icon { width: 100%; height: 100%; }

.card-body h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.3px;
  color: #fff;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.card:hover .card-body h3 { color: var(--red); }
.card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Decorative corner circle */
.card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(36,72,163,0.1);
  transition: all 0.4s var(--ease);
}
.card-glow::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(36,72,163,0.06);
}
.card:hover .card-glow {
  transform: scale(1.6);
  border-color: rgba(204,17,39,0.18);
}


/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding-block: var(--pad);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.about-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(36,72,163,0.025) 79px, rgba(36,72,163,0.025) 80px),
    repeating-linear-gradient(0deg,  transparent, transparent 79px, rgba(36,72,163,0.025) 79px, rgba(36,72,163,0.025) 80px);
  pointer-events: none;
}
/* Diagonal top edge */
.about::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Stats */
.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(36,72,163,0.12);
  border: 1px solid rgba(36,72,163,0.18);
}
.stat {
  background: var(--bg2);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
}
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: rgba(36,72,163,0.12);
}
.stat-figure {
  font-family: var(--font-l);
  font-size: 3.4rem;
  color: var(--blue-l);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-figure sup {
  font-size: 1.8rem;
  color: var(--red);
  vertical-align: super;
}
.stat-desc {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}


/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding-block: var(--pad);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-left p {
  color: var(--muted);
  margin-bottom: 2.25rem;
  line-height: 1.8;
}
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-info li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-icon svg { width: 100%; height: 100%; }
.contact-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-info span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Form box */
.contact-form-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  padding: 11px 14px;
  font-family: var(--font-b);
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--dim); }
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: rgba(36,72,163,0.05);
  box-shadow: 0 0 0 3px rgba(36,72,163,0.08);
}
.field input.err,
.field textarea.err { border-color: var(--red); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background 0.35s var(--ease);
  overflow: hidden;
  position: relative;
  margin-top: 0.25rem;
}
.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-label { position: relative; z-index: 1; }
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-h);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-align: center;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(36,72,163,0.12);
  border: 1px solid rgba(36,72,163,0.3);
  color: var(--blue-l);
}
.form-feedback.error {
  display: block;
  background: rgba(204,17,39,0.1);
  border: 1px solid rgba(204,17,39,0.3);
  color: var(--red-l);
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 310px;
}
.footer-col h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--steel);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bar {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.5px;
}


/* ===================================================
   KEYFRAMES
   =================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.7); opacity: 1; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}


/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-badge    { display: none; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --pad: 60px; }

  .nav-links   { display: none; }
  .hamburger   { display: flex; }

  .hero-headline { font-size: clamp(3rem, 11vw, 4rem); }

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

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.75rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bar   { flex-direction: column; align-items: flex-start; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-solid, .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stats-panel { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 2rem; }
  .contact-form-box { clip-path: none; padding: 1.25rem; }
}
