/* ===========================================================
  PILATES PROMO – NEUROMORPHIC/BIOMORPHIC CSS MODULAR SYSTEM
  modern, responsive, triadic color scheme
  font: Manrope + Rubik | for all UI elements
=========================================================== */

:root {
  /* --- Triadic Palette --- */
  --primary:      #1c2366;      /* Deep Indigo Blue */
  --primary-dark: #121555;
  --primary-light: #373fa8;

  --accent:       #1ca389;      /* Vivid Green-Teal */
  --accent-dark:  #16786c;
  --accent-light: #84e5d2;

  --secondary:    #d38019;      /* Warm Orange */
  --secondary-dark: #ad690f;
  --secondary-light: #ffd59d;

  --bg-gradient: linear-gradient(120deg, #f5f7fa 0%, #e6f1eb 42%, #e1e8f9 100%);
  --bg-card:     #f7faff;
  --bg-glass:    rgba(245, 250, 255, 0.88);

  --txt:         #222222;
  --txt-dark:    #111724;
  --txt-light:   #fff;
  --txt-muted:   #636987;

  --shadow:      0 2.5px 18px 0 rgba(45, 53, 100, 0.21);
  --shadow-mini: 0 1px 7px 0 rgba(36, 40, 84, 0.13);
  --neu-shadow:  8px 8px 25px #d2e0f2, -8px -8px 18px #ffffff;

  --radius-xl:   2.2rem;
  --radius-lg:   1.5rem;
  --radius:      1rem;

  --blur:        18px;

  --transition:  all 0.17s cubic-bezier(.51,.19,.39,1.16);
}

/* -----------------------------
 FONTS & GLOBAL RESETS
----------------------------- */
html {
  scroll-behavior: smooth;
  background: var(--bg-gradient);
}
body {
  margin: 0;
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  color: var(--txt);
  background: var(--bg-gradient);
  min-height: 100vh;
  font-size: 1.10rem;
  line-height: 1.68;
}
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.01em;
  color: var(--txt-dark);
}
h1 { font-size: 2.7rem; line-height: 1.08; }
h2 { font-size: 2rem;   line-height: 1.14; }
h3 { font-size: 1.25rem;}
h4, h5 { font-size: 1.1rem;}

.section-title, .section-title-center {
  text-align: center;
  margin-top: 0;
  color: var(--txt-dark);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
}
p, ul, ol, li { margin: 0; padding: 0; }
ul,ol { margin-bottom:1.1em;}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.17s, box-shadow 0.16s;
  font-weight: 500;
}
a:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}
a:hover, a:active {
  color: var(--accent);
  text-decoration: underline;
  box-shadow: 0 3px 24px 0 rgba(28,163,137,0.11);
}

/* Global container and column handling */
#main-container, .neuromorphic-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  background: var(--bg-gradient);
  border-radius: var(--radius-xl);
  box-shadow: none;
  position: relative;
  padding: 0;
}
.is-two-thirds {
  width: 90%;
  max-width: 1190px;
  margin: 0 auto;
}

/* --------------------------------------
  NEUROMORPHIC DESIGN
-------------------------------------- */
.neuromorphic-header, .neuromorphic-footer, .neuromorphic-section, .neuromorphic-form, .neuromorphic, .neuromorphic-container {
  background: var(--bg-glass);
  box-shadow: var(--shadow), var(--neu-shadow);
  border-radius: var(--radius-xl);
  position: relative;
}
.neuromorphic-form, .neuromorphic-footer, .neuromorphic-header {
  background: rgba(243,246,251,0.98);
  -webkit-backdrop-filter: blur(3.7px);
  backdrop-filter: blur(3.7px);
}

/* Biomorphic edges */
.neuromorphic-section {
  border-radius: clamp(20px, 3vw, 3rem) ;
  margin: 3.7rem auto 2.8rem;
  padding: 2.4rem 2.0rem;
  box-shadow: var(--neu-shadow), 0 0 0 1.5px #e4eefb inset;
}
@media(max-width: 800px) {
  .neuromorphic-section {
    padding: 1.55rem 0.7rem;
  }
  .is-two-thirds { width: 98%; }
}
@media(max-width: 600px) {
  .neuromorphic-section { margin: 2rem auto 0.7rem; }
  .is-two-thirds { width: 100%; }
}

/* ----------------------------------
  HEADER / NAVIGATION BAR
---------------------------------- */
.header {
  width: 100%;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 0.11rem 0;
  position: sticky;
  background: linear-gradient(90deg, #fafdfe 80%, #e1e8f9 100%);
  min-height: 70px;
  box-shadow: 0 3px 17px -5px rgba(28,35,102,0.09);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 .9rem;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 70px;
}
.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-nav li a, .mobile-nav li a {
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.8rem;
  transition: color 0.18s;
  font-size: 1rem;
  color: var(--primary-dark);
  border-radius: 8px;
  font-weight: 700;
}
.main-nav li a:hover, .main-nav li a:active {
  color: var(--accent);
  background: rgba(28,163,137,0.10);
  text-decoration: underline;
}
.burger {
  background: none;
  border: none;
  outline: none;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 901;
}
.burger span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  transition: 0.19s;
}
@media(max-width:1024px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}
.mobile-nav {
  display: none;
  position: absolute;
  top: 80px;
  right: 7vw;
  min-width: 240px;
  background: var(--bg-glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 755;
  padding: 2rem 2rem 1rem 1.2rem;
  font-family: 'Manrope', sans-serif;
}
.mobile-nav.active { display: block; }
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.mobile-nav li a {
  color: var(--primary);
  font-size: 1.17rem;
  font-weight: 700;
  border-radius: 5px;
}
.mobile-nav li a:hover { color: var(--accent); background:rgba(28,163,137,0.13); }

/* ----------------------------------------
    HERO SECTION
---------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  margin: 3.5rem auto 3rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.particle-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* fallback bg gradient */
  background: linear-gradient(120deg, rgba(28,35,102,0.45) 12%, rgba(28,163,137,0.12) 84%);
}
/* Ensures absolute overlay for gradient darkening on hero image */
.hero-section .image-container {
  position: relative;
  overflow: hidden;
}

.hero-section .image-container img {
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 340px;
  border-radius: var(--radius-xl);
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 38px 0 rgba(44, 53, 110, 0.21);
  position: relative;
}
.hero-content h1, .hero-content p {
  z-index: 15;
  color: var(--txt-light);
  text-align: center;
}
.hero-content h1 {font-size:3.3rem;}
.hero-content p {
  font-size: 1.32rem;
  max-width: 750px;
  margin: 2.1rem auto 2.5rem;
}
@media (max-width:800px) {
  .hero-content h1 { font-size:2.1rem; }
  .hero-content p { font-size:1.04rem; }
  .hero-section .image-container img { min-height:170px;}
}
@media (max-width:500px) {
  .hero-section {margin-top:1.1rem;}
}

/* ----------------------------------------
  CARDS, TEAM, FEATURES, METHODOLOGY
---------------------------------------- */
.card-row, .features-row, .team-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-evenly;
  align-items: stretch;
}
.card, .item, .testimonial, .team-member, .product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--neu-shadow), var(--shadow-mini);
  transition: box-shadow 0.22s, transform 0.19s;
  padding: 1.75rem 1.1rem 1.5rem 1.1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;  /* STROGO: center for all cards */
  text-align: center;
  min-width: 200px;
}
.card:hover {
  box-shadow: 0 9px 38px 0 rgba(102,193,183,0.15), 0 2px 16px 0 rgba(44,68,98,0.07);
  transform: translateY(-7px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.15rem;
}

/* --> IMAGE CONTAINER/NESTING STRICT RULES */
.card-image, .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}
.card-image img, .image-container img, .team-member img {
  width: 100%;
  object-fit: cover;
  height: 180px;
  min-height: 160px;
  max-height: 320px;
  border-radius: var(--radius);
  margin: 0 auto;
  display: block;
  background: #dbe1e9;
  box-shadow: 0 2px 12px 0 rgba(30,163,137,0.09);
}
.team-row .card-image img,
.team-row .image-container img { height: 310px; max-height: 350px; }
@media(max-width:900px) {
  .team-row .card, .features-row .card, .card-row .card { min-width: 140px; max-width:100%; }
}

.card .btn, .card button { margin-top:1.2rem; }

@media (max-width: 900px) {
  .card-row, .features-row, .team-row {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .card, .item, .testimonial, .team-member, .product-card { padding:1.2rem 0.5rem;}
}
@media (max-width: 520px) {
  .card, .item, .testimonial, .team-member, .product-card { min-width:unset; width:98%; }
}

/* ----------------------------------------
  SECTION SPECIFICS, RESPONSIVE LAYOUTS
---------------------------------------- */
.section-content,
.mission-img-group,
.innovation-row,
.bts-section .is-two-thirds,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap:2.2rem;
}
.mission-img-group,
.form-row,
.bts-section .is-two-thirds {
  justify-content: center;
  align-items: center;
}
.section-content {
  flex-direction: column;
}
@media (max-width: 900px){
  .innovation-row, .bts-section .is-two-thirds, .form-row { flex-direction: column;gap:1.25rem;}
}

.mission-img-group .image-container,
.features-row .image-container,
.innovation-row .image-container, .form-row .image-container {
  min-width: 160px; max-width:340px; 
  height:210px;
}
.mission-img-group .image-container img,
.features-row .image-container img,
.innovation-row .image-container img, .form-row .image-container img {
  min-height:120px; max-height:210px;
}
@media(max-width: 500px){
  .mission-img-group .image-container, .features-row .image-container { width:98%; min-width:80px; }
}

/* ----------------------------------------
   BUTTONS: GLOBAL
---------------------------------------- */
.btn, .btn-main, button, input[type="submit"] {
  appearance: none;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  padding: 0.68em 2.1em;
  background: linear-gradient(110deg, var(--primary) 60%, var(--accent) 90%);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  box-shadow: 0 2.2px 12px rgba(28,163,137,0.21);
  transition: background 0.22s, color 0.15s, transform 0.2s, box-shadow 0.17s;
  margin: 0.6em auto 0.6em auto;
  letter-spacing: 0.03em;
  display: inline-block;
  outline: 0;
}
.btn-main, .btn-slider-micro, .send-microinteract { background: linear-gradient(120deg,#1ca389 42%,#1c2366 80%); }
.btn:hover,
.btn-main:hover,
.btn-slider-micro:hover,
.send-microinteract:hover {
  background:linear-gradient(110deg,var(--accent) 50%,var(--secondary) 98%);
  color: #fff;
  box-shadow: 0 9px 38px 0 rgba(28,163,137,0.25), 0 2px 16px 0 rgba(44,68,98,0.06);
  transform: translateY(-2.6px) scale(1.028);
}
.btn:active {
  background: linear-gradient(110deg, var(--accent-dark), var(--primary-dark));
  color: #fff;
}

/* Microinteracciones */
.pulse-microinteract, .btn-slider-micro, .send-microinteract {
  animation: pulseBtn 1.3s infinite cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(28,163,137,.21);}
  60% { box-shadow: 0 0 0 13px rgba(28,163,137,0);}
  100% { box-shadow: 0 0 0 0 rgba(28,163,137,0);}
}

/* ----------------------------------------
     FORM STYLES (CONTACT)
---------------------------------------- */
form, .neuromorphic-form {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 2rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--neu-shadow), var(--shadow-mini);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
label {
  font-family: 'Manrope', sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.8em;
}
input[type="text"], input[type="email"], textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
  outline: none;
  border-radius: 1.5rem;
  border: none;
  background: #eef4fa;
  box-shadow: 2px 3px 18px #eef3fb, -1px -1px 6px #f8faff;
  padding: 0.9em 1.2em;
  margin-bottom: 0.2em;
  transition: box-shadow 0.17s;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  box-shadow: 0 0 7px 1px var(--accent);
  background: #f8ffff;
}
textarea {
  min-height: 104px;
  resize: vertical;
}
#formFeedback {
  color: var(--accent-dark);
}

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer {
  background: var(--bg-glass);
  border-radius: var(--radius-xl);
  margin-top: 2.9rem;
  padding: 2.9rem 1.3rem 1.2rem 1.3rem;
  box-shadow: var(--neu-shadow), 0 3px 9px 0 rgba(30,163,137,0.06);
}

.footer-top {
  display: flex;
  gap: 1.7rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand {
  min-width: 210px;
}
.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
}
.footer-links a {
  color: var(--primary-dark);
  font-family: 'Manrope', sans-serif;
  transition: color 0.12s;
}

.footer-links a:hover { color: var(--accent); }
.footer-social {
  margin-top: 1.7rem;
  margin-bottom: .15rem;
}
.footer-social a {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin: 0 1.1rem;
  text-decoration: underline;
  transition: color 0.16s;
  display: inline-block;
}
.footer-social a:hover {
  color: var(--accent);
  background: none;
}
.footer .footer-copyright {
  opacity: .77;
  font-size: 0.95rem;
  color: #222;
  margin: 0.5rem auto 0 auto;
}

@media (max-width: 800px){
  .footer-top { flex-direction: column; align-items:center; }
  .footer-links ul { justify-content: center;}
  .footer-brand {text-align: center;}
  .footer-social { text-align: center;}
}

.legal-links { margin-top:0.6rem; }

.footer-social .icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.17rem;
  margin-right: 0.5rem;
  color: var(--accent);
}

.footer-legal, .footer-policy, .footer-copyright {
  font-size: 0.94rem;
  color: #333;
  opacity: .77;
  text-align: center;
}
/* ----------------------------------------
   SOCIAL ICONS FOR FOOTER (simple text-based)
---------------------------------------- */
.footer-social .footer-icon {
  font-family: Manrope, sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: var(--accent-dark);
  margin-right: 0.4em;
}
@media(max-width:400px){
  .footer-social { font-size:0.9rem;}
}

/* ----------------------------------------
   EXTERNAL RESOURCE LINKS
---------------------------------------- */
.external-link-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 2rem 0;
}
.external-link {
  background: linear-gradient(110deg,var(--accent-light) 2%,var(--secondary-light) 95%);
  border-radius: 1.2rem;
  padding: 0.5em 1.5em;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 1.1px 8px 0 rgba(28,163,137,0.14);
  transition: background 0.18s, color 0.16s;
  display: inline-block;
  text-align:center;
}
.external-link:hover {
  background: linear-gradient(120deg,var(--primary-light),var(--accent-light) 60%);
  color: #fff;
  text-decoration: underline;
}
/* ----------------------------------------
   CUSTOM SLIDER (UI)
---------------------------------------- */
.custom-slider[type="range"], #progreso-slider[type="range"] {
  appearance: none;
  width: 220px;
  height: 9px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--accent-light) 0%,var(--secondary) 100%);
  outline: none;
  transition: box-shadow 0.14s;
  box-shadow: 0 3px 13px 0 rgba(28,163,137,0.10) inset, 0 2px 6px rgba(28,163,137,0.13);
}
.custom-slider[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  border-radius: 45%;
  box-shadow: 0 1px 7px 0 rgba(28,163,137,0.19);
  transition: background 0.19s;
  cursor: pointer;
  border: 2.5px solid var(--accent);
}
.custom-slider[type="range"]:focus {
  outline: 2px solid var(--accent);
}
.custom-slider[type="range"]:hover::-webkit-slider-thumb { background: var(--accent-dark);}
.custom-slider[type="range"]::-moz-range-thumb { /* For Firefox */
  width: 22px; height: 22px;
  background: var(--primary-light); border-radius: 45%;
  box-shadow: 0 1px 7px 0 rgba(28,163,137,0.19); border: 2.5px solid var(--accent);
}
.custom-slider[type="range"]:hover::-moz-range-thumb { background:var(--accent-dark);}
.custom-slider[type="range"]::-ms-thumb { width: 22px; height: 22px; background:var(--primary-light);}
.custom-slider[type="range"]:hover::-ms-thumb { background:var(--accent-dark);}
.custom-slider[type="range"]::-webkit-slider-runnable-track { border-radius:8px;}
.custom-slider[type="range"]:focus::-webkit-slider-thumb { outline: 2px solid var(--accent);}
@media(max-width:420px){
  .custom-slider[type="range"] { width: 92vw; }
}

/* ----------------------------------------
   SWITCHER/TOGGLE (UI)
---------------------------------------- */
.switcher {
  background: var(--bg-card);
  border-radius:2.5em;
  padding: 6px 14px;
  box-shadow: var(--neu-shadow), var(--shadow-mini);
  gap:0.7em;
  font-family: 'Manrope',sans-serif;
  display:inline-flex;
  align-items:center;
}
.custom-switcher {
  width: 36px;
  height: 18px;
  position: relative;
  accent-color: var(--accent);
  border: none;
}

/* ----------------------------------------
   READ MORE LINK
---------------------------------------- */
a.read-more, .read-more-link {
  display: inline-block;
  padding: 0.5em 1.1em;
  color: #fff;
  background: var(--accent);
  border-radius: 1em;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  transition: background 0.21s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 1.5px 12.5px 0 rgba(28,163,137,0.13);
  letter-spacing: 0.03em;
}
a.read-more:hover, .read-more-link:hover {
  background: var(--secondary);
  color: #fff;
  text-decoration: underline;
  box-shadow: 0 7px 24px 0 rgba(214,128,25,0.18);
}
@media(max-width:480px){
  a.read-more, .read-more-link { width: 82vw; text-align:center; }
}

/* ----------------------------------------
   BEHIND THE SCENES & INNOVATION
---------------------------------------- */
.innovation-row, .bts-section .is-two-thirds {
  align-items: center;
  gap: 2.1rem;
}
.innovation-row > div, .bts-section .is-two-thirds > div { min-width: 300px; }

.innovation-list li {
  position: relative;
  padding-left: 1.95em;
  margin-bottom: 0.8em;
}
.innovation-list li:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 2px 8px 0 rgba(28,163,137,0.13);
  position: absolute;
  left: 0.1em;
  top: 0.25em;
}
@media(max-width:720px){
  .innovation-row, .bts-section .is-two-thirds { flex-direction:column;}
}

/* ----------------------------------------
   PARTICLE BG ANIMATION (GSAP hooks)
---------------------------------------- */
.particle-bg, .particle-canvas {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  position: absolute;
  left: 0; top: 0; right:0; bottom:0;
  pointer-events: none;
}
/* Example demo particles (very subtle fallback) */
.particle-bg:before {
  content: '';
  display: block;
  position: absolute; left: 50%; top: 10%;
  width: 110px; height: 110px;
  background: radial-gradient(circle,rgba(28,163,137,0.11) 45%,transparent 100%);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
  opacity: 0.85;
  animation: particleFloat 5.2s infinite alternate;
}
@keyframes particleFloat {
  0% {transform: translate(-10px, -8px) scale(1);}
  100% {transform: translate(28px, 34px) scale(1.09);}
}

/* ----------------------------------------
   PAGE-SPECIFIC: Terms/Privacy, Success
---------------------------------------- */
.privacy-page, .terms-page {
  padding-top: 100px;
}
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.success-page .success-message {
  text-align: center;
  font-size: 1.65rem;
  color: var(--accent);
  font-family: Manrope, sans-serif;
  margin: 3rem 0;
}

/* ----------------------------------------
   BACKGROUND IMAGES
---------------------------------------- */
[data-prompt], [data-prompt] img, .bg-section {
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
[data-prompt].overlay-gradient, .bg-overlay-dark {
  position: relative;
  background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(33, 40, 81, 0.27)), inherit;
}
[data-prompt]::after, .bg-overlay-gradient::after {
  content: "";
  pointer-events: none;
  position: absolute;
  left:0; top:0; right:0; bottom:0;
  background: linear-gradient(120deg,rgba(0,0,0,0.45),rgba(33,40,81,0.18));
  border-radius: inherit;
  z-index: 1;
}

/* ----------------------------------------
   EXTRA UTILITIES
---------------------------------------- */
.text-center { text-align:center!important; }
.mt-2 { margin-top:2rem;}
.mt-1 { margin-top:1rem;}
.mb-1 { margin-bottom:1rem;}
.mt-0_5 { margin-top:0.5rem;}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:2rem;
}
@media (max-width:600px){
  .grid-2 { grid-template-columns:1fr;}
}
.bold { font-weight:700;}
.italic {font-style:italic;}

/**/
::-webkit-input-placeholder { color: #aab3c8; }
::-moz-placeholder { color: #aab3c8; }
:-ms-input-placeholder { color: #aab3c8; }
::placeholder { color: #aab3c8; }

/* ----------------------------------------
   AOS Animate-on-scroll Hints
---------------------------------------- */
[data-aos] {
  will-change: transform, opacity;
  transition: all 0.5s cubic-bezier(.23,1,.32,1);
  opacity:1;
}

/* ----------------------------------------
   A11Y FOCUS VISIBLE IMPROVEMENT
---------------------------------------- */
:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
}

/* ----------------------------------------
   END
---------------------------------------- */
form, .neuromorphic-form {
     width: 100%;
     max-width: 100%;
    margin: 0 auto;
    /* background: var(--bg-card); */
    padding: 2rem 1.1rem;
    border-radius: var(--radius);
     box-shadow: none;
    display: flex
;
    flex-direction: column;
    gap: 1.1rem;
}
@media (max-width: 768px) {
  nav, .burger{
  display: none;
}
}
