/* ============================================================
   DittoStartUp — design system basado en zig.ai (skillui extract)
   Paleta: verde #08906c · coral #ce3c2b · negro #15171a
   Tipografía: Archivo (display/body) · Azeret Mono (labels)
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #15171a;
  --gray-50: #eeeeee;
  --gray-100: #dddddd;
  --gray-400: #999999;
  --gray-500: #73817e;
  --gray-600: #5c6764;
  --gray-700: #454e4c;
  --coral-500: #ce3c2b;
  --coral-600: #b53321;
  --green-500: #08906c;
  --green-400: #37a88a;
  --green-300: #60c7ac;
  --green-200: #93dcc8;
  --green-100: #c4ece1;
  --blue-300: #87bbd9;
  --blue-200: #b0d4e8;
  --blue-700: #2b4d60;
  --bg: #f2f4f3;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-mono: "Azeret Mono", monospace;

  --radius-card: 20px;
  --radius-pill: 10em;
  --shadow-raised: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  --shadow-float: 0 9px 9px #00000017;
  --shadow-overlay: 0 22px 22px #2b4d6017, 0 5px 12px #2b4d601a;

  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Tipografía ============ */

h1 {
  font-size: clamp(2.6rem, 6vw, 4.375rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 { font-weight: 700; letter-spacing: -0.01em; }

.accent { color: var(--green-500); display: inline-block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: none;
  margin-bottom: 20px;
}
.eyebrow svg { width: 16px; height: 16px; }
.eyebrow-light { color: var(--green-100); }

.section-sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-top: 20px;
}

/* ============ Botones ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
              background-color 0.2s ease-out, color 0.2s ease-out;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--green-500); outline-offset: 2px; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.btn-solid { background: var(--coral-500); color: var(--white); }
.btn-solid:hover { background: var(--coral-600); box-shadow: var(--shadow-float); }

.btn-ghost { background: transparent; color: var(--coral-500); border-color: var(--coral-500); }
.btn-ghost:hover { background: #ce3c2b14; }

.btn-coral { background: var(--coral-500); color: var(--white); }
.btn-coral:hover { background: var(--coral-600); box-shadow: var(--shadow-float); }

.btn-wsp { background: var(--green-500); color: var(--white); }
.btn-wsp:hover { background: #067a5b; box-shadow: var(--shadow-float); }
.btn-wsp svg { width: 22px; height: 22px; }

.arrow { transition: transform 0.2s ease-out; }
.btn:hover .arrow { transform: translateX(4px); }

/* Botones del hero — "pulso magnético":
   el coral late con un anillo expansivo y la flecha empuja sola */
.hero-ctas .btn-solid { animation: pulso 2.4s ease-out infinite; }
@keyframes pulso {
  0%   { box-shadow: 0 0 0 0 rgba(206, 60, 43, 0.45); transform: scale(1); }
  45%  { box-shadow: 0 0 0 18px rgba(206, 60, 43, 0); transform: scale(1.035); }
  60%  { transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(206, 60, 43, 0); transform: scale(1); }
}
.hero-ctas .btn-solid:hover {
  animation: none;
  transform: translateY(-2px) scale(1.02);
}

.hero-ctas .btn-ghost .arrow { animation: empuje 1.8s ease-in-out infinite; }
@keyframes empuje {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(7px); }
}
.hero-ctas .btn-ghost:hover { background: var(--coral-500); color: var(--white); }
.hero-ctas .btn-ghost:hover .arrow { animation: none; transform: translateX(7px); }

/* Misma familia de latido, en verde, para CTAs de WhatsApp destacadas */
.l-hero .btn-wsp, .side-card-wsp .btn-wsp { animation: pulsoVerde 2.4s ease-out infinite; }
@keyframes pulsoVerde {
  0%   { box-shadow: 0 0 0 0 rgba(8, 144, 108, 0.4); transform: scale(1); }
  45%  { box-shadow: 0 0 0 16px rgba(8, 144, 108, 0); transform: scale(1.03); }
  60%  { transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(8, 144, 108, 0); transform: scale(1); }
}
.l-hero .btn-wsp:hover, .side-card-wsp .btn-wsp:hover {
  animation: none;
  transform: translateY(-2px) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .hero-ctas .btn-solid,
  .hero-ctas .btn-ghost .arrow,
  .l-hero .btn-wsp,
  .side-card-wsp .btn-wsp { animation: none; }
}

/* ============ Nav ============ */

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: padding 0.3s ease-out;
}
.nav-wrap.scrolled { padding: 8px 0; }
.nav-wrap.scrolled .nav {
  background: #ffffffee;
  box-shadow: var(--shadow-float);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--green-500); }

.nav-links {
  display: flex;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: var(--shadow-raised);
}
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease-out;
}
.nav-links a:hover { background: var(--green-100); }

.nav-actions { display: flex; gap: 10px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-raised);
}
.nav-burger span {
  width: 20px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-lines path {
  stroke: #15171a14;
  stroke-width: 1;
  fill: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-top: 24px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Tarjetas flotantes */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}

/* Modo "rueda de sorteo": lo activa JS cuando hay GSAP disponible */
.hero-cards.wheel {
  display: block;
  position: relative;
  height: 540px;
}
.hero-cards.wheel .notif {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  will-change: transform;
  transition: box-shadow 0.3s ease-out;
}
.notif.is-active {
  box-shadow: 0 22px 44px #2b4d602e, 0 5px 12px #2b4d601a;
}

.notif {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-overlay);
  max-width: 420px;
}
.notif:nth-child(odd) { align-self: flex-end; }
.notif:nth-child(even) { align-self: flex-start; }

.notif-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.notif-icon svg { width: 26px; height: 26px; }

.tile-mint { background: var(--green-100); color: var(--green-500); }
.tile-blue { background: var(--blue-200); color: var(--blue-700); }
.tile-peach { background: #f8d8cd; color: var(--coral-500); }
.tile-lav { background: #e3d8f8; color: #6d4dc7; }

.notif-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.notif-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green-400);
  margin-bottom: 2px;
}
.notif-body strong { font-size: 1.02rem; letter-spacing: -0.01em; }
.notif-sub { font-size: 0.85rem; color: var(--gray-500); }

.notif-check { flex-shrink: 0; }
.notif-check svg { width: 24px; height: 24px; }

/* ============ Secciones ============ */

.section { padding: 110px 0; }
.section-tight { padding: 60px 0 110px; }

/* ============ Servicios ============ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-raised);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-overlay);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.98rem; }
.service-card p strong { color: var(--black); }

.service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service-tags li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-700);
  background: var(--bg);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

/* ============ Stats ============ */

.stats-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.stats-circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stat {
  aspect-ratio: 1;
  border: 1px solid var(--gray-100);
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  margin: -14px;
}

.stat-value {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--green-500);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ============ Proceso (verde) ============ */

.section-green {
  background: var(--green-500);
  color: var(--white);
  padding: 110px 0;
  border-radius: 40px;
  margin: 0 16px;
}
.section-green h2 { color: var(--white); }
.section-green .section-sub { color: var(--green-100); }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 90px;
  position: relative;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 1px;
  background: #ffffff59;
}

.process-node { position: relative; }

.node-dot {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.node-dot svg { width: 26px; height: 26px; }

.process-node h3 { font-size: 1.6rem; margin-bottom: 10px; }
.process-node p { color: var(--green-100); font-size: 0.98rem; }

/* ============ Portafolio ============ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.work-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-raised);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-overlay);
}

.work-shot {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-50);
}
.work-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease-out;
}
.work-card:hover .work-shot img { transform: scale(1.04); }

.work-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 22px;
}
.work-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.work-info p { color: var(--gray-500); font-size: 0.88rem; }

.work-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green-500);
  background: var(--green-100);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.work-card-cta {
  background: var(--black);
  color: var(--white);
  padding: 32px 28px;
  justify-content: space-between;
  gap: 24px;
}
.work-card-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.work-card-cta p { color: var(--gray-400); }
.work-card-cta .btn { align-self: flex-start; }

/* ============ Contacto ============ */

.section-contact { padding-top: 0; }

.contact-head { text-align: center; }
.contact-head .eyebrow { justify-content: center; }
.contact-head .section-sub { margin-left: auto; margin-right: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}

.form-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 8px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-raised);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 26px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  background: var(--bg);
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease-out, background 0.2s ease-out;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-400); }

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-hint { font-size: 0.85rem; color: var(--gray-500); max-width: 260px; }
.form-error {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--coral-500);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-raised);
}
.side-card h3 { font-size: 1.25rem; margin-bottom: 20px; }
.side-card-wsp { border: 1.5px solid var(--green-200); }
.side-card-wsp .btn { width: 100%; }

.side-list { list-style: none; }
.side-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-50);
}
.side-list li:last-child { border-bottom: none; }
.side-ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-100);
  color: var(--green-500);
  display: grid;
  place-items: center;
}
.side-ico svg { width: 20px; height: 20px; }
.side-list strong { display: block; font-size: 0.95rem; }
.side-list a { text-decoration: none; color: inherit; }
.side-list a:hover strong { color: var(--green-500); }
.side-list span { font-size: 0.83rem; color: var(--gray-500); }

/* ============ Footer ============ */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid #ffffff1f;
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: 18px;
  font-size: 0.95rem;
}
.footer .brand-name { color: var(--white); }
.footer .brand-name em { color: var(--green-300); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--gray-100);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.95rem;
  transition: color 0.2s ease-out;
}
.footer-col a:hover { color: var(--green-300); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.to-top {
  width: 48px; height: 48px;
  border: 1px solid #ffffff40;
  border-radius: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}
.to-top:hover { background: #ffffff1a; transform: translateY(-3px); }

/* ============ Animaciones (estado inicial para GSAP) ============ */

.reveal { opacity: 0; transform: translateY(40px); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding-top: 140px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .process-line::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .nav.menu-open {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-overlay);
    flex-wrap: wrap;
  }
  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 3;
    box-shadow: none;
    padding: 12px 0 0;
  }
  .nav.menu-open .nav-actions {
    display: flex;
    width: 100%;
    order: 4;
    padding: 12px 0 8px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* Marca compacta: logo + nombre siempre en un solo renglón */
  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 1.05rem; }

  /* Hero compacto: que botones y tarjetas asomen apenas se entra */
  .hero { padding: 118px 0 50px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: 2.15rem; }
  .hero-sub {
    font-size: 0.95rem;
    margin-top: 14px;
    line-height: 1.45;
  }
  .hero-ctas { margin-top: 22px; gap: 10px; }
  .hero-ctas .btn-lg { padding: 13px 24px; font-size: 0.95rem; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-circles { grid-template-columns: 1fr 1fr; }
  .stat { margin: -8px; padding: 16px; }
  .stat-label { font-size: 0.8rem; }
  .process-line { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  /* Nodo del proceso: círculo + título en el mismo renglón, texto debajo */
  .process-node {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
  }
  .process-node .node-dot { width: 44px; height: 44px; margin-bottom: 0; }
  .process-node .node-dot svg { width: 22px; height: 22px; }
  .process-node h3 { margin-bottom: 0; font-size: 1.35rem; }
  .process-node p { grid-column: 1 / -1; margin-top: 8px; }
  .notif { max-width: 100%; }
  .hero-cards.wheel { height: 460px; }
  .hero-cards.wheel .notif { max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .section-green { margin: 0 8px; padding: 80px 0; }
  .hero-ctas .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer .btn { width: 100%; }
}
