:root {
    --jc-black: #050505;
    --jc-graphite: #111111;
    --jc-charcoal: #1a1a1a;
    --jc-medium: #707070;
    --jc-light: #e7e7e7;
    --jc-metal: #b8b8b8;
    --jc-soft: #f6f6f6;
    --jc-white: #ffffff;
    --jc-line: rgba(17, 17, 17, 0.14);
    --jc-shadow: 0 18px 55px rgba(5, 5, 5, 0.16);
    --jc-header-offset: 86px;
    --jc-topbar-height: 42px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--jc-header-offset);
}

section[id],
footer[id] {
    scroll-margin-top: var(--jc-header-offset);
}

body.jc-site {
    margin: 0;
    overflow-x: hidden;
    color: var(--jc-charcoal);
    background: var(--jc-white);
    font-family: "Onest", "Rubik", Arial, sans-serif;
    line-height: 1.65;
}

.jc-site img {
    max-width: 100%;
    height: auto;
}

.jc-site a:focus-visible,
.jc-site button:focus-visible {
    outline: 2px solid var(--jc-white);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 9999;
    padding: 10px 14px;
    color: var(--jc-white);
    background: var(--jc-black);
    border-radius: 6px;
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 16px;
}

.jc-topbar {
    color: rgba(255, 255, 255, 0.78);
    background: var(--jc-black);
    font-size: 14px;
}

.jc-topbar .container {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.jc-topbar p,
.jc-topbar a {
    margin: 0;
    color: inherit;
}

.jc-topbar i {
    color: var(--jc-metal);
    margin-right: 7px;
}

.jc-header {
    position: relative;
    z-index: 1000;
}

.jc-navbar {
    position: relative;
    z-index: 1001;
    background: var(--jc-graphite);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.jc-navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.jc-navbar.is-scrolled {
    background: var(--jc-black);
    box-shadow: 0 12px 26px rgba(5, 5, 5, 0.18);
}

.jc-header-placeholder {
    height: 0;
    transition: height 180ms ease;
}

.jc-navbar .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.jc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--jc-white);
    text-decoration: none;
    flex: 0 0 auto;
}

.jc-logo {
    width: clamp(170px, 15vw, 230px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.jc-logo--footer {
    width: clamp(160px, 14vw, 200px);
}

.jc-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.jc-menu a {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: color 180ms ease, background 180ms ease;
}

.jc-menu a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 1px;
    background: var(--jc-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.jc-menu a:hover,
.jc-menu a:focus {
    color: var(--jc-white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.jc-menu a:hover::after,
.jc-menu a:focus::after {
    transform: scaleX(1);
}

.jc-nav-cta,
.jc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.jc-nav-cta,
.jc-btn--primary {
    color: var(--jc-black);
    background: linear-gradient(135deg, var(--jc-white), var(--jc-light));
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.14);
}

.jc-nav-cta:hover,
.jc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(5, 5, 5, 0.24);
}

.jc-nav-cta:hover,
.jc-nav-cta:focus,
.jc-btn--primary:hover,
.jc-btn--primary:focus {
    color: var(--jc-black);
    background: var(--jc-white);
}

.jc-btn--whatsapp {
    color: var(--jc-white);
    background: var(--jc-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 34px rgba(5, 5, 5, 0.24);
}

.jc-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
}

.jc-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--jc-white);
}

.jc-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: var(--jc-white);
    isolation: isolate;
}

.jc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 50%, rgba(5, 5, 5, 0.42) 100%), url("../images/backgrounds/slider-1-1.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    animation: heroAmbientZoom 14s ease-out forwards;
}

.jc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    z-index: -1;
    background: linear-gradient(0deg, var(--jc-white), rgba(255, 255, 255, 0));
}

.jc-hero__content {
    max-width: 790px;
    padding: 120px 0 150px;
}

.jc-hero-animate {
    opacity: 1;
    transform: translateY(0);
    animation: heroReveal 780ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: var(--reveal-delay, 0s);
}

.jc-eyebrow {
    margin: 0 0 14px;
    color: var(--jc-metal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.jc-hero h1,
.jc-section h2,
.jc-cta h2 {
    color: inherit;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

.jc-hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 76px);
}

.jc-hero__lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

.jc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.jc-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.jc-hero__checks li {
    color: rgba(255, 255, 255, 0.86);
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.jc-hero__checks li::before,
.jc-advantages span::before {
    content: "✓";
    color: var(--jc-light);
    margin-right: 8px;
    font-weight: 800;
}

.jc-breadcrumb {
    background: var(--jc-soft);
}

.jc-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 14px 0;
    list-style: none;
    color: #586674;
    font-size: 14px;
}

.jc-breadcrumb a {
    color: var(--jc-black);
    text-decoration: none;
}

.jc-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--jc-metal);
}

.jc-section {
    padding: 110px 0;
}

.jc-section h2 {
    color: var(--jc-black);
    font-size: clamp(32px, 4vw, 54px);
}

.jc-section__head {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.jc-section__head p:last-child {
    margin: 16px auto 0;
    max-width: 700px;
    color: var(--jc-medium);
}

.jc-about {
    background: var(--jc-white);
}

.jc-about p:not(.jc-eyebrow) {
    color: var(--jc-medium);
}

.jc-image-stack {
    position: relative;
    min-height: 560px;
}

.jc-image-stack img {
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--jc-shadow);
}

.jc-image-stack img:first-child {
    width: min(78%, 410px);
    aspect-ratio: 410 / 542;
}

.jc-image-stack img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 34px;
    width: min(52%, 300px);
    aspect-ratio: 300 / 390;
    border: 8px solid var(--jc-white);
}

.jc-image-stack__badge {
    position: absolute;
    left: 26px;
    bottom: 0;
    max-width: 190px;
    padding: 18px;
    color: var(--jc-white);
    background: var(--jc-black);
    border-left: 4px solid var(--jc-metal);
    border-radius: 8px;
    box-shadow: var(--jc-shadow);
}

.jc-image-stack__badge strong {
    display: block;
    font-size: 42px;
    line-height: 1;
}

.jc-image-stack__badge span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.35;
}

.jc-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.jc-feature-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 16px;
    color: var(--jc-black);
    background: var(--jc-soft);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    font-weight: 700;
}

.jc-feature-list i {
    color: var(--jc-black);
}

.jc-services,
.jc-testimonials {
    background: linear-gradient(180deg, var(--jc-soft) 0%, #ffffff 100%);
}

.jc-service-card,
.jc-testimonial {
    height: 100%;
    padding: 30px;
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    box-shadow: 0 12px 36px rgba(7, 24, 39, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.jc-service-card:hover,
.jc-testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 5, 5, 0.32);
    box-shadow: var(--jc-shadow);
}

.jc-service-card:hover i,
.jc-service-card:focus-within i {
    transform: translateY(-3px) scale(1.03);
}

.jc-service-card i {
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--jc-white);
    background: linear-gradient(135deg, var(--jc-black), var(--jc-charcoal));
    border-radius: 8px;
    font-size: 28px;
    transition: transform 220ms ease, filter 220ms ease;
}

.jc-service-card h3,
.jc-testimonial h3,
.jc-footer h2 {
    margin: 0 0 12px;
    color: var(--jc-black);
    font-size: 22px;
    font-weight: 800;
}

.jc-service-card p,
.jc-testimonial p {
    color: var(--jc-medium);
    margin: 0;
}

.jc-service-card a {
    display: inline-flex;
    margin-top: 22px;
    color: var(--jc-black);
    font-weight: 800;
    text-decoration: none;
}

.jc-service-card a::after {
    content: "→";
    margin-left: 8px;
    transition: transform 180ms ease;
}

.jc-service-card a:hover::after,
.jc-service-card a:focus::after {
    transform: translateX(4px);
}

.jc-services-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 42px;
}

.jc-service-group {
    overflow: hidden;
    color: var(--jc-white);
    background: linear-gradient(180deg, var(--jc-graphite), var(--jc-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(5, 5, 5, 0.16);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.jc-service-group:hover,
.jc-service-group:focus-within {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 20px 52px rgba(5, 5, 5, 0.24);
}

.jc-service-group__trigger {
    width: 100%;
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px 16px;
    padding: 20px;
    color: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.jc-service-group__title {
    color: var(--jc-white);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.jc-service-group__count {
    grid-column: 1;
    color: var(--jc-metal);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.jc-service-group__icon {
    position: relative;
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.jc-service-group__icon::before,
.jc-service-group__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    background: var(--jc-white);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 220ms ease, opacity 220ms ease;
}

.jc-service-group__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.jc-service-group__trigger[aria-expanded="true"] .jc-service-group__icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.34);
    transform: rotate(180deg);
}

.jc-service-group__trigger[aria-expanded="true"] .jc-service-group__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.jc-service-group__content {
    padding: 0 20px 22px;
    color: rgba(255, 255, 255, 0.78);
    animation: serviceContentReveal 220ms ease;
}

.jc-service-group__content[hidden] {
    display: none;
}

.jc-service-group__content ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 18px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jc-service-group__content li {
    display: grid;
    grid-template-columns: 6px 1fr;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.35;
}

.jc-service-group__content li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jc-white);
}

.jc-why {
    color: var(--jc-white);
    background: linear-gradient(135deg, var(--jc-black) 0%, var(--jc-graphite) 55%, var(--jc-charcoal) 100%);
}

.jc-why h2 {
    color: var(--jc-white);
}

.jc-why p:not(.jc-eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

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

.jc-advantages span {
    padding: 18px;
    color: var(--jc-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-weight: 800;
}

.jc-stats {
    padding: 64px 0;
    background: var(--jc-black);
}

.jc-stat {
    height: 100%;
    padding: 26px 18px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.jc-stat strong {
    display: block;
    color: var(--jc-white);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
}

.jc-stat p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.jc-project-gallery {
    position: relative;
    overflow: hidden;
    background: var(--jc-soft);
}

.jc-project-gallery .section-title {
    margin-bottom: 48px;
}

.jc-project-gallery .section-title__tagline,
.jc-project-gallery .section-title__title {
    color: var(--jc-black);
}

.jc-project-gallery__intro {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--jc-medium);
    font-size: 1rem;
    line-height: 1.7;
}

.jc-project-gallery .masonary-layout {
    row-gap: 30px;
}

.jc-project-gallery .project-two__single {
    height: 100%;
}

.jc-project-gallery .project-two__img-box,
.jc-project-gallery .project-two__img {
    height: 100%;
}

.jc-project-gallery .project-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: var(--jc-black);
    cursor: zoom-in;
    text-decoration: none;
}

.jc-project-gallery .project-two__img > img {
    display: block;
    width: 100%;
    height: clamp(280px, 32vw, 420px);
    object-fit: cover;
    transition: transform 0.6s ease;
}

.jc-project-gallery .project-two__single:hover img {
    transform: scale(1.045);
}

.jc-project-gallery .project-two__content-box {
    background: rgba(5, 5, 5, 0.92);
    color: var(--jc-white);
}

.jc-project-gallery .project-two__title-box h3,
.jc-project-gallery .project-two__title-box h3 a {
    color: var(--jc-white);
}

.jc-project-gallery .project-two__title-box h3 {
    pointer-events: none;
}

.jc-project-gallery .project-two__title-box p {
    color: var(--jc-metal);
}

.jc-project-gallery .project-two__icon-box {
    color: var(--jc-black);
    background: var(--jc-white);
    pointer-events: none;
}

.jc-project-gallery .project-two__icon-box span {
    color: currentColor;
}

.jc-project-gallery .project-two__single:hover .project-two__icon-box,
.jc-project-gallery .project-two__single:focus-within .project-two__icon-box {
    color: var(--jc-black);
    background: var(--jc-metal);
}

.jc-project-gallery .jc-gallery-popup:focus-visible {
    outline: 2px solid var(--jc-white);
    outline-offset: 4px;
}

/* =========================================================
   Lightbox de galería
   ========================================================= */

.mfp-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    opacity: 0.92;
    z-index: 99998;
}

.mfp-wrap {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    outline: none;
    z-index: 99999;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 72px;
    text-align: center;
}

.mfp-content {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: min(1200px, 100%);
    margin: 0 auto;
    vertical-align: middle;
    text-align: left;
    z-index: 100000;
}

.mfp-figure {
    margin: 0;
}

.mfp-figure::after {
    content: "";
    position: absolute;
    inset: 40px 0;
    z-index: -1;
    background: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.mfp-img,
.jc-gallery-lightbox .mfp-img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    margin: 0 auto;
    padding: 40px 0;
    object-fit: contain;
}

.mfp-bottom-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: -32px;
    color: #fff;
}

.mfp-title {
    padding-right: 80px;
    color: #fff;
    line-height: 1.5;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    white-space: nowrap;
}

.mfp-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    border: 0;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    z-index: 100002;
}

.mfp-close:hover,
.mfp-close:focus-visible {
    color: #000;
    background: #fff;
}

.mfp-arrow {
    position: absolute;
    top: 50%;
    width: 64px;
    height: 84px;
    margin: -42px 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    opacity: 0.85;
    z-index: 100001;
}

.mfp-arrow:hover,
.mfp-arrow:focus-visible {
    opacity: 1;
}

.mfp-arrow-left {
    left: 8px;
}

.mfp-arrow-right {
    right: 8px;
}

.mfp-arrow::before,
.mfp-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.mfp-arrow-left::before,
.mfp-arrow-left::after {
    left: 24px;
    transform: translateY(-50%) rotate(-135deg);
}

.mfp-arrow-right::before,
.mfp-arrow-right::after {
    right: 24px;
    transform: translateY(-50%) rotate(45deg);
}

.mfp-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    margin: 0;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
}

.mfp-s-loading .mfp-figure {
    display: none;
}

.mfp-ready .mfp-preloader {
    display: none;
}

.mfp-removing .mfp-content {
    opacity: 0;
}

body.mfp-zoom-out-cur {
    overflow: hidden;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.92;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
    transform: translateY(0);
}

.jc-lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.jc-lightbox-caption strong {
    color: var(--jc-white);
    font-size: 1rem;
}

.jc-lightbox-caption small {
    color: rgba(255, 255, 255, 0.7);
}

@media (hover: none) {
    .jc-project-gallery .project-two__content-box,
    .jc-project-gallery .project-two__title-box,
    .jc-project-gallery .project-two__icon-box {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.jc-testimonial div {
    color: #f2b632;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.jc-testimonial h3 {
    margin-top: 22px;
    margin-bottom: 2px;
    font-size: 19px;
}

.jc-testimonial span {
    color: var(--jc-charcoal);
    font-weight: 800;
}

.jc-cta {
    padding: 86px 0;
    color: var(--jc-white);
    background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(17, 17, 17, 0.78)), url("../images/backgrounds/banner-one-bg.jpg");
    background-position: center;
    background-size: cover;
}

.jc-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.jc-cta h2 {
    font-size: clamp(32px, 4vw, 54px);
}

.jc-cta p:not(.jc-eyebrow) {
    max-width: 660px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.jc-footer {
    padding: 78px 0 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--jc-black);
}

.jc-footer .jc-brand {
    margin-bottom: 18px;
}

.jc-footer h2 {
    color: var(--jc-white);
    font-size: 18px;
}

.jc-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jc-footer li + li {
    margin-top: 9px;
}

.jc-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.jc-footer a:hover,
.jc-footer a:focus {
    color: var(--jc-white);
}

.jc-footer address {
    display: grid;
    gap: 10px;
    margin: 0;
}

.jc-footer address span,
.jc-footer address a {
    display: flex;
    gap: 10px;
    font-style: normal;
}

.jc-footer i {
    color: var(--jc-metal);
    margin-top: 4px;
}

.jc-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.jc-social a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: transform 180ms ease, background 180ms ease;
}

.jc-social a:hover,
.jc-social a:focus {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.jc-map {
    min-height: 188px;
    overflow: hidden;
    border: 1px dashed rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.jc-map iframe {
    width: 100%;
    height: 220px;
    display: block;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

.jc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 56px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jc-footer__bottom p {
    margin: 0;
}

.jc-floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--jc-white);
    background: var(--jc-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 16px 40px rgba(5, 5, 5, 0.35);
    text-decoration: none;
    font-size: 28px;
}

.jc-floating-whatsapp:hover,
.jc-floating-whatsapp:focus {
    color: var(--jc-white);
    transform: translateY(-2px);
}

.jc-faq-section {
    position: relative;
    padding: 96px 0;
    background: var(--jc-soft);
    overflow: hidden;
}

.jc-faq-section .faq-two__bg {
    opacity: 0.08;
    filter: grayscale(1);
}

.jc-faq-section .section-title {
    margin-bottom: 18px;
}

.jc-faq-section .section-title__tagline,
.jc-faq-section .section-title__title {
    color: var(--jc-black);
}

.jc-faq-section__intro {
    max-width: 720px;
    margin: 0 0 24px;
    color: var(--jc-medium);
}

.jc-faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.jc-faq-category {
    min-height: 42px;
    padding: 9px 15px;
    color: var(--jc-black);
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.jc-faq-category:hover,
.jc-faq-category:focus,
.jc-faq-category.is-active {
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

.jc-faq-category:hover,
.jc-faq-category:focus {
    transform: translateY(-2px);
}

.jc-faq-section .accrodion {
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(5, 5, 5, 0.08);
    overflow: hidden;
}

.jc-faq-section .accrodion + .accrodion {
    margin-top: 12px;
}

.jc-faq-section .accrodion-title {
    margin: 0;
}

.jc-faq-trigger {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: var(--jc-black);
    text-align: left;
    background: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 900;
}

.jc-faq-trigger:focus-visible {
    outline: 2px solid var(--jc-black);
    outline-offset: -4px;
}

.jc-faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 1px solid var(--jc-metal);
    border-radius: 50%;
}

.jc-faq-icon::before,
.jc-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    background: var(--jc-black);
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.jc-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.jc-faq-trigger[aria-expanded="true"] .jc-faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.jc-faq-section .accrodion-content {
    border-top: 1px solid var(--jc-line);
}

.jc-faq-section .accrodion-content .inner {
    padding: 18px 22px 22px;
}

.jc-faq-section .accrodion-content p {
    margin: 0;
    color: var(--jc-medium);
}

.jc-faq-section .faq-two__info-box {
    position: sticky;
    top: calc(var(--jc-header-offset) + 20px);
    padding: 30px;
    background: linear-gradient(180deg, var(--jc-graphite), var(--jc-black));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--jc-shadow);
}

.jc-faq-section .faq-two__info-icon {
    color: var(--jc-black);
    background: var(--jc-white);
}

.jc-faq-section .faq-two__info-title,
.jc-faq-section .faq-two__info-text {
    color: var(--jc-white);
}

.jc-faq-section__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jc-faq-section__actions .thm-btn,
.jc-faq-section__actions .jc-btn {
    width: 100%;
    justify-content: center;
}

.jc-whatsapp-assistant {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding-bottom: env(safe-area-inset-bottom);
}

.jc-whatsapp-assistant__toggle {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--jc-white);
    background: var(--jc-black);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(5, 5, 5, 0.35);
    font-weight: 900;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.jc-whatsapp-assistant__toggle i {
    color: #25d366;
    font-size: 25px;
}

.jc-whatsapp-assistant__toggle:hover,
.jc-whatsapp-assistant__toggle:focus {
    transform: translateY(-3px);
    background: var(--jc-charcoal);
}

.jc-whatsapp-assistant__panel {
    width: min(360px, calc(100vw - 32px));
    max-height: min(620px, calc(100vh - 96px));
    overflow-y: auto;
    color: var(--jc-black);
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(5, 5, 5, 0.28);
    animation: whatsappPanelIn 180ms ease both;
}

.jc-whatsapp-assistant__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    color: var(--jc-white);
    background: linear-gradient(135deg, var(--jc-black), var(--jc-graphite));
}

.jc-whatsapp-assistant__head span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.jc-whatsapp-assistant__head span i {
    color: #25d366;
}

.jc-whatsapp-assistant__head h2,
.jc-whatsapp-assistant__head p {
    margin: 0;
    color: var(--jc-white);
}

.jc-whatsapp-assistant__close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--jc-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.jc-whatsapp-assistant__options {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.jc-whatsapp-assistant__options button {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 12px;
    color: var(--jc-black);
    text-align: left;
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.jc-whatsapp-assistant__options button:hover,
.jc-whatsapp-assistant__options button:focus {
    transform: translateY(-2px);
    border-color: var(--jc-black);
    background: var(--jc-soft);
}

.jc-whatsapp-assistant__options button > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--jc-white);
    background: var(--jc-black);
    border-radius: 8px;
}

.jc-whatsapp-assistant__options strong,
.jc-whatsapp-assistant__options small {
    display: block;
}

.jc-whatsapp-assistant__options small {
    color: var(--jc-medium);
    line-height: 1.35;
}

.jc-whatsapp-assistant__direct {
    display: block;
    margin: 0 16px 16px;
    padding: 12px;
    color: var(--jc-black);
    text-align: center;
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.jc-whatsapp-assistant__direct:hover,
.jc-whatsapp-assistant__direct:focus {
    color: var(--jc-white);
    background: var(--jc-black);
}

.jc-page-header {
    position: relative;
    isolation: isolate;
    padding: 118px 0 92px;
    color: var(--jc-white);
    background:
        linear-gradient(115deg, rgba(5, 5, 5, 0.92), rgba(17, 17, 17, 0.78)),
        url("../images/backgrounds/contact-one-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.jc-page-header::after {
    content: "";
    position: absolute;
    inset: auto -10% -1px;
    height: 82px;
    background: linear-gradient(0deg, var(--jc-white), rgba(255, 255, 255, 0));
    z-index: -1;
}

.jc-page-header h1 {
    margin: 0 0 14px;
    color: var(--jc-white);
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1;
}

.jc-page-header .jc-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--jc-light);
}

.jc-page-header .jc-breadcrumb-list a {
    color: var(--jc-white);
    text-decoration: none;
}

.jc-page-header .jc-breadcrumb-list a:hover,
.jc-page-header .jc-breadcrumb-list a:focus {
    color: var(--jc-metal);
}

.jc-contact-info {
    padding: 82px 0 0;
    background: var(--jc-white);
}

.jc-contact-card {
    height: 100%;
    padding: 28px;
    color: var(--jc-white);
    background: linear-gradient(180deg, var(--jc-graphite), var(--jc-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(5, 5, 5, 0.14);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.jc-contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 55px rgba(5, 5, 5, 0.22);
}

.jc-contact-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--jc-black);
    background: var(--jc-white);
    border-radius: 8px;
}

.jc-contact-card h2 {
    margin: 0 0 12px;
    color: var(--jc-white);
    font-size: 22px;
}

.jc-contact-card p,
.jc-contact-card a,
.jc-contact-card span {
    display: block;
    margin: 0;
    color: var(--jc-light);
    text-decoration: none;
}

.jc-contact-card a:hover,
.jc-contact-card a:focus {
    color: var(--jc-white);
}

.jc-contact-page {
    padding: 92px 0;
    background: linear-gradient(180deg, var(--jc-white), var(--jc-soft));
}

.jc-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 34px;
    align-items: stretch;
}

.jc-map-panel,
.jc-form-panel {
    min-width: 0;
    padding: 15px;
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
    box-shadow: var(--jc-shadow);
}

.jc-appointment-panel {
    width: 100%;
    min-width: 0;
    padding: clamp(24px, 3vw, 40px);
}

.jc-map-panel h2,
.jc-form-panel h2 {
    margin: 0 0 12px;
    color: var(--jc-black);
}

.jc-map-panel p,
.jc-form-panel > p {
    color: var(--jc-medium);
}

.jc-map-placeholder {
    min-height: 390px;
    display: grid;
    place-items: center;
    margin-top: 24px;
    padding: 28px;
    text-align: center;
    color: var(--jc-white);
    background: linear-gradient(135deg, var(--jc-black), var(--jc-charcoal));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.jc-map-placeholder i {
    display: block;
    margin-bottom: 16px;
    color: var(--jc-metal);
    font-size: 46px;
}

.jc-contact-form {
    margin-top: 26px;
}

.jc-appointment-wizard {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 28px;
}

.jc-wizard-progress {
    margin-bottom: 30px;
}

.jc-wizard-progress__bar {
    height: 8px;
    overflow: hidden;
    background: var(--jc-light);
    border-radius: 999px;
}

.jc-wizard-progress__value {
    width: 20%;
    height: 100%;
    display: block;
    background: linear-gradient(90deg, var(--jc-black), var(--jc-metal));
    border-radius: inherit;
    transition: width 260ms ease;
}

.jc-wizard-progress__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.jc-wizard-progress__steps li {
    min-width: 0;
    color: var(--jc-medium);
    text-align: center;
}

.jc-wizard-progress__steps span {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 6px;
    color: var(--jc-black);
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 50%;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.jc-wizard-progress__steps small {
    display: block;
    overflow-wrap: anywhere;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.jc-wizard-progress__steps .is-active span,
.jc-wizard-progress__steps .is-complete span {
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

.jc-wizard-step {
    animation: wizardStepIn 220ms ease both;
}

.jc-wizard-step,
.jc-service-options,
.jc-service-option {
    min-width: 0;
    max-width: 100%;
}

.jc-wizard-step h3 {
    margin: 0 0 8px;
    color: var(--jc-black);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
}

.jc-wizard-step > p {
    margin-bottom: 22px;
    color: var(--jc-medium);
}

.jc-wizard-step__header {
    margin-bottom: 28px;
}

.jc-wizard-step__eyebrow {
    margin: 0 0 8px;
    color: var(--jc-medium);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.jc-wizard-step__title {
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: var(--jc-black);
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    white-space: normal;
}

.jc-wizard-step__description {
    margin: 12px 0 0;
    color: var(--jc-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.jc-service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.jc-service-option {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 112px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
    padding: 18px;
    color: var(--jc-black);
    text-align: left;
    cursor: pointer;
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.jc-service-option__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--jc-white);
    background: var(--jc-black);
    border-radius: 10px;
    font-size: 18px;
}

.jc-service-option__label {
    min-width: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

.jc-service-option__check {
    width: 20px;
    height: 20px;
    display: block;
    justify-self: end;
    flex-shrink: 0;
    border: 1px solid var(--jc-line);
    border-radius: 50%;
}

.jc-service-option:hover,
.jc-service-option:focus {
    transform: translateY(-3px);
    border-color: var(--jc-black);
    box-shadow: 0 16px 34px rgba(5, 5, 5, 0.12);
}

.jc-service-option.is-selected,
.jc-service-option[aria-pressed="true"] {
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

.jc-service-option.is-selected .jc-service-option__icon,
.jc-service-option[aria-pressed="true"] .jc-service-option__icon {
    color: var(--jc-black);
    background: var(--jc-white);
}

.jc-service-option.is-selected .jc-service-option__check,
.jc-service-option[aria-pressed="true"] .jc-service-option__check {
    border-color: var(--jc-white);
    background: var(--jc-white);
    box-shadow: inset 0 0 0 4px var(--jc-black);
}

.jc-service-option--all {
    min-height: 112px;
}

.jc-all-services-panel {
    margin-top: 18px;
    padding: 22px;
    background: var(--jc-soft);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
}

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

.jc-all-services-grid fieldset {
    min-width: 0;
    margin: 0;
    padding: 18px;
    background: var(--jc-white);
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
}

.jc-all-services-grid legend {
    width: auto;
    float: none;
    margin: 0 0 12px;
    padding: 0;
    color: var(--jc-black);
    font-size: 15px;
    font-weight: 900;
}

.jc-all-services-grid button,
.jc-symptom-chips button {
    display: inline-flex;
    min-height: 38px;
    margin: 0 7px 8px 0;
    padding: 8px 12px;
    color: var(--jc-black);
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.jc-all-services-grid button:hover,
.jc-all-services-grid button:focus,
.jc-symptom-chips button:hover,
.jc-symptom-chips button:focus {
    transform: translateY(-2px);
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

.jc-all-services-grid button.is-selected {
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

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

.jc-form-field {
    min-width: 0;
}

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

.jc-form-field--with-unit span {
    position: relative;
    display: block;
}

.jc-form-field--with-unit input {
    padding-right: 48px;
}

.jc-form-field--with-unit em {
    position: absolute;
    top: 50%;
    right: 14px;
    color: var(--jc-medium);
    font-style: normal;
    font-weight: 800;
    transform: translateY(-50%);
}

.jc-form-field label,
.jc-consent label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--jc-black);
    font-weight: 700;
}

.jc-form-field input,
.jc-form-field select,
.jc-form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--jc-black);
    background: var(--jc-white);
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 8px;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.jc-form-field textarea {
    min-height: 142px;
    resize: vertical;
}

.jc-form-field input:focus,
.jc-form-field select:focus,
.jc-form-field textarea:focus {
    outline: none;
    border-color: var(--jc-black);
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.12);
}

.jc-form-field [aria-invalid="true"] {
    border-color: var(--jc-black);
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.16);
}

.jc-field-error {
    display: block;
    min-height: 20px;
    margin-top: 6px;
    color: var(--jc-black);
    font-size: 13px;
    font-weight: 700;
}

.jc-consent {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px;
    background: var(--jc-soft);
    border: 1px solid var(--jc-line);
    border-radius: 8px;
}

.jc-consent input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--jc-black);
}

.jc-consent label {
    flex: 1 1 calc(100% - 34px);
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.jc-consent .jc-field-error {
    flex: 1 1 100%;
    padding-left: 28px;
}

.jc-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.jc-form-status {
    min-height: 24px;
    margin-top: 18px;
    color: var(--jc-black);
    font-weight: 700;
}

.jc-form-status.is-error {
    color: var(--jc-black);
}

.jc-form-status.is-success {
    color: var(--jc-charcoal);
}

.jc-budget-form {
    margin-top: 24px;
}

.jc-budget-note {
    margin: 16px 0 0;
    padding: 14px 16px;
    color: var(--jc-medium);
    background: var(--jc-soft);
    border-left: 3px solid var(--jc-metal);
    border-radius: 8px;
    font-weight: 600;
    line-height: 1.5;
}

.jc-budget-status:empty,
.jc-budget-manual-link[hidden] {
    display: none;
}

.jc-budget-manual-link {
    margin-top: 14px;
}

.jc-budget-actions {
    justify-content: flex-end;
}

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

.jc-time-options label {
    cursor: pointer;
}

.jc-time-options input {
    position: absolute;
    opacity: 0;
}

.jc-time-options span {
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: 12px;
    color: var(--jc-black);
    text-align: center;
    background: var(--jc-white);
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 8px;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.jc-time-options label:hover span,
.jc-time-options input:focus-visible + span {
    transform: translateY(-2px);
    border-color: var(--jc-black);
}

.jc-time-options input:checked + span {
    color: var(--jc-white);
    background: var(--jc-black);
    border-color: var(--jc-metal);
}

.jc-custom-date {
    margin-top: 18px;
}

.jc-wizard-note {
    margin-top: 16px;
    padding: 14px 16px;
    color: var(--jc-medium);
    background: var(--jc-soft);
    border-left: 3px solid var(--jc-metal);
    border-radius: 8px;
}

.jc-appointment-summary {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(180deg, var(--jc-graphite), var(--jc-black));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.jc-appointment-summary h3 {
    margin: 0 0 14px;
    color: var(--jc-white);
    font-size: 20px;
}

.jc-appointment-summary dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.jc-appointment-summary div {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jc-appointment-summary dt {
    color: var(--jc-metal);
    font-weight: 800;
}

.jc-appointment-summary dd {
    margin: 0;
    color: var(--jc-white);
}

.jc-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.jc-wizard-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.jc-btn--secondary {
        color: #fff;
    background: transparent;
    border: 1px solid #fff;
    box-shadow: none;
}

.jc-btn--secondary:hover,
.jc-btn--secondary:focus {
    color: var(--jc-white);
    background: var(--jc-black);
}

.jc-wizard-actions [hidden] {
    display: none;
}

.jc-wizard-whatsapp-note {
    margin-top: 24px;
    padding: 14px 16px;
    color: var(--jc-medium);
    background: #f5f5f5;
    border-left: 3px solid var(--jc-black);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
}

.jc-wizard-whatsapp-note:empty {
    display: none;
}

.jc-contact-cta {
    padding: 86px 0;
    color: var(--jc-white);
    background: linear-gradient(135deg, var(--jc-black), var(--jc-graphite));
}

.jc-contact-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jc-contact-cta h2 {
    margin: 0;
    color: var(--jc-white);
    max-width: 720px;
}

.jc-footer .jc-map-placeholder {
    min-height: 220px;
    margin-top: 0;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.jc-js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.jc-js .reveal-on-scroll.reveal-left {
    transform: translateX(-28px);
}

.jc-js .reveal-on-scroll.reveal-right {
    transform: translateX(28px);
}

.jc-js .reveal-on-scroll.reveal-scale {
    transform: scale(0.97);
}

.jc-js .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

@keyframes heroReveal {
    from {
        filter: blur(2px);
        transform: translateY(26px);
    }

    to {
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes heroAmbientZoom {
    to {
        transform: scale(1);
    }
}

@keyframes serviceContentReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wizardStepIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes whatsappPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .jc-navbar .container {
        gap: 18px;
    }

    .jc-menu a {
        padding: 9px 8px;
        font-size: 14px;
    }

    .jc-nav-cta {
        padding-inline: 16px;
    }

    .jc-service-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1400px) {
    .jc-service-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .jc-services-accordion {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 992px) {
    .jc-services-accordion {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .jc-service-group {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .jc-service-group__trigger {
        cursor: default;
        min-height: 92px;
        grid-template-columns: 1fr;
        padding: 24px 24px 14px;
    }

    .jc-service-group__trigger[aria-expanded="false"] + .jc-service-group__content[hidden],
    .jc-service-group__content[hidden] {
        display: block;
    }

    .jc-service-group__content {
        flex: 1;
        display: block;
        padding: 0 24px 24px;
    }

    .jc-service-group__icon {
        display: none;
    }
}

@media (max-width: 991px) {
    .jc-topbar .container {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .jc-navbar .container {
        min-height: 72px;
        flex-wrap: wrap;
    }

    .jc-menu-toggle {
        display: block;
    }

    .jc-menu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        order: 4;
        padding: 10px 0 18px;
    }

    .jc-menu.is-open {
        display: flex;
    }

    .jc-menu a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .jc-nav-cta {
        display: none;
    }

    .jc-contact-layout {
        grid-template-columns: 1fr;
    }

    .jc-faq-section .faq-two__info-box {
        position: static;
    }

    .jc-service-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jc-time-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jc-contact-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .jc-hero {
        min-height: auto;
    }

    .jc-hero__content {
        padding: 96px 0 120px;
    }

    .jc-section {
        padding: 82px 0;
    }

    .jc-service-group__trigger {
        min-height: 70px;
        padding: 18px;
    }

    .jc-service-group__content {
        padding: 0 18px 18px;
    }

    .jc-image-stack {
        min-height: 500px;
    }

    .jc-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .jc-service-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .jc-logo {
        width: clamp(130px, 42vw, 170px);
    }

    .jc-hero h1 {
        font-size: 42px;
    }

    .jc-hero__lead {
        font-size: 18px;
    }

    .jc-hero__actions,
    .jc-hero__actions .jc-btn {
        width: 100%;
    }

    .jc-feature-list,
    .jc-advantages {
        grid-template-columns: 1fr;
    }

    .jc-image-stack {
        min-height: auto;
        padding-bottom: 96px;
    }

    .jc-image-stack img:first-child {
        width: 82%;
    }

    .jc-image-stack img:nth-child(2) {
        width: 48%;
        bottom: 34px;
    }

    .jc-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .jc-page-header {
        padding: 82px 0 68px;
    }

    .jc-contact-info {
        padding-top: 60px;
    }

    .jc-faq-section {
        padding: 72px 0;
    }

    .jc-faq-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .jc-faq-category {
        flex: 0 0 auto;
    }

    .jc-contact-page {
        padding: 64px 0;
    }

    .jc-form-grid {
        grid-template-columns: 1fr;
    }

    .jc-wizard-step__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .jc-wizard-progress__steps {
        gap: 5px;
    }

    .jc-wizard-progress__steps span {
        width: 30px;
        height: 30px;
    }

    .jc-wizard-progress__steps small {
        font-size: 10px;
    }

    .jc-all-services-grid {
        grid-template-columns: 1fr;
    }

    .jc-contact-cta {
        padding: 64px 0;
    }

    .jc-gallery-lightbox .mfp-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .jc-gallery-lightbox .mfp-arrow {
        transform: scale(0.82);
    }

    .jc-gallery-lightbox .mfp-bottom-bar {
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .jc-service-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .jc-topbar {
        font-size: 13px;
    }

    .jc-hero__content {
        padding: 76px 0 108px;
    }

    .jc-hero h1 {
        font-size: 36px;
    }

    .jc-section h2,
    .jc-cta h2 {
        font-size: 31px;
    }

    .jc-service-card,
    .jc-testimonial {
        padding: 24px;
    }

    .jc-services-accordion {
        gap: 10px;
        margin-top: 30px;
    }

    .jc-service-group__trigger {
        padding: 16px;
    }

    .jc-service-group__title {
        font-size: 16px;
    }

    .jc-service-group__content {
        padding: 0 16px 16px;
    }

    .jc-map-panel,
    .jc-form-panel {
        padding: 22px;
    }

    .jc-map-placeholder {
        min-height: 280px;
    }

    .jc-service-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jc-service-option {
        min-height: 84px;
        grid-template-columns: 38px minmax(0, 1fr) 22px;
        padding: 14px;
    }

    .jc-service-option__icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .jc-service-option__label {
        font-size: 14px;
    }

    .jc-time-options {
        grid-template-columns: 1fr;
    }

    .jc-appointment-summary div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .jc-form-actions,
    .jc-form-actions .jc-btn,
    .jc-wizard-actions,
    .jc-wizard-actions .jc-btn,
    .jc-budget-manual-link .jc-btn {
        width: 100%;
    }

    .jc-form-actions .jc-btn,
    .jc-wizard-actions .jc-btn,
    .jc-budget-manual-link .jc-btn {
        justify-content: center;
    }

    .jc-wizard-actions {
        flex-direction: column-reverse;
    }

    .jc-whatsapp-assistant {
        right: 16px;
        bottom: 16px;
        left: 16px;
        align-items: flex-end;
    }

    .jc-whatsapp-assistant__toggle {
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }

    .jc-whatsapp-assistant__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .jc-whatsapp-assistant__panel {
        width: 100%;
        max-height: calc(100vh - 104px);
    }
}

@media (max-width: 360px) {
    .jc-hero h1 {
        font-size: 32px;
    }

    .jc-btn {
        padding-inline: 16px;
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll,
    .jc-hero-animate {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* =========================================================
   Proceso de trabajo
   ========================================================= */

.jc-process-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    background: var(--jc-white);
}

.jc-process-section .jc-section__head {
    margin-bottom: 38px;
}

.jc-process-section .jc-section__head h2 {
    color: var(--jc-black);
}

.jc-process-section .row > div {
    display: flex;
    justify-content: center;
}

.jc-process-section .process-one__single {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 292px;
    margin: 0 auto;
    background: var(--jc-white);
}

.jc-process-section .process-one__single-content {
    min-height: 288px;
    height: 100%;
    display: grid;
    grid-template-rows: 44px minmax(132px, 1fr) 82px;
    align-items: center;
    gap: 18px;
    text-align: center;
    border-color: var(--jc-line);
}

.jc-process-section .process-one__single--instyle2 .process-one__single-content {
    grid-template-rows: 82px 44px minmax(132px, 1fr);
}

.jc-process-section .process-one__single-step {
    min-width: 128px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 0 20px;
    margin: 0;
    background: var(--jc-black);
    border-radius: 8px;
}

.jc-process-section .process-one__single--instyle2 .process-one__single-step {
    margin-top: 0;
}

.jc-process-section .process-one__single-text {
    align-self: center;
    margin: 0;
}

.jc-process-section .process-one__single-text h3 {
    color: var(--jc-black);
    font-weight: 800;
}

.jc-process-section .process-one__single-text p {
    margin: 0;
    color: var(--jc-medium);
    line-height: 1.55;
}

.jc-process-section .process-one__single-step p {
    margin: 0;
    color: var(--jc-white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.jc-process-section .process-one__single-icon {
    justify-self: center;
    color: var(--jc-white);
    background: var(--jc-white);
    border: 1px solid var(--jc-line);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.jc-process-section .process-one__single-icon i {
    color: var(--jc-white);
    background: var(--jc-black);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 26px rgba(5, 5, 5, 0.18);
}

.jc-process-section .process-one__single:hover .process-one__single-icon {
    background: var(--jc-white);
    border-color: var(--jc-metal);
    transform: translateY(-4px);
}

.jc-process-section .process-one__single:hover .process-one__single-icon i {
    color: var(--jc-black);
    background: var(--jc-white);
}

.jc-process-section .process-one__single-bdr1,
.jc-process-section .process-one__single-bdr2 {
    top: 54px;
    right: -76px;
    z-index: 0;
    width: 118px;
    height: 1px;
    border-right: 0;
    border-top: 1px dashed rgba(184, 184, 184, 0.78);
    transform-origin: center;
    pointer-events: none;
}

.jc-process-section .process-one__single-bdr1 {
    transform: rotate(22deg);
}

.jc-process-section .process-one__single-bdr2 {
    top: 78px;
    right: -76px;
    transform: rotate(-22deg);
}

/* Tablet */
@media (max-width: 1199px) {
    .jc-process-section {
        padding: 82px 0 68px;
    }

    .jc-process-section .row {
        row-gap: 28px;
    }

    .jc-process-section .process-one__single {
        max-width: 360px;
        margin: 0 auto;
    }

    .jc-process-section .process-one__single-content,
    .jc-process-section .process-one__single--instyle2 .process-one__single-content {
        min-height: 276px;
        grid-template-rows: 44px minmax(120px, 1fr) 82px;
        gap: 16px;
    }

    .jc-process-section .process-one__single--instyle2 .process-one__single-content {
        grid-template-areas:
            "step"
            "text"
            "icon";
    }

    .jc-process-section .process-one__single--instyle2 .process-one__single-icon {
        grid-area: icon;
    }

    .jc-process-section .process-one__single--instyle2 .process-one__single-step {
        grid-area: step;
    }

    .jc-process-section .process-one__single--instyle2 .process-one__single-text {
        grid-area: text;
    }

    .jc-process-section .process-one__single-bdr1,
    .jc-process-section .process-one__single-bdr2 {
        display: none;
    }
}

/* Móvil */
@media (max-width: 767px) {
    .jc-process-section {
        padding: 68px 0 54px;
    }

    .jc-process-section .jc-section__head {
        margin-bottom: 28px;
    }

    .jc-process-section .row {
        row-gap: 18px;
    }

    .jc-process-section .process-one__single,
    .jc-process-section .process-one__single--instyle2 {
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    .jc-process-section .process-one__single-content,
    .jc-process-section .process-one__single--instyle2 .process-one__single-content {
        min-height: 0;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "step"
            "text"
            "icon";
        gap: 14px;
        padding-inline: 12px;
    }

    .jc-process-section .process-one__single-icon {
        grid-area: icon;
    }

    .jc-process-section .process-one__single-step {
        grid-area: step;
        min-height: 40px;
    }

    .jc-process-section .process-one__single-text {
        grid-area: text;
    }

    .jc-process-section .process-one__single-text p {
        line-height: 1.6;
    }
}
