@charset "UTF-8";
/*
Theme Name: elverdad
Theme URI: https://elverdaderosignificadodelexito.com
Description: Version 0.1
Version: 0.1
Author: elverdad
Author URI: https://elverdaderosignificadodelexito.com

*/
/* =========================================================
   TOKENS (CSS custom properties para theming runtime)
   + Helpers Sass para reutilización
   ========================================================= */
:root {
  --bg-950:#0A0F13;
  --bg-900:#0F1A20;
  --bg-800:#132833;
  --slate-600:#5A7377;
  --teal-400:#6A9C9A;
  --accent-1:#c53a10;
  --accent-2:#e25542;
  --accent-3:#3FC1C9;
  --text:#fff;
  --muted:#c9d1d9;
  --font-body:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji";
  --leading:1.65;
  --fs-p:clamp(1.125rem,2.6vw,1.5rem);
  --fs-h1:clamp(2.4rem,6.5vw,5rem);
  --fs-h2:clamp(1.9rem,4.8vw,3.2rem);
  --pad-section:clamp(48px,8vh,120px);
  --container: min(72rem, 92vw);
  --gap:clamp(22px,3vw,36px);
  --radius:14px;
  --radius-sm:10px;
  --shadow-lg:0 26px 70px rgba(0,0,0,.55);
  --shadow-cta:0 8px 28px rgba(226,85,66,.35);
  --shadow-pop:0 18px 50px rgba(0,0,0,.45);
  --dur:900ms;
  --easing:cubic-bezier(.2,.7,.2,1);
  --focus:#3FC1C9;
}

/* ====== Sass aliases (referencian las CSS vars) ====== */
/* ====== Breakpoints simples ====== */
/* ====== Mixins utilitarias ====== */
/* ====== Placeholders reutilizables ====== */
a:focus-visible, .card a.card-btn:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0 4px color-mix(in srgb, var(--focus) 30%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--focus) 30%, transparent);
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: var(--radius-sm);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

/* =========================================================
   BASE
   ========================================================= */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font: 16px/var(--leading) var(--font-body);
  color: var(--text);
  background: var(--bg-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga" 1, "kern" 1;
  font-feature-settings: "liga" 1, "kern" 1;
}

/* Tipografía base */
p {
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--fs-p);
  max-width: 65ch;
}

/* =========================================================
   SECCIONES + CONTAINER
   ========================================================= */
section {
  min-block-size: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--pad-section) + env(safe-area-inset-top)) clamp(16px, 1.8vw, 24px) calc(var(--pad-section) + env(safe-area-inset-bottom));
  opacity: 0;
  -webkit-transform: translateY(36px);
  -ms-transform: translateY(36px);
  transform: translateY(36px);
  -webkit-transition: opacity var(--dur) var(--easing), -webkit-transform var(--dur) var(--easing);
  transition: opacity var(--dur) var(--easing), -webkit-transform var(--dur) var(--easing);
  transition: opacity var(--dur) var(--easing), transform var(--dur) var(--easing);
  transition: opacity var(--dur) var(--easing), transform var(--dur) var(--easing), -webkit-transform var(--dur) var(--easing);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  /* rendimiento */
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}
section.visible {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: var(--gap);
  justify-items: center;
}

/* Encabezados */
h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.12;
  font-size: var(--fs-h1);
}

h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: var(--fs-h2);
  color: var(--teal-400);
}

.tag::after {
  content: "";
  display: block;
  height: 2px;
  width: 160px;
  margin: 0.9rem auto 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--accent-1)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
  opacity: 0.8;
}

/* =========================================================
   BOTONES
   ========================================================= */
.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 14px;
  row-gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
  min-inline-size: 44px;
  min-block-size: 44px;
}
.btn:active {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}
.btn-primary {
  background: var(--accent-1);
  color: var(--text);
  -webkit-box-shadow: var(--shadow-cta);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  -webkit-filter: brightness(1.07);
  filter: brightness(1.07);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.062745098);
}

/* =========================================================
   ESTADOS DE FOCO (enlaces y botones dentro de card)
   ========================================================= */
/* =========================================================
   EFECTOS GLOBALES
   ========================================================= */
.vignette::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background: radial-gradient(120% 120% at 50% 50%, transparent 42%, rgba(0, 0, 0, 0.5) 100%);
  mix-blend-mode: multiply;
}

.grain::after {
  content: "";
  position: fixed;
  inset: -100px;
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.04"/></svg>');
}

@media (prefers-reduced-motion: reduce) {
  section {
    -webkit-transition: none;
    transition: none;
  }
  .parallax {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
/* =========================================================
   PARALELAJE
   ========================================================= */
.parallax {
  position: absolute;
  inset: -10% -10% -10% -10%;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

/* =========================================================
   FONDOS POR SECCIÓN
   ========================================================= */
.s1 {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-950)), to(var(--bg-900)));
  background: linear-gradient(180deg, var(--bg-950), var(--bg-900));
}
.s1 .p1 {
  background: radial-gradient(50% 40% at 78% 18%, color-mix(in srgb, var(--accent-3) 40%, transparent), transparent 60%);
}

.s2 {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--slate-600)), to(var(--bg-900)));
  background: linear-gradient(180deg, var(--slate-600), var(--bg-900));
}
.s2 .p1 {
  background: radial-gradient(18% 18% at 22% 30%, rgba(106, 156, 154, 0.18), transparent 70%), radial-gradient(20% 20% at 72% 26%, rgba(90, 115, 119, 0.22), transparent 72%), radial-gradient(14% 14% at 40% 70%, rgba(63, 193, 201, 0.12), transparent 70%);
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.s3 {
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 6px), -webkit-gradient(linear, left top, left bottom, from(var(--bg-900)), to(var(--bg-800)));
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 6px), linear-gradient(180deg, var(--bg-900), var(--bg-800));
}
.s3 .p1 {
  background: radial-gradient(50% 50% at 20% 20%, rgba(63, 193, 201, 0.1), transparent 60%);
  mix-blend-mode: screen;
}

.s4 {
  background: radial-gradient(40% 40% at 50% 35%, rgba(226, 85, 66, 0.18), transparent 60%), radial-gradient(55% 55% at 60% 25%, rgba(242, 181, 68, 0.16), transparent 65%), -webkit-gradient(linear, left top, left bottom, from(var(--bg-900)), to(var(--bg-800)));
  background: radial-gradient(40% 40% at 50% 35%, rgba(226, 85, 66, 0.18), transparent 60%), radial-gradient(55% 55% at 60% 25%, rgba(242, 181, 68, 0.16), transparent 65%), linear-gradient(180deg, var(--bg-900), var(--bg-800));
}
@media (min-width: 768px) {
  .s4 .container {
    grid-template-columns: 1fr 1.2fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
  }
  .s4 .cover {
    justify-self: end;
  }
  .s4 .container > p {
    justify-self: start;
    max-width: 60ch;
  }
}

/* CTA final */
.s5 {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-950)), to(var(--bg-900)));
  background: linear-gradient(180deg, var(--bg-950), var(--bg-900));
  overflow: visible;
  /* Espacio extra en móvil con panel abierto */
}
.s5::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  opacity: 0.95;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--accent-2)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}
.s5 .p1 {
  background: radial-gradient(45% 40% at 70% 30%, rgba(226, 85, 66, 0.12), transparent 60%);
  -webkit-filter: blur(1.5px);
  filter: blur(1.5px);
}
@media (max-width: 640px) {
  .s5.with-panel {
    padding-bottom: calc(var(--pad-section) + 80px);
  }
}

/* =========================================================
   PORTADA
   ========================================================= */
.cover {
  width: min(60vw, 340px);
  aspect-ratio: 2/3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  background: #111;
}
.cover img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.cover::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(40% 40% at 50% 50%, rgba(226, 85, 66, 0.12), transparent 60%);
  -webkit-filter: blur(40px);
  filter: blur(40px);
  pointer-events: none;
}

/* =========================================================
   GRID DE COMPRA REUTILIZADO
   ========================================================= */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 640px) {
  .buy-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  padding: 14px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 480px) {
  .card {
    grid-template-columns: 1fr;
  }
}
.card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}
.card p {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.card .qr-box {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: radial-gradient(40% 40% at 50% 50%, rgba(63, 193, 201, 0.14), transparent 60%), #0f1f26;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6588235294);
  font-size: 0.9rem;
  display: block;
  margin-inline: auto;
}
.card a.card-btn {
  margin-top: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  background: var(--accent-2);
  color: #111;
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.card a.card-btn:hover {
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}

/* =========================================================
   PANEL EN FLUJO
   ========================================================= */
.panel-wrap {
  width: min(560px, 92vw);
  margin: 18px auto 0;
  overflow: clip;
  -webkit-transition: grid-template-rows 0.28s ease, opacity 0.22s ease;
  transition: grid-template-rows 0.28s ease, opacity 0.22s ease;
  transition: grid-template-rows 0.28s ease, opacity 0.22s ease, -ms-grid-rows 0.28s ease;
  display: grid;
  grid-template-rows: 0fr; /* colapsado */
  opacity: 0;
}
.panel-wrap[hidden] {
  display: none !important;
}
.panel-wrap.open {
  grid-template-rows: 1fr; /* expandido */
  opacity: 1;
}
.panel-wrap .panel-surface {
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: var(--radius);
  background: -webkit-gradient(linear, left top, left bottom, from(#0c1419), to(#0b1115));
  background: linear-gradient(180deg, #0c1419, #0b1115);
  -webkit-box-shadow: var(--shadow-pop);
  box-shadow: var(--shadow-pop);
  padding: 16px;
  min-height: 0;
  display: grid;
  gap: 12px;
}
.panel-wrap .panel-heading {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #fff;
}
.panel-wrap .panel-subheading {
  margin: 4px 0 6px 0;
  font-size: 1rem;
  color: #fff;
}
.panel-wrap .pop-section {
  display: grid;
  gap: 10px;
}
.panel-wrap .pop-section + .pop-section {
  margin-top: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--bg-900)), to(var(--bg-950)));
  background: linear-gradient(180deg, var(--bg-900), var(--bg-950));
  color: var(--muted);
  padding: 28px clamp(16px, 1.8vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.0784313725);
}
footer .footer-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
  text-align: center;
}
footer .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
footer .footer-nav a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
footer .footer-nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2509803922);
}
footer .small {
  font-size: 0.92rem;
  opacity: 0.9;
}

/* =========================================================
   AJUSTES MÓVIL MUY PEQUEÑO
   ========================================================= */
@media (max-width: 380px) {
  :root {
    --leading:1.5;
    --gap:18px;
    --pad-section:40px;
  }
  p {
    font-size: clamp(1rem, 4.5vw, 1.15rem);
  }
}
/* =========================================================
   SR-only util
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*
 * Updated Contact Form Styles
 * Using declared variables for a fresh, modern look
 */
.wpcf7 {
  width: 100%;
  -webkit-animation: fadeIn 0.42s ease-out both;
  animation: fadeIn 0.42s ease-out both;
}

.wpcf7 form {
  display: grid;
  gap: 12px;
}

.wpcf7 label {
  display: grid;
  gap: 6px;
  font-size: 0.98rem;
  color: var(--text);
}

.wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: -webkit-gradient(linear, left top, left bottom, from(#0c1419), to(#0b1115));
  background: linear-gradient(180deg, #0c1419, #0b1115);
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  -webkit-transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.wpcf7 input[type=text]::-webkit-input-placeholder, .wpcf7 input[type=tel]::-webkit-input-placeholder, .wpcf7 input[type=email]::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  opacity: 0.9;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  opacity: 0.9;
}
.wpcf7 input[type=text]:-ms-input-placeholder, .wpcf7 input[type=tel]:-ms-input-placeholder, .wpcf7 input[type=email]:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  opacity: 0.9;
}
.wpcf7 input[type=text]::-ms-input-placeholder, .wpcf7 input[type=tel]::-ms-input-placeholder, .wpcf7 input[type=email]::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  opacity: 0.9;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
  opacity: 0.9;
}

.wpcf7 input[type=text]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 textarea:focus {
  border-color: color-mix(in srgb, var(--focus) 60%, transparent);
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  -webkit-box-shadow: 0 0 0 4px color-mix(in srgb, var(--focus) 30%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--focus) 30%, transparent);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}

.wpcf7-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
  min-inline-size: 44px;
  min-block-size: 44px;
  background: var(--accent-1);
  color: var(--text);
  -webkit-box-shadow: var(--shadow-cta);
  box-shadow: var(--shadow-cta);
}
.wpcf7-submit:hover, .wpcf7-submit:focus-visible {
  -webkit-filter: brightness(1.07);
  filter: brightness(1.07);
}
.wpcf7-submit:active {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

.wpcf7-response-output {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.03)), to(rgba(255, 255, 255, 0.015)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  color: var(--text);
  font-size: 0.95rem;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: color-mix(in srgb, var(--accent-2) 70%, transparent);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(226, 85, 66, 0.12)), to(rgba(226, 85, 66, 0.06)));
  background: linear-gradient(180deg, rgba(226, 85, 66, 0.12), rgba(226, 85, 66, 0.06));
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: color-mix(in srgb, var(--accent-3) 70%, transparent);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(63, 193, 201, 0.12)), to(rgba(63, 193, 201, 0.06)));
  background: linear-gradient(180deg, rgba(63, 193, 201, 0.12), rgba(63, 193, 201, 0.06));
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--accent-2);
  -webkit-animation: fadeIn 0.28s ease-out both;
  animation: fadeIn 0.28s ease-out both;
}

.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: color-mix(in srgb, var(--accent-2) 70%, transparent);
  -webkit-box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 28%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-2) 28%, transparent);
}

.wpcf7 form.sent input,
.wpcf7 form.sent textarea {
  border-color: color-mix(in srgb, var(--accent-3) 55%, transparent);
}

.wpcf7-spinner {
  -webkit-margin-start: 8px;
  margin-inline-start: 8px;
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.35));
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.35));
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}