@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* indica que soporta de 100 a 900 */
  font-style: normal;
}

@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

:root {
  --workmeter-primary-blue: #0B4988;
  --workmeter-secondary-blue: #434B9A;
  --workmeter-footer-background: #3479B7;
  --global-color-text: #7A7A7A;
  --global-color-accent: #545454;
  --workmeter-primary-green-button: #BADA55;
  --workmeter-primary-blue-button: #3479B7;
  --workmeter-secondary-orange-button: #F19613;
  --global-color-a-hover: #BADA55;
  --primary-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  --secondary-gradient: linear-gradient(135deg, #bdbec0 0%, #a8a9ac 100%);
  --accent-gradient: linear-gradient(135deg, #25aae1 0%, #bdbec0 100%);
  --background-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --shadow-color: rgba(44, 62, 80, 0.3);
  --blur-amount: 10px;
  --logo-blue: #25aae1;
  --logo-gray: #bdbec0;
  --header-dark: #2c3e50;
  --content-bg: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 10px 40px rgba(44, 62, 80, 0.1);
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  color: var(--global-color-text);
  overflow-x: hidden;
  overflow-y: auto;
}

/* landing_full: menu navigation without top bar */
.landing-full .top-bar {
  display: none;
}

footer {
  background-color: var(--workmeter-footer-background);
  color: white;
  text-align: left;
  padding: 40px max(24px, calc((100% - 1200px) / 2)) 20px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

footer .col-responsive {
  vertical-align: top;
}

footer h2, footer h3 {
  color: white;
  margin-bottom: 8px;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

footer a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin: 4px 0;
}

footer .col-level-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-social > a {
  display: block;
  width: fit-content;
  height: fit-content;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-social > a:hover {
  opacity: 1;
  transform: scale(1.1);
  text-decoration: none;
}

section > * {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 900;
}

h1, h2 {
  color: var(--workmeter-primary-blue);
  margin-bottom: 5px;
}

h2 {
  font-weight: bold;

}

a {
  color: var(--workmeter-primary-blue);
  text-decoration: none;
}

a:hover {
  color: var(--global-color-a-hover);
  text-decoration: none;
}

button, .wm-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 10px 10px 10px 10px;
  transition: all 0.3s ease;
  line-height: 1.5;
  border: none;
}

.onlymobile {
  display: none;
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 13px 20px;
    max-width: 1650px;
    margin: auto;
    margin-top: 10px;
}

.main-menu {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  max-width: 1650px;
  margin: auto;
}

button.primary, .wm-btn.primary {
  background-color: var(--workmeter-primary-blue-button);
  color: #ffffff;
}

button.secondary, .wm-btn.secondary {
  background-color: var(--workmeter-secondary-orange-button);
  color: #ffffff;
}

button.tertiary, .wm-btn.tertiary {
  background-color: var(--workmeter-primary-green-button);
  color: #ffffff;
}

/* .footer-certifications img {
  width: auto;
} */

@media (max-width: 1024px) {
  .horizontal-menu {
    display: none;
  }

  .blog-layout {
    flex-direction: column;
    gap: 0;
  }

  .blog-content,
  .blog-sidebar {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100%;
    z-index: 1;
  }

  .sidebar-banner {
    position: static;
    padding: 10px;
  }

  .toc-container {
    margin: 0 10px 0 10px;
  }

  .section {
    padding: 10px !important;
  }
  .newsletter-suscription {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 1120px) {
  #menu-button-post-menu {
    display: none;
  }
}

@media (max-width: 900px) {
  .post-header {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .post-header-text,
  .post-header-image {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100%;
  }

  .post-header-text {
    padding: 30px 20px;
    width: 100% !important;
  }

  .post-header-image {
    max-height: 60vh;
    overflow: hidden;
    width: 100% !important;
  }

  .post-header-image img {
    object-fit: cover;
    object-position: top;
    height: auto;
    min-height: 100%;
  }

  .post-title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .top-bar {
    justify-content: center;
  }
  .nomobile {
    display: none;
  }
  .onlymobile {
    display: block;
  }
  .toc-container {
    margin: 0 10px 0 10px;
  }
}

#post {
  overflow: visible;
  position: relative;
}

.blog-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 20px;
}

.blog-layout {
  display: flex;
  gap: 20px;
  align-items: stretch;
  position: relative;
}

.blog-content {
  flex: 0 0 75%;
  max-width: 75%;
}

.blog-sidebar {
  flex: 0 0 calc(25% - 20px);
  max-width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  z-index: 1;
}

.toc-container {
  position: relative;
}

.sidebar-banner {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  display: block;
  z-index: 100;
}

.sidebar-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Estilos blog */

.toc {
  border-top: 1px solid black;
  padding: 20px;
}

.toc-container {
  border: 1px solid black;
  border-radius: 15px;
}

.toc-container a {
  color: #7A7A7A;
}

.toc-container h4 {
  padding: 20px;
  color: var(--workmeter-secondary-blue);
}

.toc-container ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.toc-container li {
  position: relative;
  padding-left: 1.4em;
  line-height: 1.5;
}

.toc-container li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6em;
  height: 0.6em;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.toc-container a:hover {
  color: var(--global-color-a-hover);
  text-decoration: none;
}

/* Estilos para cabecera de post del blog */
.post-header {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
}

.post-header-text {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-header-image {
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  position: relative;
  overflow: hidden;
}

.post-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.post-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

.post-date {
  font-size: 1rem;
  color: var(--workmeter-primary-blue);
  font-weight: 500;
}

.cats-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 22px;
  font-weight: bold;
}

.cats-container > div:first-child {
  margin-right: 15px;
}

.newsletter-suscription {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: var(--workmeter-primary-blue);
  font-size: 22px;
  align-items: center;
  color: #fff;
}

.rrss-share {
  display: flex;
  padding: 10px 0;
}

.rrss-share button:not(:last-child) {
  margin-right: 15px;
}

.rrss {
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rrss img {
  width: 30px;
  height: 30px;
}

.rrss.linkedin {
  background-color: #0077B5;
}

.rrss.facebook {
  background-color: #3B5998;
}

.rrss.twitter {
  background-color: #000;
}

/* Overlay oscuro */
#cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  backdrop-filter: blur(2px);
  overflow-y: auto;
  padding: 20px 0;
}

/* Caja del mensaje */
#cookie-box, #cookie-preferences {
  background: #202020;
  color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 450px;
  width: 90%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.25s ease;
  text-align: left;
  margin: auto;
}

#cookie-box h2 {
  margin-top: 0;
  color: #fff;
  text-align: center;
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#cookie-accept, #cookie-reject, #cookie-preferences-accept, #cookie-preferences-reject {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

#cookie-accept:hover {
  background: #005fcc;
}

#cookie-preference-options {
  margin: 5px 0;
}
#cookie-save, #cookie-settings {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}

.switch-cookies {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
  margin: 10px 0;
}

/* Hide default HTML checkbox */
.switch-cookies input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider-cookies {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.slider-cookies:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  left: 0.3em;
  bottom: 0.3em;
  background-color: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.switch-cookies input:checked + .slider-cookies {
  background-color: var(--workmeter-primary-blue);
}

.switch-cookies input:checked + .slider-cookies:before {
  transform: translateX(1.5em);
}

.switch-cookies input:focus + .slider-cookies {
  box-shadow: 0 0 1px var(--workmeter-primary-blue);
}

@media (max-width: 500px) {
  .cookie-actions button:nth-child(3) {
    /* Mueve el tercer botón a una nueva línea */
    width: 100%; /* Hace que el tercer botón ocupe el 100% de la línea */
  }

  .cookie-actions button:nth-child(1),
  .cookie-actions button:nth-child(2) {
    /* Mantiene los primeros dos botones en una fila, pero no los hace tan anchos */
    width: 48%; /* Los primeros dos botones ocuparán el 48% de la fila */
  }
}

/* Contenedor principal */
#category-selector {
  display: flex;
  flex-wrap: wrap;   /* en móvil se permiten varias filas */
  margin: 0;
  padding: 0;
}

/* Cada item de categoría */
#category-selector .category-item {
  box-sizing: border-box;
  width: 50%;              /* 2 por fila en móvil */
  padding: 10px;
  text-align: center;
}

/* Imágenes con mismo tamaño */
#category-selector .category-item img {
  width: 100%;
  height: 120px;           /* ajusta a lo que te encaje */
  object-fit: contain;     /* o 'cover' si prefieres que recorte */
  display: block;
}

/* Título */
#category-selector .category-item h4 {
  margin-top: 8px;
  font-size: 14px;
}

/* A partir de 800px: todo en una sola fila */
@media (min-width: 800px) {
  #category-selector {
    flex-wrap: nowrap;     /* una sola fila */
  }

  #category-selector .category-item {
    width: auto;
    flex: 1 1 0;           /* que se repartan el ancho de la fila */
  }
}

details .simple {
  user-select: none;
}

.simple summary {
    list-style: none;
    cursor: pointer;
}

.simple summary::-webkit-details-marker {
    display: none;
}

/* H3 clicable */
.simple summary h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

/* Flecha decorativa */
.simple summary h3::after {
    content: "▶";
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

/* Girar flecha al abrir */
.simple[open] summary h3::after {
    transform: rotate(90deg);
}

/* Contenido con animación */
.simple .content {
    margin-left: 10px;
    padding: 0.3em 0;
    animation: fadeIn 0.2s ease;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.footer-legal-links {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.footer-legal-links a {
  display: inline-block;
}

/* Solo añadimos la barra a los enlaces que NO son el último */
.footer-legal-links a:not(:last-child)::after {
  content: " |";
  margin: 0 4px;
}

/* Tablet: columnas del footer en 2x2 */
@media (max-width: 1024px) and (min-width: 769px) {
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  footer .col-responsive {
    width: 100% !important;
    display: block !important;
  }

  .footer-legal-links {
    grid-column: 1 / -1;
  }
}

/* Móvil: columnas apiladas */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px 16px;
  }

  footer .col-responsive {
    width: 100% !important;
    display: block !important;
  }

  footer h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  footer a {
    display: block;
    margin: 4px 0;
  }

  footer ul {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  /* Ocultamos certificaciones + textos largos en móvil */
  footer .footer-certifications,
  footer .col-level-1 {
    display: none !important;
  }

  /* Ocultamos bloques del footer que duplican el menú principal */
  footer .hide-on-mobile {
    display: none !important;
  }
}

/* ============================================================
   Form Block Styles
   Scoped to .form-style-* — does not affect other elements
   ============================================================ */

/* --- Classic --- */
.form-style-classic {
  padding: 24px;
}

.form-style-classic .form-group {
  margin-bottom: 16px;
}

.form-style-classic .form-label,
.form-style-classic label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  text-align: left;
}

.form-style-classic .form-control,
.form-style-classic input[type="text"],
.form-style-classic input[type="email"],
.form-style-classic input[type="number"],
.form-style-classic textarea,
.form-style-classic select {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.9rem;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  background: #ffffff;
  color: #111827;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-style-classic .form-control:focus,
.form-style-classic input[type="text"]:focus,
.form-style-classic input[type="email"]:focus,
.form-style-classic input[type="number"]:focus,
.form-style-classic textarea:focus,
.form-style-classic select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-style-classic .checkbox-label,
.form-style-classic .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #374151;
  cursor: pointer;
}

.form-style-classic .trial-submit-btn,
.form-style-classic button[type="submit"] {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-style-classic .trial-submit-btn:hover,
.form-style-classic button[type="submit"]:hover {
  background: #1d4ed8;
}

/* --- Modern --- */
.form-style-modern {
  background: #f8faff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-style-modern .form-group {
  margin-bottom: 20px;
}

.form-style-modern .form-label,
.form-style-modern label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6366f1;
}

.form-style-modern .form-control,
.form-style-modern input[type="text"],
.form-style-modern input[type="email"],
.form-style-modern input[type="number"],
.form-style-modern textarea,
.form-style-modern select {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 2px solid #e0e7ff;
  border-radius: 8px;
  background: #ffffff;
  color: #1e1b4b;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-style-modern .form-control:focus,
.form-style-modern input[type="text"]:focus,
.form-style-modern input[type="email"]:focus,
.form-style-modern input[type="number"]:focus,
.form-style-modern textarea:focus,
.form-style-modern select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.form-style-modern .checkbox-label,
.form-style-modern .radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #3730a3;
  cursor: pointer;
}

.form-style-modern .trial-submit-btn,
.form-style-modern button[type="submit"] {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
  transition: box-shadow 0.2s, transform 0.1s;
}

.form-style-modern .trial-submit-btn:hover,
.form-style-modern button[type="submit"]:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
}

/* --- Minimal --- */
.form-style-minimal {
  background: transparent;
  padding: 16px 0;
}

.form-style-minimal .form-group {
  margin-bottom: 20px;
}

.form-style-minimal .form-label,
.form-style-minimal label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-style-minimal .form-control,
.form-style-minimal input[type="text"],
.form-style-minimal input[type="email"],
.form-style-minimal input[type="number"],
.form-style-minimal textarea,
.form-style-minimal select {
  width: 100%;
  padding: 8px 0;
  font-size: 1rem;
  border: none;
  border-bottom: 1.5px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  color: #111827;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-style-minimal .form-control:focus,
.form-style-minimal input[type="text"]:focus,
.form-style-minimal input[type="email"]:focus,
.form-style-minimal input[type="number"]:focus,
.form-style-minimal textarea:focus,
.form-style-minimal select:focus {
  outline: none;
  border-bottom-color: #111827;
  box-shadow: none;
}

.form-style-minimal .checkbox-label,
.form-style-minimal .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}

.form-style-minimal .trial-submit-btn,
.form-style-minimal button[type="submit"] {
  display: inline-block;
  padding: 9px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.form-style-minimal .trial-submit-btn:hover,
.form-style-minimal button[type="submit"]:hover {
  background: #111827;
  color: #ffffff;
}

/* ============================================================
   Form Block — Default Submit Button (scoped to trial-form)
   More specific selectors to ensure correct styling for the
   auto-generated submit button in processEndFormBlock.
   ============================================================ */

form.trial-form.form-style-classic button[type="submit"],
form.trial-form.form-style-classic .trial-submit-btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

form.trial-form.form-style-classic button[type="submit"]:hover,
form.trial-form.form-style-classic .trial-submit-btn:hover {
  background: #1d4ed8;
}

form.trial-form.form-style-modern button[type="submit"],
form.trial-form.form-style-modern .trial-submit-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
  transition: box-shadow 0.2s, transform 0.1s;
}

form.trial-form.form-style-modern button[type="submit"]:hover,
form.trial-form.form-style-modern .trial-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
  transform: translateY(-1px);
}

form.trial-form.form-style-minimal button[type="submit"],
form.trial-form.form-style-minimal .trial-submit-btn {
  display: inline-block;
  padding: 9px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  color: #111827;
  border: 1.5px solid #111827;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

form.trial-form.form-style-minimal button[type="submit"]:hover,
form.trial-form.form-style-minimal .trial-submit-btn:hover {
  background: #111827;
  color: #ffffff;
}
