/* =========================================
   Vord — estilos
   ========================================= */

:root {
  --azul: #00ADE7;
  --lima: #B9D305;
  --cafe: #785741;
  --hueso: #F6F2EE;
  --pizarra: #2C3742;
  --blanco: #FFFFFF;

  --semaforo-verde: #2E9E6B;
  --semaforo-ambar: #E8A400;
  --semaforo-rojo: #C0392B;

  --font-title: 'Nunito', sans-serif;
  --font-body: 'Urbanist', sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 24px rgba(44, 55, 66, 0.08);
  --shadow-md: 0 12px 32px rgba(44, 55, 66, 0.12);

  --container-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pizarra);
  background: var(--blanco);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--pizarra);
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + 1rem, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }

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

a { color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

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

.section-narrow {
  max-width: 760px;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--azul);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--azul);
  color: var(--blanco);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}
.skip-link:focus {
  left: 0;
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: normal;
  max-width: 100%;
  min-height: 44px;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }

.btn-cta {
  background: var(--lima);
  color: var(--pizarra);
  box-shadow: var(--shadow-soft);
}
.btn-cta:hover {
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--azul);
  color: var(--azul);
}
.btn-outline:hover {
  background: var(--azul);
  color: var(--blanco);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--blanco);
}
.btn-whatsapp:hover {
  box-shadow: var(--shadow-md);
}

/* =========================================
   Header
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 55, 66, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--pizarra);
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover { color: var(--azul); }

.nav-cta { padding: 11px 22px; font-size: 0.9rem; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle-bars span {
  width: 22px;
  height: 2.5px;
  background: var(--pizarra);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px 24px 28px;
  background: var(--blanco);
  border-top: 1px solid rgba(44, 55, 66, 0.06);
}

.mobile-nav[hidden] { display: none; }

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--pizarra);
}

.mobile-cta { align-self: flex-start; }

@media (max-width: 860px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
}

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

.hero {
  background: linear-gradient(180deg, var(--hueso) 0%, var(--blanco) 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--cafe);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo {
  width: 100%;
  height: auto;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.hero-photo-badge {
  position: absolute;
  right: 12px;
  bottom: -16px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  background: var(--blanco);
  padding: 6px;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-photo { max-width: 200px; }
}

/* =========================================
   Sections (general)
   ========================================= */

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--hueso);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--cafe);
  margin-bottom: 40px;
}

#el-problema {
  text-align: center;
}

#el-problema p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-intro p {
  text-align: left;
  margin-bottom: 0;
}

/* Placeholder de foto humana — reemplazar por <img> real cuando se tenga la foto */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--hueso);
  border: 2px dashed rgba(0, 173, 231, 0.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--azul);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.photo-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: 0.7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   Barra de confianza
   ========================================= */

.trust-bar {
  background: var(--pizarra);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--hueso);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.trust-dot {
  color: var(--lima);
  opacity: 0.8;
}

@media (max-width: 640px) {
  .trust-dot { display: none; }
  .trust-bar-inner { flex-direction: column; gap: 6px; }
}

/* =========================================
   Cómo funciona
   ========================================= */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.step-card {
  display: flex;
  flex-direction: column;
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.step-card p {
  margin: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 800;
  margin-bottom: 16px;
}

.steps-photo {
  width: 100%;
  height: auto;
  max-width: 640px;
  margin: 28px auto 0;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 640px) {
  .steps-photo { aspect-ratio: 4 / 3; }
}

.semaforo {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
}

.semaforo-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.semaforo-verde { background: var(--semaforo-verde); }
.semaforo-ambar { background: var(--semaforo-ambar); }
.semaforo-rojo { background: var(--semaforo-rojo); }

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--blanco);
  border: 2px solid rgba(0, 173, 231, 0.16);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  border-color: var(--azul);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 173, 231, 0.12);
  color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  color: var(--azul);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.service-card p {
  color: var(--cafe);
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.service-benefit {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--azul);
  margin: auto 0 0 !important;
  padding-top: 8px;
}

/* Tarjeta destacada tipo CTA dentro de la grilla de servicios */
.service-card-cta {
  background: var(--azul);
  border-color: var(--azul);
  color: var(--blanco);
  text-align: center;
  align-items: center;
}

.service-card-cta:hover {
  border-color: var(--azul);
}

.service-card-cta .service-icon {
  background: rgba(255, 255, 255, 0.22);
  color: var(--blanco);
}

.service-card-cta h3 {
  color: var(--blanco);
}

.service-card-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card-cta .btn {
  margin-top: auto;
}

.services-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.services-grid-fixed {
  grid-template-columns: repeat(3, 1fr);
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-fixed { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services-grid-fixed { grid-template-columns: 1fr; }
}

/* =========================================
   Por qué Vord
   ========================================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

.why-card {
  display: flex;
  flex-direction: column;
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
}

.why-card h3 { color: var(--azul); }

@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Planes (sección general, sin tabla)
   ========================================= */

.plan-block {
  text-align: center;
}

.plan-block p {
  color: var(--cafe);
}

.plan-highlight {
  background: var(--hueso);
  border: 2px solid rgba(185, 211, 5, 0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 32px 0;
}

.plan-highlight p {
  margin: 0;
  color: var(--pizarra);
  font-size: 1.1rem;
}

.plan-highlight strong {
  color: var(--cafe);
  font-family: var(--font-title);
}

.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* =========================================
   Testimonios
   ========================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  margin: 0;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul) 0%, #0089b8 100%);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 22px;
  height: 22px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--pizarra);
  margin-bottom: 16px;
}

.testimonial-card footer {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cafe);
  margin-top: auto;
}

@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Lead magnet
   ========================================= */

.lead-magnet-section {
  background: var(--hueso);
  padding: 40px 0;
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 22px 32px;
  box-shadow: var(--shadow-soft);
}

.lead-magnet-copy h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.lead-magnet-copy p {
  color: var(--cafe);
  margin: 0;
  font-size: 0.88rem;
}

.lead-magnet-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-magnet-form input {
  flex: 1 1 160px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 10px 16px;
  border: 2px solid rgba(44, 55, 66, 0.14);
  border-radius: 999px;
  background: var(--hueso);
  color: var(--pizarra);
}

.lead-magnet-form input:focus {
  border-color: var(--azul);
  outline: none;
}

.lead-magnet-form .btn {
  padding: 12px 22px;
  font-size: 0.88rem;
}

@media (max-width: 780px) {
  .lead-magnet-inner { grid-template-columns: 1fr; padding: 20px 24px; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-form .btn { width: 100%; }
}

/* =========================================
   Sobre el equipo
   ========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo-placeholder {
  aspect-ratio: 1 / 1;
}

.avatar-team {
  background: linear-gradient(135deg, var(--azul) 0%, #0089b8 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  color: var(--blanco);
}

.avatar-team svg {
  width: 60%;
  height: auto;
}

.about-copy h2 { color: var(--cafe); }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo-placeholder { max-width: 170px; margin: 0 auto; }
}

/* =========================================
   FAQ / Accordion
   ========================================= */

.accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--hueso);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item h3 { margin: 0; font-size: 1rem; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pizarra);
  text-align: left;
}

.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--azul);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.accordion-icon::before {
  width: 20px; height: 3px; top: 8.5px; left: 0;
}
.accordion-icon::after {
  width: 3px; height: 20px; top: 0; left: 8.5px;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
}

.accordion-panel p {
  margin: 0 0 20px;
  color: var(--cafe);
}

.accordion-item.open .accordion-panel {
  max-height: 300px;
}

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

.contact-section {
  background: var(--azul);
  color: var(--blanco);
}

.contact-title {
  text-align: center;
  color: var(--blanco);
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
  color: var(--pizarra);
}

.form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-weight: 700;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid rgba(44, 55, 66, 0.14);
  border-radius: var(--radius-sm);
  background: var(--hueso);
  color: var(--pizarra);
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--azul);
  outline: none;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--cafe);
  text-align: center;
}
.form-note a { color: var(--azul); font-weight: 600; text-decoration: underline; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.contact-link {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--blanco);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}

.contact-side .btn { width: 100%; }
.contact-side .btn-outline {
  border-color: var(--blanco);
  color: var(--blanco);
}
.contact-side .btn-outline:hover {
  background: var(--blanco);
  color: var(--azul);
}

@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

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

.site-footer {
  background: var(--pizarra);
  color: var(--hueso);
  padding: 56px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-tagline {
  margin-top: 16px;
  font-weight: 600;
  color: var(--hueso);
}

.footer-legal {
  font-size: 0.85rem;
  color: rgba(246, 242, 238, 0.65);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--hueso);
  opacity: 0.85;
}
.footer-nav a:hover { opacity: 1; color: var(--azul); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact a {
  text-decoration: none;
  color: var(--azul);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--hueso);
  opacity: 0.85;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-social a:hover { opacity: 1; color: var(--azul); }

.footer-year {
  color: rgba(246, 242, 238, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

/* =========================================
   WhatsApp float button
   ========================================= */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 400;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 400;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: #0089b8;
}

/* =========================================
   Scroll reveal
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .btn, .whatsapp-float, .back-to-top, .accordion-panel {
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
