
/* =========================
   Toast notifications
========================= */
.toast{
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  z-index: 99999;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  font-size: 14px;
  line-height: 1.35;
}
.toast.show{
  opacity: 1;
  transform: translate3d(0,0,0);
}
.toast-success{
  border: 1px solid rgba(34, 197, 94, 0.35);
}
.toast-error{
  border: 1px solid rgba(239, 68, 68, 0.35);
}
:root {
    --bg: #0b1220;
    --text: #0b1220;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--text);
}

a {
    color: inherit;
}

/* Para que al hacer click en el menú no se tape el título con el sticky nav */
section {
    scroll-margin-top: 90px;
}

/* =========================
   HERO (Carrusel con "contain" + blur)
   ========================= */

.hero {
    position: relative;
    min-height: 92vh;
    color: #fff;
    overflow: hidden;
    background: #000;
    /* fallback */
}

/* Fondo borroso para rellenar */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: .40;
    /* ajusta 0.30-0.60 */
}

/* Imagen principal (sin recorte) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: contain;
    /* ✅ evita recorte y “aleja” */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

/* Overlay oscuro para legibilidad */
.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .35) 45%,
            rgba(0, 0, 0, .20) 100%);
    z-index: 1;
    pointer-events: none; /* ✅ no bloquea clicks del menú */
}

/* Contenido arriba del overlay */
.topnav,
.hero-inner,
.hero-dots {
    position: relative;
    z-index: 2;
}

/* =========================
   NAV (Sticky)
   ========================= */

.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    gap: 18px;

    position: sticky;
    /* ✅ se queda arriba */
    top: 0;
    z-index: 50;

    backdrop-filter: blur(10px);
    background: rgba(10, 15, 25, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .2px;
    color: #fff;
}

.brand-logo {
    width: 34px;
    height: 34px;
    display: inline-flex;
    color: #fff;
}

.brand-logo svg {
    width: 34px;
    height: 34px;
}

.brand-name {
    font-size: 20px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.navlinks {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.navlinks a {
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
}

.navlinks a:hover {
    color: #fff;
}

.nav-cta {
    padding: 10px 14px;
    background: #fff;
    color: #0b1220 !important;
    border-radius: 12px;
    font-weight: 600;
}

/* =========================
   HERO TEXT
   ========================= */

.hero-inner {
    padding: 80px 28px 40px;
    width: 100%;
}

.hero-copy {
    max-width: 720px;
}

.kicker {
    margin: 0 0 14px;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: .9;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.hero p {
    margin: 0 0 22px;
    max-width: 560px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-light {
    background: #fff;
    color: #0b1220;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

/* Dots del carrusel */
.hero-dots {
    position: absolute;
    left: 28px;
    bottom: 22px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
}

.dot.active {
    background: #fff;
}

/* =========================
   SECCIONES
   ========================= */

.section {
    padding: 56px 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.section p {
    margin: 0;
    color: #334155;
}

/* =========================
   ABOUT (Foto izquierda + Card)
   ========================= */

.section-soft {
    background: #f8fafc;
    max-width: none;
    margin: 0;
    padding: 0;
}

.section-soft .about-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 28px;
}

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

.about-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    background: #111827;
}

.about-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid rgba(2, 6, 23, .06);
}

.chip {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 700;
    color: #0b1220;
    background: rgba(15, 23, 42, .06);
    padding: 8px 10px;
    border-radius: 999px;
    margin: 0;
}

.about-card h2 {
    margin: 10px 0 12px;
    font-size: 30px;
    color: #0b1220;
}

.about-card p {
    margin: 0 0 12px;
    color: #334155;
    line-height: 1.65;
}

.about-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn-dark {
    background: #0b1220;
    color: #fff;
}

.btn-soft {
    background: #fff;
    color: #0b1220;
    border: 1px solid rgba(2, 6, 23, .14);
}

/* =========================
   FOOTER
   ========================= */

.footer {
    padding: 26px 28px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* =========================
   MOBILE MENU + RESPONSIVE
   ========================= */

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-block;
    }

    /* Menú móvil: panel fijo con scroll (evita el 'manchón' gigante) */
    .navlinks {
        position: fixed;
        top: 72px; /* debajo de la barra */
        left: 14px;
        right: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        background: rgba(10, 15, 25, .96);
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        box-shadow: 0 18px 60px rgba(0,0,0,.35);
        max-height: calc(100vh - 90px);
        overflow: auto;
        display: none;
        z-index: 9999;
    }

    .navlinks.open { display: flex; }

    .topnav {
        padding: 14px 14px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero-inner {
        padding-top: 64px;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-photo img {
        height: 320px;
    }
}

.section-title {
    font-size: 32px;
    margin: 10px 0 10px;
    color: #0b1220;
}

.section-subtitle {
    margin: 0 0 18px;
    color: #475569;
    max-width: 760px;
}

.card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border: 1px solid rgba(2, 6, 23, .06);
}

.card h3 {
    margin: 0 0 8px;
}

.card p {
    color: #334155;
    line-height: 1.65;
    margin: 0 0 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nice-list {
    margin: 0;
    padding-left: 18px;
    color: #334155;
}

.nice-list li {
    margin: 10px 0;
}

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


.topnav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 11000 !important; /* ✅ siempre arriba y clickeable */

    background: rgba(255, 255, 255, .92) !important;
    /* ✅ blanco */
    border-bottom: 1px solid rgba(2, 6, 23, .08) !important;
    backdrop-filter: blur(10px) !important;
}

/* =========================
   Scroll a anclas con header fijo
========================= */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px; /* alto aproximado del nav */
}

/* evita que el header fijo tape el inicio de las secciones */
section[id], header[id], div[id] {
    scroll-margin-top: 84px;
}

/* Asegura que capas visuales no bloqueen interacción */
.sky-bg, .sky-gradient, .sky-plane, .sky-trail {
    pointer-events: none;
}

/* Links oscuros para que se vean */
.topnav .brand,
.topnav .navlinks a {
    color: #0b1220 !important;
}

.topnav .navlinks a:hover {
    opacity: .75;
}

.topnav .brand-logo {
    color: #0b1220 !important;
}

.topnav .nav-cta,
.topnav .navlinks a.nav-cta {
    background: #0b1220 !important;
    color: #fff !important;
    border: 1px solid rgba(2, 6, 23, .12);
}

.topnav .nav-cta:hover {
    opacity: .92;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f1f5f9;
    color: #0b1220;
    /* color del icono */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.social-links a:hover {
    background: #0b1220;
    color: #fff;
    /* icono en blanco */
    transform: translateY(-2px) scale(1.05);
}

.social-links svg {
    width: 22px;
    height: 22px;
}

/* =========================
   PARTNERS (marquee)
   ========================= */

.partners-marquee {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, .08);
    background: #fff;
    padding: 22px 0;
    /* un poquito más alto */
    position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-track {
    display: flex;
    gap: 46px;
    /* más separación */
    align-items: center;
    width: max-content;
    animation: partnersScroll 28s linear infinite;
    padding: 0 32px;
}

.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

/* ✅ AQUÍ ES DONDE SE HACEN GRANDES */
.partners-track img {
    height: 110px;
    /* antes 48px -> ahora 68px */
    width: auto;
    display: block;
    filter: grayscale(100%);
    opacity: .9;
    transition: all .2s ease;
}

.partners-track img:hover {
    filter: none;
    opacity: 1;
    transform: translateY(-2px) scale(1.06);
}

@keyframes partnersScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .partners-track img {
        height: 52px;
    }

    .partners-track {
        gap: 28px;
        animation-duration: 22s;
    }
}

/* ---------- AGENDA LAYOUT ---------- */
.agenda-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    margin-top: 18px;
}

@media (max-width: 980px) {
    .agenda-layout {
        grid-template-columns: 1fr;
    }
}

.agenda-info {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, .6);
}

.agenda-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(2, 132, 199, .06);
    border: 1px solid rgba(2, 132, 199, .15);
    color: #0f172a;
}

.agenda-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.agenda-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.tz-pill {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .08);
    color: #0f172a;
    font-size: 14px;
}

.muted {
    color: #64748b;
    font-size: 13px;
}

/* ---------- CALENDAR ---------- */
.calendar-card,
.slots-card {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-title {
    font-weight: 700;
    color: #0f172a;
}

.cal-nav {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

.cal-nav:hover {
    background: rgba(15, 23, 42, .03);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

#calWeekdays>div {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    padding: 6px 0;
}

.day {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    cursor: pointer;
    color: #0f172a;
    user-select: none;
}

.day:hover {
    background: rgba(15, 23, 42, .03);
}

.day.muted {
    color: #94a3b8;
    background: rgba(15, 23, 42, .02);
    cursor: default;
}

.day.disabled {
    opacity: .45;
    cursor: not-allowed;
}

.day.selected {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .35);
    color: #1e40af;
    font-weight: 700;
}

/* ---------- SLOTS ---------- */
.slots-card {
    margin-top: 12px;
}

.slots-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.slots-title {
    font-weight: 800;
    color: #0f172a;
}

.slots-sub {
    color: #64748b;
    font-size: 13px;
    margin-top: 2px;
}

.slots-badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .10);
    border: 1px solid rgba(34, 197, 94, .25);
    color: #14532d;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.slots-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 340px;
    overflow: auto;
    padding-right: 6px;
}

.slot-btn {
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
}

.slot-btn:hover {
    background: rgba(15, 23, 42, .03);
}

/* ---------- MODAL ---------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .55);
    display: none;
    z-index: 11900;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 12000;
}

.modal-card {
    width: min(560px, 100%);
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 20px 70px rgba(2, 6, 23, .25);
    overflow: hidden;
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 10px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.modal-kicker {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.modal-title {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: 18px;
}

.modal-x {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    cursor: pointer;
}

.modal-x:hover {
    background: rgba(15, 23, 42, .03);
}

.modal-meta {
    padding: 12px 16px;
    display: grid;
    gap: 8px;
    color: #0f172a;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, .03);
    border: 1px solid rgba(15, 23, 42, .06);
    color: #0f172a;
    font-size: 14px;
}

.meta-row strong {
    font-weight: 800;
}

.modal-form {
    padding: 0 16px 16px 16px;
}

.field {
    margin-top: 12px;
}

.field label {
    display: block;
    font-size: 13px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 700;
}

.field input {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    padding: 0 12px;
    outline: none;
}

.field input:focus {
    border-color: rgba(37, 99, 235, .45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-ghost {
    height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, .03);
}

.modal-footnote {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.5;
}

/* Simple disabled switch style (visual only) */
.switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, .10);
    border: 1px solid rgba(15, 23, 42, .12);
}

.slider:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    left: 2px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
}


/* Sponsor box dentro de la tarjeta */
.sponsor-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .7);
}

.sponsor-mini-title {
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 4px;
}

.sponsor-mini-sub {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.sponsor-mini-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Modal sponsor layout */
.sponsor-body {
    padding: 12px 16px 16px;
}

.sponsor-profile {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
}

@media (max-width: 620px) {
    .sponsor-profile {
        grid-template-columns: 1fr;
    }
}

.sponsor-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .03);
}

.sponsor-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.sponsor-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.badge {
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: #fff;
    color: #0f172a;
}

.badge-soft {
    background: rgba(34, 197, 94, .10);
    border-color: rgba(34, 197, 94, .25);
    color: #14532d;
}

.sponsor-desc {
    margin: 0 0 12px;
    color: #0f172a;
    line-height: 1.6;
}

.sponsor-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 520px) {
    .sponsor-stats {
        grid-template-columns: 1fr;
    }
}

.stat {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .03);
}

.stat-num {
    font-weight: 900;
    font-size: 18px;
    color: #0f172a;
}

.stat-label {
    margin-top: 2px;
    font-size: 12px;
    color: #64748b;
}

.sponsor-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 14px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.social-btn:hover {
    background: rgba(15, 23, 42, .03);
}

.sponsor-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ===== Cotizador Tabs ===== */
.quote-tabs {
    margin-top: 18px;
}

.tabs-top {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.tabs-steps {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.step-pill {
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .7);
    color: #0f172a;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

.step-pill.active {
    background: rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .35);
    color: #1e40af;
}

.tabs-progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .06);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
}

.tabs-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(37, 99, 235, .35);
}

.quote-form {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    padding: 14px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-title {
    margin: 0 0 6px;
    color: #0f172a;
}

.tab-subtitle {
    margin: 0 0 12px;
    color: #64748b;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.field {
    margin-top: 10px;
}

.field label {
    display: block;
    font-size: 13px;
    color: #334155;
    margin-bottom: 6px;
    font-weight: 800;
}

.field input,
.field select {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .12);
    padding: 0 12px;
    outline: none;
    background: #fff;
}

.field input:focus,
.field select:focus {
    border-color: rgba(37, 99, 235, .45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.help {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
}

.checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 8px 2px 2px;
}

.check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
}

.check input {
    width: 16px;
    height: 16px;
}

.tab-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.tab-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-hint {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.summary-box {
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(15, 23, 42, .03);
}

.summary-title {
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 6px;
}

.summary-text {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

.tab-final-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Visit counter badge */
.visit-badge{position:fixed;right:16px;bottom:16px;z-index:50;padding:10px 12px;border-radius:999px;background:rgba(0,0,0,.65);color:#fff;font-size:13px;backdrop-filter:blur(8px);box-shadow:0 10px 30px rgba(0,0,0,.25)}
