/* ==========================================================================
   Sofis Solutions · Base styles
   ==========================================================================
   Reset, typography base, body, container. Depende de tokens.css.
   ========================================================================== */

@import url(/themes/theme-october-skeleton/assets/css/page-themes.css);

* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg-primary:    #050b1a;
    --bg-section:    #0a1425;
    --bg-card:       #0f1d35;
    --bg-card-hover: #142745;
    --border:        #1f3354;
    --text:          #e8eef7;
    --text-dim:      #a3b1c7;
    --text-faint:    #6b7c95;
    --green:         #22C55E;
    --cyan:          #06B6D4;
    --purple:        #8B5CF6;
    --orange:        #F97316;
    --rose:          #ec4899;
    --amber:        #f59e0b;
        --danger: #ec4848; 
    --accent:        var(--orange);
  }

html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    font-family: var(--font-sans);
    color: var(--text);
    line-height: var(--lh-normal);
    position: relative;
    overflow-x: hidden;
}

/* Background dot pattern — se puede sobrescribir por página cambiando el color del dot */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Contenedores */
.container     { max-width: var(--container-md); margin: 0 auto; padding: 0 var(--space-lg); position: relative; z-index: 1; }
.container-sm  { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--space-lg); position: relative; z-index: 1; }
.container-lg  { max-width: var(--container-lg); margin: 0 auto; padding: 0 var(--space-lg); position: relative; z-index: 1; }

/* Secciones */
section.s {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
section.s:last-of-type { border-bottom: none; }

/* Tipografía */
h1, h2, h3, h4 { font-weight: 700; line-height: var(--lh-tight); letter-spacing: -0.3px; }
p { line-height: var(--lh-normal); }
a { color: inherit; }

/* Eyebrow */
.eyebrow {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}
.eyebrow.green  { color: var(--green);  border: 1px solid rgba(34, 197, 94, 0.35);  background: rgba(34, 197, 94, 0.06); }
.eyebrow.cyan   { color: var(--cyan);   border: 1px solid rgba(6, 182, 212, 0.35);  background: rgba(6, 182, 212, 0.06); }
.eyebrow.purple { color: var(--purple); border: 1px solid rgba(139, 92, 246, 0.35); background: rgba(139, 92, 246, 0.06); }
.eyebrow.orange { color: var(--orange); border: 1px solid rgba(249, 115, 22, 0.35); background: rgba(249, 115, 22, 0.06); }
.eyebrow.rose   { color: var(--rose);   border: 1px solid rgba(236, 72, 153, 0.35); background: rgba(236, 72, 153, 0.06); }

/* Títulos de sección */
.section-header { margin-bottom: var(--space-xl); }
h1.section-title { font-size: var(--fs-4xl); margin-bottom: var(--space-md); }
h2.section-title { font-size: var(--fs-3xl); margin-bottom: 14px; }
.section-subtitle, p.subtitle {
    font-size: var(--fs-md);
    color: var(--text-dim);
    max-width: 820px;
    line-height: 1.6;
}

 * { box-sizing: border-box; margin: 0; padding: 0; }


  body {
    background: var(--bg-primary);
    font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--text);
    position: relative;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(100, 180, 220, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }

  .watermark {
    position: fixed;
    top: 20px;
    right: 28px;
    font-size: 10px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2.5px;
    z-index: 100;
    background: rgba(5, 11, 26, 0.8);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  /* ==================== NAV ==================== */
  nav.topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 11, 26, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
  }
  .nav-brand span { color: var(--cyan); }
  .nav-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
  }
  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    padding: 8px 16px;
    background: var(--cyan);
    color: var(--bg-primary);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
  }

  /* ==================== CONTAINER ==================== */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  section {
    padding: 100px 0;
    position: relative;
  }

  /* ==================== TYPOGRAPHY ==================== */
  .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .eyebrow.green  { color: var(--green);  border: 1px solid rgba(34, 197, 94, 0.35);  background: rgba(34, 197, 94, 0.06); }
  .eyebrow.cyan   { color: var(--cyan);   border: 1px solid rgba(6, 182, 212, 0.35);  background: rgba(6, 182, 212, 0.06); }
  .eyebrow.purple { color: var(--purple); border: 1px solid rgba(139, 92, 246, 0.35); background: rgba(139, 92, 246, 0.06); }
  .eyebrow.orange { color: var(--orange); border: 1px solid rgba(249, 115, 22, 0.35); background: rgba(249, 115, 22, 0.06); }

  h1.section-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.7px;
    margin-bottom: 18px;
  }
  h2.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  p.section-subtitle {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 820px;
  }
  .section-header { margin-bottom: 50px; max-width: 900px; }



  /* ==================== HERO ==================== */
   .hero {
    padding: 60px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% -20%, rgba(139, 92, 246, 0.15), transparent 60%),
                radial-gradient(ellipse at 20% 60%, rgba(6, 182, 212, 0.12), transparent 50%),
                radial-gradient(ellipse at 80% 60%, rgba(34, 197, 94, 0.10), transparent 50%);
  }
  .hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 24px 6px 6px;
    border: 1px solid var(--border);
    background: rgba(15, 29, 53, 0.6);
    border-radius: 40px;
    margin-bottom: 32px;
  }
  .hero-chip-circles {
    display: flex;
  }
  .hero-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid var(--bg-primary);
    margin-left: -6px;
  }
  .hero-circle:first-child { margin-left: 0; }
  .hero-sol {
    padding: 70px 0;
    background:
      radial-gradient(ellipse at 30% 0%, rgba(34, 197, 94, 0.18), transparent 60%),
      radial-gradient(ellipse at 80% 40%, rgba(6, 182, 212, 0.10), transparent 60%);
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  
  .hero-chip .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
  }
  .hero-sol h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-sol h1 .accent { color: var(--green); }
  .hero-sol .subtitle {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 860px;
    margin: 0 auto 30px;
    line-height: 1.55;
  }
  .hero-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }
  .hero-tag {
    font-size: 12.5px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
  }
  .hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--text);
    color: var(--bg-primary);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.12); }
  .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  .hero-quick-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .quick-nav-chip {
    font-size: 12px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
  }
  .quick-nav-chip:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: var(--green);
  }

  /* ==================== VALUE PROPOSITION ==================== */
  .value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  @media (max-width: 1100px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 580px)  { .value-grid { grid-template-columns: 1fr; } }

  .value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color);
    opacity: 0.85;
  }
  .value-card:hover { background: var(--bg-card-hover); transform: translateY(-3px); }
  .value-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--bg-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--color);
  }
  .value-card h3 { font-size: 17px; font-weight: 700; color: var(--color); line-height: 1.3; }
  .value-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }

  .v-green  { --color: var(--green);  --bg-icon: rgba(34, 197, 94, 0.12); }
  .v-cyan   { --color: var(--cyan);   --bg-icon: rgba(6, 182, 212, 0.12); }
  .v-purple { --color: var(--purple); --bg-icon: rgba(139, 92, 246, 0.15); }
  .v-orange { --color: var(--orange); --bg-icon: rgba(249, 115, 22, 0.12); }

  /* ==================== QUÉ CONSTRUIMOS ==================== */
  .build { background: var(--bg-section); }
  .build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 1000px) { .build-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 580px)  { .build-grid { grid-template-columns: 1fr; } }

  .build-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--color);
    border-radius: 12px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s;
  }
  .build-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  }
  .build-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--bg-icon);
    border: 1px solid var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  .build-card h3 { font-size: 17px; font-weight: 700; color: var(--color); line-height: 1.3; }
  .build-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
  .build-examples {
    font-size: 11.5px;
    color: var(--text-faint);
    padding-top: 10px;
    border-top: 1px solid var(--border);
    line-height: 1.5;
  }
  .build-examples strong { color: var(--text-dim); font-weight: 600; }

  .b-green  { --color: var(--green);  --bg-icon: rgba(34, 197, 94, 0.12); }
  .b-cyan   { --color: var(--cyan);   --bg-icon: rgba(6, 182, 212, 0.12); }
  .b-purple { --color: var(--purple); --bg-icon: rgba(139, 92, 246, 0.15); }
  .b-orange { --color: var(--orange); --bg-icon: rgba(249, 115, 22, 0.12); }
  .b-rose   { --color: var(--rose);   --bg-icon: rgba(236, 72, 153, 0.12); }
  .b-white  { --color: #e8eef7;       --bg-icon: rgba(232, 238, 247, 0.08); }

  .hero-chip-circles {
    display: flex;
  }
  .hero-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid var(--bg-primary);
    margin-left: -6px;
  }
  .hero-circle img{
    width: 24px;
    height: 24px;
  }
  .hero-circle:first-child { margin-left: 0; }
  .hero-chip-text {
    font-size: 14px;
    color: var(--text);
  }
  .hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto 36px;
    line-height: 1.55;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--text);
    color: var(--bg-primary);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.12); }
  .btn-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* Subtítulo puente */
  .bridge-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 36px;
    letter-spacing: -0.3px;
  }

  /* 3 chips de servicios */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    text-align: left;
  }
  @media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color);
    opacity: 0.85;
  }
  .service-card:hover { background: var(--bg-card-hover); transform: translateY(-3px); }
  .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color);
    line-height: 1.25;
  }
  .service-subcat {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.4;
    flex-grow: 1;
  }
  .service-explore {
    font-size: 13px;
    color: var(--color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--border);
    width: 100%;
  }
  .c-green  { --color: var(--green); }
  .c-cyan   { --color: var(--cyan); }
  .c-purple { --color: var(--purple); }
  .c-orange { --color: var(--orange); }

  /* ==================== ENFOQUE ==================== */
  .enfoque { background: var(--bg-section); }
  .enfoque-arrow {
    position: relative;
    height: 380px;
    margin-top: 30px;
  }
  .enfoque-arrow-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
 
  .stage .stage-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    border: 2px solid;
  }
  .stage .stage-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
  }
  .stage .stage-text p {
    color: var(--text-dim);
    font-size: 14px;
    max-width: 220px;
    line-height: 1.4;
  }
  .stage-digital .stage-icon { border-color: var(--green); color: var(--green); }
  .stage-digital h3  { color: var(--green); }
  .stage-inteligente .stage-icon { border-color: var(--cyan); color: var(--cyan); }
  .stage-inteligente h3 { color: var(--cyan); }
  .stage-autonomo .stage-icon { border-color: var(--purple); color: var(--purple); }
  .stage-autonomo h3 { color: var(--purple); }


section.enfoque:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-image: url(/themes/theme-october-skeleton/assets/img/background-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.12;
}

.stages {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: space-between;
}


.stage{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stage-digital{
    align-self: end;
}

.stage-inteligente{
    align-self: center;
    margin-top: -150px;
}

.stage-autonomo{
    align-self: start;
}
@media (max-width:700px){
    .stages{
        flex-direction: column-reverse;
    }

    .stage-digital {
    align-self: start!important;
}

    .stage-inteligente{
        align-self: start!important;
        margin-top: 0;
    }
    

    .stage-autonomo{
        align-self: start!important;
    }
}

.enfoque-container {
    min-height: 450px;
    position: relative;
}

.enfoque-container::before {
    content: "";
    position: absolute;
    width: 100%;
    transform: translateY(-155px);
    background-image: url(
    /themes/theme-october-skeleton/assets/img/flecha.svg);
    aspect-ratio: 450/227;
    background-repeat: no-repeat;
    background-size: cover;
}

  /* ==================== KPIs ==================== */
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  @media (max-width: 900px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
  .kpi-card {
    background: var(--bg-card);
    border: 1px solid;
    border-radius: 14px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .kpi-number {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
  }
  .kpi-label {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.4;
  }
  .kpi-cyan   { border-color: rgba(6, 182, 212, 0.4); }
  .kpi-cyan .kpi-number { color: var(--cyan); }
  .kpi-green  { border-color: rgba(34, 197, 94, 0.4); }
  .kpi-green .kpi-number { color: var(--green); }
  .kpi-purple { border-color: rgba(139, 92, 246, 0.4); }
  .kpi-purple .kpi-number { color: var(--purple); }
  .kpi-orange { border-color: rgba(249, 115, 22, 0.4); }
  .kpi-orange .kpi-number { color: var(--orange); }

  /* Segunda fila: escala operativa */
  .kpi-scale-header {
    margin-top: 48px;
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
  }
  .kpi-scale-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    padding: 5px 12px;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.06);
  }
  .kpi-scale-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
  }
  .kpi-scale-hint {
    font-size: 14px;
    color: var(--text-dim);
  }
  .kpi-grid.kpi-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  @media (max-width: 900px) {
    .kpi-grid.kpi-grid-3 { grid-template-columns: 1fr; }
  }

  /* ==================== BIONA ==================== */
  .biona { background: var(--bg-section); }
  .biona-modules {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  @media (max-width: 1200px) { .biona-modules { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 700px)  { .biona-modules { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 450px)  { .biona-modules { grid-template-columns: 1fr; } }

  .biona-module {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--color);
    border-radius: 12px;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s;
  }
  .biona-module:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
  }
  .mod-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--color);
  }

  .mod-icon img{
    width: 24px;
    height: 24px;
  }

  .biona-module h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color);
    line-height: 1.25;
  }
  .biona-module p {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.5;
    flex-grow: 1;
  }

  .mod-green  { --color: var(--green);  --bg-icon: rgba(34, 197, 94, 0.12); }
  .mod-cyan   { --color: var(--cyan);   --bg-icon: rgba(6, 182, 212, 0.12); }
  .mod-purple { --color: var(--purple); --bg-icon: rgba(139, 92, 246, 0.15); }
  .mod-orange { --color: var(--orange); --bg-icon: rgba(249, 115, 22, 0.12); }
  .mod-white  { --color: #e8eef7; --bg-icon: rgba(232, 238, 247, 0.08); }
  .mod-rose   { --color: var(--rose); --bg-icon: rgba(236, 72, 153, 0.12); }

  .biona-cta-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.10), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .biona-cta-strip p {
    font-size: 14px;
    color: var(--text-dim);
    flex: 1;
    min-width: 280px;
    margin: 0;
    line-height: 1.55;
  }
  .biona-cta-strip strong { color: var(--text); font-weight: 700; }

  /* BIonA deployment options */
  .biona-deployment {
    padding: 22px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .deployment-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 14px;
  }
  .deployment-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .dep-badge {
    font-size: 13px;
    padding: 9px 15px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: var(--text);
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .deployment-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Modelos - clientes ejemplo y badge Nuevo */
  .modelo-clients {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .clients-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 4px;
  }
  .client-chip {
    font-size: 11px;
    padding: 3px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 10px;
    font-weight: 600;
  }
  .new-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* ==================== MODELOS ==================== */
  .modelos { background: var(--bg-section); }
  .modelos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  @media (max-width: 1100px) { .modelos-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px)  { .modelos-grid { grid-template-columns: 1fr; } }
  .modelo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--color);
    border-radius: 12px;
    padding: 26px 22px;
    transition: all 0.2s;
  }
  a.modelo-card{
    text-decoration: none;
    transition: all 0.25s ease;
  }
  a.modelo-card:hover{
    background: var(--bg-card-hover);
    transform: translateY(-3px);
  }
  a.modelo-card .service-explore{
    margin-top: 15px;
  }
  .modelo-card:hover { background: var(--bg-card-hover); }
  .modelo-num {
    font-size: 12px;
    color: var(--color);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .modelo-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .modelo-sub {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* ==================== EXPERIENCIA 2 NIVELES ==================== */
  .level-header {
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
  }
  .level-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan);
    padding: 5px 12px;
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: 20px;
    background: rgba(6, 182, 212, 0.06);
  }
  .level-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
  }
  .level-hint { font-size: 14px; color: var(--text-dim); margin-left: 8px; }
  .level-block { margin-bottom: 60px; }
  .level-block:last-child { margin-bottom: 0; }

  .grid-n1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 1100px) { .grid-n1 { grid-template-columns: repeat(2, 1fr); } }
  .card-n1 {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    position: relative;
    overflow: hidden;
  }
  .card-n1::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--color); opacity: 0.8;
  }
  .card-n1 h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color);
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .card-n1 p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; }

  .grid-n2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  @media (max-width: 1100px) { .grid-n2 { grid-template-columns: repeat(2, 1fr); } }
  .card-n2 {
    background: var(--bg-card-light);
    border-radius: 12px;
    padding: 20px 18px;
    color: var(--text-dark);
  }
  .card-n2 h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color);
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .card-n2 p { font-size: 12.5px; color: var(--text-dark-dim); line-height: 1.5; }
  .n2-green  { --color: #16a34a; }
  .n2-cyan   { --color: #0891b2; }
  .n2-purple { --color: #7c3aed; }
  .n2-orange { --color: #ea580c; }
  .n2-rose   { --color: #db2777; }
  .n2-blue   { --color: #2563eb; }
  .n2-amber  { --color: #d97706; }
  .n2-teal   { --color: #0d9488; }

  /* ==================== ORGANISMOS ==================== */
  .organisms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  @media (max-width: 1200px) { .organisms-grid { grid-template-columns: repeat(4, 1fr); } }
  @media (max-width: 900px)  { .organisms-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 620px)  { .organisms-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 400px)  { .organisms-grid { grid-template-columns: 1fr; } }

  .organism-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.2s;
    min-height: 120px;
  }
  .organism-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
  }
  .organism-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .organism-meta .flag { font-size: 14px; }
  .organism-name {
    font-size: 12.5px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
    flex-grow: 1;
  }
  .organism-acronym {
    font-size: 10px;
    padding: 2px 8px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 10px;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.3px;
    align-self: flex-start;
  }

  /* ==================== SISTEMAS COMPLEJOS + CASOS ==================== */
  .sistemas { background: var(--bg-section); }

  .sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 60px;
  }
  @media (max-width: 1000px) { .sc-grid { grid-template-columns: repeat(2, 1fr); } }
  .sc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative;
  }
  .sc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--color); opacity: 0.85;
  }
  .sc-card h3 { font-size: 20px; font-weight: 700; color: var(--color); margin: 10px 0 8px; }
  .sc-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
  .sc-card .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
  .sc-card .tags span {
    font-size: 10px; padding: 3px 8px; border-radius: 10px;
    border: 1px solid var(--border); color: var(--text-dim);
    background: rgba(255,255,255,0.03);
  }

  /* Casos */
  .cases-header { margin-bottom: 30px; max-width: 760px; }
  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 1000px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .cases-grid { grid-template-columns: 1fr; } }

  .case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: all 0.2s;
  }
  .case-card:hover { border-color: rgba(6, 182, 212, 0.4); transform: translateY(-3px); }
  .case-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .case-country { font-size: 12px; font-weight: 600; color: var(--text); }
  .case-type {
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .case-card h3 { font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--text); }
  .case-card p { font-size: 12.5px; color: var(--text-dim); line-height: 1.55; flex-grow: 1; }

  .case-metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 9px 12px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(34, 197, 94, 0.06));
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-left: 3px solid var(--cyan);
    border-radius: 6px;
  }
  .metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: -0.3px;
    white-space: nowrap;
  }
  .metric-value.metric-text { font-size: 14px; letter-spacing: 0; }
  .metric-label { font-size: 11.5px; color: var(--text-dim); font-weight: 500; line-height: 1.35; }

  .case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .case-tag {
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid;
    font-weight: 600;
  }
  .case-tag.t-green  { color: var(--green);  border-color: rgba(34, 197, 94, 0.4); }
  .case-tag.t-cyan   { color: var(--cyan);   border-color: rgba(6, 182, 212, 0.4); }
  .case-tag.t-purple { color: var(--purple); border-color: rgba(139, 92, 246, 0.4); }
  .case-tag.t-orange { color: var(--orange); border-color: rgba(249, 115, 22, 0.4); }

  /* ==================== CALIDAD ==================== */
  .cal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
  @media (max-width: 1200px) { .cal-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 800px)  { .cal-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px)  { .cal-grid { grid-template-columns: 1fr; } }
  .cal-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }
  .cal-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--color); opacity: 0.85;
  }
  .cal-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
  }
  .cal-card h3 { font-size: 18px; font-weight: 700; color: var(--color); line-height: 1.25; }
  .cal-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; flex-grow: 1; }
  .cal-badge {
    align-self: flex-start;
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-dim);
    font-weight: 600;
  }
  .cal-badge.silver {
    background: rgba(203, 213, 225, 0.12);
    border-color: rgba(203, 213, 225, 0.35);
    color: var(--silver);
  }
  .cal-badge.in-progress {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.5);
    color: var(--orange);
    font-weight: 700;
  }

  .cal-summary {
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(249, 115, 22, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cal-summary-text { flex: 1; min-width: 260px; }
  .cal-summary-text strong { color: var(--cyan); font-size: 20px; font-weight: 700; display: block; margin-bottom: 3px; }
  .cal-summary-text span { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
  .cal-stats { display: flex; gap: 28px; flex-wrap: wrap; }
  .cal-stat-value { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
  .cal-stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.2px; }

  .flex-item{
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* ==================== SOSTENIBILIDAD ==================== */
  .sos { background: var(--bg-section); }
  .sos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
  }
  @media (max-width: 1100px) { .sos-grid { grid-template-columns: repeat(2, 1fr); } }
  .sos-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .sos-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}
  .sos-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--color); opacity: 0.85;
  }
  .sos-card h3 { font-size: 18px; font-weight: 700; color: var(--color); line-height: 1.25; }
  .sos-tagline {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.2px;
    margin-top: -6px;
  }
  .sos-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; flex-grow: 1; }
  .sos-link {
    font-size: 13px; font-weight: 600; color: var(--color);
    display: inline-flex; align-items: center; gap: 5px;
  }

  .commitments {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
  }
  .commitments-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .commitments-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
  }
  .commitments-subtitle { font-size: 13px; color: var(--text-dim); }
  .commitments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  @media (max-width: 800px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px) { .commitments-grid { grid-template-columns: 1fr; } }
  .commit-badge {
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .commit-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(34, 197, 94, 0.08);
    font-size: 18px;
    flex-shrink: 0;
  }
  .commit-name { font-size: 12.5px; font-weight: 700; color: var(--text); line-height: 1.25; }
  .commit-desc { font-size: 10.5px; color: var(--text-dim); line-height: 1.3; }

  /* ==================== CTA FINAL ==================== */
  .cta-final {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(6, 182, 212, 0.1));
    text-align: center;
  }
  .cta-final-inner {
    padding: 80px 40px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    background: rgba(5, 11, 26, 0.4);
  }
  .cta-final h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
  }
  .cta-final p {
    font-size: 17px;
    color: var(--text-dim);
    margin: 0 auto 28px;
    max-width: 660px;
    line-height: 1.55;
  }

  /* ==================== FOOTER ==================== */
  footer.site-footer {
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    padding: 0!important;
  }

  .text-align-left{
    text-align: left;
  }

  ul.pagination {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    flex-direction: row;
    justify-content: center;
}
ul.pagination li {
    list-style-type: none;
    margin: 0 5px;
}
ul.pagination li a:hover {
    text-decoration: none;
}
li.active a {
    color: var(--orange);
    font-weight: 800;
    text-decoration: none;
}
.z-index{
    position: relative;
    z-index: 9999;
}
.mt-2{
    margin-top: 20px;
}
small.invalid-feedback {
    position: absolute;
    top: 68px;
    right: 15px;
    color: var(--rose);
}
.is-invalid .fs-input, .is-invalid .fs-select,
    .is-invalid .fs-textarea{
    outline: none;
        border-color: var(--danger);
        box-shadow: 0 0 0 3px rgba(249, 22, 22, 0.15);
}
.alert.alert-danger {
    color: #050b1a;
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(249, 22, 22, 0.15);
    padding: 15px;
    border-radius: 8px;
    margin: 0 10px 20px 10px;
    background: var(--danger);
}


    .fs-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 20px;
        position: relative;
    }

    .fs-field.input-50 {
        float: left;
        width: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .fs-field.input-100 {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .fs-field.full {
        grid-column: 1 / -1;
    }

    .fs-label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text);
        letter-spacing: 0.2px;
    }

    .fs-label .req {
        color: var(--orange);
        font-weight: 700;
    }

    .fs-hint {
        font-size: 11.5px;
        color: var(--text-faint);
        line-height: 1.4;
    }

    small.invalid-feedback {
        position: absolute;
        top: 68px;
        right: 15px;
        color: var(--danger);
    }

    .fs-input,
    .fs-select,
    .fs-textarea {
        width: 100%;
        padding: 11px 14px;
        background: var(--bg-primary);
        border: 1px solid var(--border-strong);
        border-radius: 8px;
        color: var(--text);
        font-size: 14px;
        font-family: inherit;
        transition: border 0.15s, box-shadow 0.15s;
    }

    .fs-input:focus,
    .fs-select:focus,
    .fs-textarea:focus {
        outline: none;
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    }

    .fs-textarea {
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
    }

    .fs-select {
        appearance: none;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23a3b1c7" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
    }

    .fs-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .fs-chip {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border-strong);
        border-radius: 20px;
        color: var(--text-dim);
        font-size: 12px;
        cursor: pointer;
        user-select: none;
        transition: all 0.15s;
        font-weight: 600;
    }

    .fs-chip:hover {
        border-color: var(--orange);
        color: var(--text);
    }

    .fs-chip.active {
        background: rgba(249, 115, 22, 0.15);
        border-color: var(--orange);
        color: var(--orange);
    }

    .fs-chip input {
        display: none;
    }

    .fs-radio-group {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .fs-radio {
        position: relative;
    }

    .fs-radio input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .fs-radio label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-strong);
        border-radius: 10px;
        color: var(--text-dim);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.15s;
    }

    .fs-radio input:checked+label {
        background: rgba(249, 115, 22, 0.15);
        border-color: var(--orange);
        color: var(--orange);
    }

    .fs-radio label:hover {
        border-color: var(--orange);
        color: var(--text);
    }

    .fs-file-label {
        display: flex;
        gap: 12px;
        align-items: center;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px dashed var(--border-strong);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.15s;
    }

    .fs-file-label:hover {
        border-color: var(--orange);
        background: rgba(249, 115, 22, 0.05);
    }

    .fs-file-label .icon {
        font-size: 22px;
    }

    .fs-file-label .txt {
        font-size: 13px;
        color: var(--text-dim);
    }

    .fs-file-label .txt strong {
        color: var(--text);
        display: block;
    }

    .fs-file-label input {
        display: none;
    }

    .fs-checkbox {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: 13px;
        color: var(--text-dim);
        line-height: 1.5;
        cursor: pointer;
        margin: 0 10px 5px 10px;
    }

    .fs-checkbox input {
        margin-top: 3px;
        accent-color: var(--orange);
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .fs-checkbox a {
        color: var(--orange);
        text-decoration: none;
    }

    .fs-checkbox a:hover {
        text-decoration: underline;
    }

    .fs-submit-row {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: flex-end;
        padding-top: 24px;
        margin-top: 12px;
        border-top: 1px solid var(--border);
        flex-wrap: wrap;
    }

    label.control-label.fs-label.required:after {
    content: " *";
    color: var(--orange);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.form-text {
    font-size: 11.5px!important;
    color: var(--text-faint);
    line-height: 1.4;
}

.mt-0{
    margin-top: 0!important;
}

.mt-1{
    margin-top: 4px!important;
}

.mt-2{
    margin-top: 8px!important;
}

.mt-3{
    margin-top: 16px!important;
}

.mt-4{
    margin-top: 24px!important;
}

.mt-5{
    margin-top: 40px!important;
}

.mb-0{
    margin-bottom: 0!important;
}

.mb-1{
    margin-bottom: 4px!important
}

.mb-2{
    margin-bottom: 8px!important
}

.mb-3{
    margin-bottom: 16px!important
}

.mb-4{
    margin-bottom: 24px!important
}

.mb-5{
    margin-bottom: 40px!important
}

.d-flex{
    display: flex!important;
}

.flex-row{
    flex-direction: row!important;
}

.flex-column{
    flex-direction: column!important;
}

.align-items-start{
    align-items: start!important;
}

.align-items-center{
    align-items: center!important;
}

.gap-0{
    gap: 0!important;
}

.gap-1{
    gap: 4px!important;
}

.gap-2{
    gap: 8px!important;
}

.gap-3{
    gap: 16px!important;
}

.gap-4{
    gap: 24px!important;
}

.gap-5{
    gap: 40px!important;
}

.language{
    cursor: pointer;
}
