/* ========================================
   IKIGAI CONCEPT - CSS Unificado
   ======================================== */

/* ─── VARIABLES ─── */
:root {
  --rojo: #C0392B;
  --rojo-dark: #a93226;
  --negro: #111111;
  --gris-oscuro: #1e1e1e;
  --gris-medio: #4a4a4a;
  --gris-suave: #f2f2f0;
  --gris-borde: #e0e0e0;
  --blanco: #ffffff;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILIDADES ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--negro);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gris-medio);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── BOTONES ─── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, border-color 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rojo);
  color: var(--blanco);
}

.btn-primary:hover {
  background: var(--rojo-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blanco);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-ghost:hover {
  border-color: var(--blanco);
  background: rgba(255,255,255,0.08);
}

.btn-white {
  background: var(--blanco);
  color: var(--rojo);
  padding: 1rem 2.6rem;
}

.btn-white:hover {
  background: #f0e8e7;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── NAVEGACIÓN ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blanco);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav.transparent {
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

nav.transparent.scrolled {
  background: var(--blanco);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  text-decoration: none;
  transition: color 0.3s;
}

nav.transparent .nav-logo {
  color: var(--blanco);
}

nav.transparent.scrolled .nav-logo {
  color: var(--negro);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gris-medio);
  text-decoration: none;
  transition: color 0.3s;
}

nav.transparent .nav-links a {
  color: rgba(255,255,255,0.9);
}

nav.transparent.scrolled .nav-links a {
  color: var(--gris-medio);
}

.nav-links a:hover,
nav.transparent .nav-links a:hover {
  color: var(--rojo) !important;
}

.nav-cta {
  background: var(--rojo);
  color: var(--blanco) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--rojo-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--negro);
  display: block;
  transition: background 0.3s;
}

nav.transparent .hamburger span {
  background: var(--blanco);
}

nav.transparent.scrolled .hamburger span {
  background: var(--negro);
}

/* ─── HERO ─── */
#hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17,17,17,0.75) 40%, rgba(192,57,43,0.35) 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 0 5%;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rojo);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(192,57,43,0.5);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ─── SECCIONES ─── */
section {
  padding: 6rem 5%;
}

/* ─── SOBRE NOSOTROS ─── */
#sobre {
  background: var(--blanco);
}

.sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.sobre-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--blanco);
}

.sobre-text .section-subtitle {
  margin-bottom: 2rem;
}

.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat {
  border-top: 2px solid var(--rojo);
  padding-top: 1rem;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--negro);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gris-medio);
  margin-top: 0.3rem;
}

/* ─── SERVICIOS ─── */
#servicios {
  background: var(--gris-suave);
}

.servicios-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.servicios-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--gris-borde);
}

.servicio-card {
  background: var(--blanco);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.servicio-card:hover {
  transform: translateY(-4px);
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--rojo);
  transition: height 0.4s ease;
}

.servicio-card:hover::before {
  height: 100%;
}

.servicio-card:hover .servicio-num {
  color: var(--rojo);
}

.servicio-num {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gris-suave);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
  transition: color 0.5s ease;
}

.servicio-icon {
  width: 48px;
  height: 48px;
  background: var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.servicio-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blanco);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.servicio-card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.servicio-card p {
  font-size: 0.95rem;
  color: var(--gris-medio);
  line-height: 1.7;
}

/* ─── POR QUÉ ELEGIRNOS ─── */
#porque {
  background: var(--blanco);
}

.porque-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.porque-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.porque-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.porque-dot {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.porque-dot svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--blanco);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.porque-item h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.porque-item p {
  font-size: 0.9rem;
  color: var(--gris-medio);
}

.porque-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ─── PROCESO ─── */
#proceso {
  background: var(--gris-oscuro);
  color: var(--blanco);
}

.proceso-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proceso-inner .section-title {
  color: var(--blanco);
}

.proceso-inner .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.proceso-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.paso {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rojo);
  color: var(--blanco);
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.paso:not(.active) .paso-num {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
}

.paso h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.paso p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ─── CTA FINAL ─── */
#cta {
  background: var(--rojo);
  padding: 7rem 5%;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

#cta .section-label {
  color: rgba(255,255,255,0.7);
}

#cta h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

#cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 2.8rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--negro);
  color: rgba(255,255,255,0.5);
  padding: 4rem 5% 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blanco);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blanco);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--rojo);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--rojo);
}

/* ─── PÁGINAS INTERIORES ─── */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  padding-left: 5%;
  padding-right: 5%;
  background: var(--gris-suave);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: 'Ikigai';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-title);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-hero-inner {
  max-width: 700px;
}

.page-hero-inner.centered {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--gris-medio);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--rojo);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--gris-medio);
  font-weight: 300;
  max-width: 480px;
}

/* ─── CONTACTO ─── */
.contact-section {
  padding: 6rem 5%;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--gris-medio);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--gris-suave);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--rojo);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris-medio);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--negro);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-text a:hover {
  color: var(--rojo);
}

.contact-image {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ─── FORMULARIOS ─── */
.form-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rojo);
  display: block;
  margin-bottom: 0.8rem;
}

.contact-form-wrap h2 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-medio);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--negro);
  background: var(--gris-suave);
  border: 1.5px solid transparent;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rojo);
  background: var(--blanco);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rojo);
  cursor: pointer;
}

.form-check span {
  font-size: 0.85rem;
  color: var(--gris-medio);
}

.form-check a {
  color: var(--rojo);
  text-decoration: none;
}

.form-check a:hover {
  text-decoration: underline;
}

.btn-submit {
  background: var(--rojo);
  color: var(--blanco);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--rojo-dark);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-feedback {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success {
  background: #eaf7ec;
  color: #2d7a3a;
  border-left: 3px solid #2d7a3a;
}

.form-feedback.error {
  background: #fdecea;
  color: var(--rojo);
  border-left: 3px solid var(--rojo);
}

/* ─── CONTENIDO LEGAL ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.legal-content h2 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--negro);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--gris-oscuro);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--gris-medio);
  line-height: 1.7;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gris-medio);
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--rojo);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.highlight-box {
  background: var(--gris-suave);
  border-left: 3px solid var(--rojo);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .sobre-inner,
  .porque-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sobre-img-accent {
    display: none;
  }

  .proceso-steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .proceso-steps::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .page-hero::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    padding: 1.5rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  nav.transparent .nav-links a {
    color: var(--gris-medio) !important;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .servicios-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .proceso-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
