:root {
    --cln-primary: #5C9DF5;
    --cln-primary-dark: #2F80ED;
    --cln-dark: #2E3445;
    --cln-footer: #08264A;
    --cln-muted: #6B7280;
    --cln-soft: #EAF7FF;
    --cln-soft-2: #DFF4FF;
    --cln-accent: #FFB72B;
    --cln-mint: #C8F3F1;
    --cln-white: #FFFFFF;
    --cln-radius-lg: 28px;
    --cln-radius-md: 20px;
    --cln-shadow: 0 20px 50px rgba(47, 128, 237, 0.12);
    --cln-shadow-soft: 0 12px 35px rgba(15, 39, 74, 0.08);
}

body.cln-landing {
    margin: 0;
    overflow-x: hidden;
    color: var(--cln-dark);
    background: var(--cln-white);
    font-family: "Nunito", "Inter", Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
}

.cln-landing *,
.cln-landing *::before,
.cln-landing *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.cln-landing a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cln-landing img {
    max-width: 100%;
}

.cln-landing .container {
    max-width: 1200px;
}

.cln-page {
    position: relative;
    overflow: hidden;
}

.cln-section {
    position: relative;
    padding: 110px 0;
}

.cln-section-soft {
    background:
        radial-gradient(circle at 8% 12%, rgba(92, 157, 245, 0.18), transparent 28%),
        radial-gradient(circle at 92% 78%, rgba(200, 243, 241, 0.45), transparent 30%),
        linear-gradient(135deg, #EAF7FF 0%, #DFF4FF 52%, #F7FCFF 100%);
}

.cln-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 46px;
}

.cln-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 9px;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.15);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
}

.cln-section-title {
    max-width: 620px;
    margin: 20px 0 0;
    color: #303147;
    font-size: 2.65rem;
    font-weight: 900;
    line-height: 1.15;
}

.cln-section-copy {
    margin: 20px 0 0;
    color: var(--cln-muted);
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.75;
}

.cln-btn-primary,
.cln-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border: 0;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.cln-btn-primary {
    color: var(--cln-white);
    background: linear-gradient(135deg, var(--cln-primary) 0%, var(--cln-primary-dark) 100%);
    box-shadow: 0 16px 34px rgba(47, 128, 237, 0.25);
}

.cln-btn-primary:hover {
    color: var(--cln-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(47, 128, 237, 0.32);
}

.cln-btn-light {
    color: var(--cln-primary-dark);
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
}

.cln-btn-light:hover,
.cln-btn-light:focus,
.cln-btn-light:active {
    color: #16324f;
    background: var(--cln-white);
}

.cln-btn-block {
    width: 100%;
    border-radius: 10px;
}

.cln-icon-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--cln-primary);
    font-size: 2rem;
}

.cln-card {
    height: 100%;
    border: 1px solid rgba(92, 157, 245, 0.08);
    border-radius: var(--cln-radius-lg);
    backdrop-filter: saturate(200%) blur(30px);
    background-color: rgb(255 255 255 / 68%) !important;
    box-shadow: inset 0 0px 1px 1px rgba(254, 254, 254, 0.36), 0 20px 27px 0 rgba(0, 0, 0, 0.05) !important;
}

.cln-img-rounded {
    border-radius: var(--cln-radius-lg);
    box-shadow: var(--cln-shadow-soft);
    object-fit: cover;
}

.cln-floating-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 132px;
    height: 132px;
    border-radius: 22px;
    color: var(--cln-white);
    background: linear-gradient(145deg, var(--cln-primary), var(--cln-primary-dark));
    box-shadow: 0 28px 48px rgba(47, 128, 237, 0.28);
    text-align: center;
}

.cln-floating-card strong {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.cln-floating-card span {
    margin-top: 8px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
}

.cln-bubble {
    position: absolute;
    display: block;
    border: 2px solid rgba(92, 157, 245, 0.45);
    border-radius: 50%;
    background: rgba(92, 157, 245, 0.18);
    pointer-events: none;
}

.cln-navbar {
    min-height: 80px;
    padding: 17px 0;
    background: transparent;
    transition: padding 200ms ease, background 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
    z-index: 1040;
}

.cln-navbar > .container {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
}

.cln-navbar.cln-navbar-scrolled {
    padding: 10px 0;
    background: rgb(255 255 255 / 20%);
    box-shadow: 0 14px 38px rgba(15, 39, 74, 0.09);
    backdrop-filter: blur(18px);
}

.cln-logo {
    flex: 0 1 auto;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2F3247;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.cln-logo:hover {
    color: #2F3247;
}

.cln-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 38px;
    border-radius: 10px 10px 15px 15px;
    color: var(--cln-white);
    background: linear-gradient(145deg, var(--cln-primary), var(--cln-primary-dark));
    font-size: 1.1rem;
}

.cln-logo-mark::before,
.cln-logo-mark::after {
    content: "";
    position: absolute;
    top: -6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cln-primary);
}

.cln-logo-mark::before {
    left: 5px;
}

.cln-logo-mark::after {
    right: 7px;
    opacity: 0.6;
}

.cln-logo-text {
    display: inline-block;
    min-width: 0;
}

.cln-nav-menu {
    gap: 34px;
}

.cln-navbar .nav-link {
    position: relative;
    padding: 8px 0;
    color: #2F3447;
    font-size: 0.95rem;
    font-weight: 800;
}

.cln-navbar .nav-link:hover,
.cln-navbar .nav-link.active {
    color: var(--cln-primary-dark);
    font-weight: 900;
}

.cln-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    transform: translateX(-50%);
    transition: width 180ms ease;
}

.cln-navbar .nav-link.active::after,
.cln-navbar .nav-link:hover::after {
    width: 22px;
}

@media (min-width: 992px) {
    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .cln-logo,
    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .cln-logo:hover,
    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .nav-link,
    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .cln-icon-action {
        color: #ffffff;
    }

    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .nav-link:hover,
    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .nav-link.active {
        color: #ffffff;
    }

    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .nav-link::after {
        background: rgba(255, 255, 255, 0.92);
    }

    .cln-has-dark-hero .cln-navbar:not(.cln-navbar-scrolled) .cln-icon-action {
        background: rgba(255, 255, 255, 0.14);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    }
}

.cln-nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cln-navbar-quick {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 12px;
    margin-left: auto;
}

.cln-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: #2F3447;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(15, 39, 74, 0.1);
    font-size: 1.2rem;
}

.cln-icon-action:hover {
    color: var(--cln-primary-dark);
    transform: translateY(-1px);
}

.cln-user-text {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 900;
}

.cln-user-action.dropdown-toggle::after {
    margin-left: 4px;
    border-top-width: 0.25em;
}

.cln-user-menu {
    min-width: 220px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 39, 74, 0.16);
}

.cln-user-menu .dropdown-item {
    font-weight: 800;
}

.cln-search-wrap {
    position: relative;
    flex: 0 0 auto;
}

.cln-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--cln-white);
    background: #282B3D;
    box-shadow: 0 12px 25px rgba(40, 43, 61, 0.15);
}

.cln-search-button:hover {
    color: var(--cln-white);
    transform: translateY(-2px);
}

.cln-search-panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    z-index: 1060;
    width: min(440px, calc(100vw - 32px));
    max-height: min(520px, calc(100vh - 112px));
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(47, 128, 237, 0.24);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 80px rgba(15, 39, 74, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.cln-search-wrap.cln-search-open .cln-search-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cln-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 10px 0 18px;
    border: 2px solid rgba(92, 157, 245, 0.28);
    border-radius: 16px;
    background: #F7FCFF;
}

.cln-search-field > i {
    color: var(--cln-primary-dark);
    font-size: 1.1rem;
}

.cln-search-field input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--cln-dark);
    background: transparent;
    font-size: 0.96rem;
    font-weight: 800;
}

.cln-search-field input::placeholder {
    color: #8A93A3;
}

.cln-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--cln-white);
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
}

.cln-search-suggestions {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    max-height: 308px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.cln-search-empty {
    margin: 0;
    padding: 12px 6px;
    color: var(--cln-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.cln-search-suggestion {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 14px;
    color: inherit;
    background: transparent;
    text-align: left;
}

.cln-search-suggestion:hover,
.cln-search-suggestion.is-active {
    background: rgba(92, 157, 245, 0.1);
    transform: translateY(-1px);
}

.cln-search-suggestion img,
.cln-search-suggestion-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    box-shadow: var(--cln-shadow-soft);
}

.cln-search-suggestion img {
    object-fit: cover;
}

.cln-search-suggestion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.14);
}

.cln-search-suggestion-copy {
    min-width: 0;
}

.cln-search-suggestion-copy strong,
.cln-search-suggestion-copy span {
    display: block;
}

.cln-search-suggestion-copy strong {
    overflow: hidden;
    color: #303047;
    font-size: 0.94rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cln-search-suggestion-copy span {
    min-width: 0;
    overflow: hidden;
    margin-top: 3px;
    color: var(--cln-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cln-search-suggestion b {
    color: var(--cln-primary-dark);
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.cln-search-all {
    display: block;
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.12);
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
}

.cln-search-all:hover {
    color: var(--cln-white);
    background: var(--cln-primary-dark);
}

.cln-btn-nav {
    min-height: 48px;
    padding: 14px 30px;
}

.cln-navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--cln-white);
    background: var(--cln-primary-dark);
    box-shadow: var(--cln-shadow-soft);
}

.cln-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.18);
}

.cln-hero {
    position: relative;
    min-height: 760px;
    padding: 142px 0 118px;
    background:
        radial-gradient(circle at 20% 32%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
        radial-gradient(circle at 78% 22%, rgba(200, 243, 241, 0.68), transparent 28%),
        linear-gradient(126deg, #F6FAFF 0%, #EEF8FF 42%, #D7F5F3 100%);
}

.cln-hero::before,
.cln-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(92, 157, 245, 0.17);
}

.cln-hero::before {
    left: 7%;
    top: 25%;
    width: 34px;
    height: 34px;
}

.cln-hero::after {
    right: 24%;
    top: 18%;
    width: 18px;
    height: 18px;
}

.cln-hero-pattern {
    position: absolute;
    color: rgba(92, 157, 245, 0.16);
    pointer-events: none;
}

.cln-hero-pattern-one {
    left: 5%;
    top: 31%;
    width: 42px;
    height: 80px;
    border-left: 8px solid currentColor;
    transform: rotate(-26deg);
}

.cln-hero-pattern-two {
    right: 6%;
    top: 41%;
    width: 48px;
    height: 64px;
    border: 4px solid currentColor;
    border-radius: 18px;
    transform: rotate(22deg);
}

.cln-hero-row {
    min-height: 600px;
}

.cln-hero h1 {
    max-width: 560px;
    margin: 22px 0 0;
    color: #303047;
    font-size: 4.45rem;
    font-weight: 900;
    line-height: 1.06;
}

.cln-hero-copy {
    max-width: 505px;
    margin: 24px 0 0;
    color: #7A8191;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.72;
}

.cln-hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.cln-btn-hero {
    min-height: 62px;
    padding: 0 7px 0 32px;
    text-transform: uppercase;
}

.cln-btn-hero span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--cln-white);
    background: #112E62;
}

.cln-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--cln-white);
    background: var(--cln-accent);
    box-shadow: 0 0 0 8px rgba(255, 183, 43, 0.2);
    font-size: 1.3rem;
}

.cln-play-button:hover {
    color: var(--cln-white);
    transform: translateY(-2px);
}

.cln-vip {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 44px;
}

.cln-vip strong {
    color: #303047;
    font-size: 0.98rem;
    font-weight: 900;
}

.cln-vip-avatars {
    display: flex;
    align-items: center;
}

.cln-vip-avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: -10px;
    border: 3px solid var(--cln-white);
    border-radius: 50%;
    color: var(--cln-white);
    background: linear-gradient(145deg, #1A3767, var(--cln-primary));
    box-shadow: 0 9px 20px rgba(15, 39, 74, 0.12);
    font-size: 0.68rem;
    font-weight: 900;
}

.cln-vip-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(145deg, #FFB72B, #F36C78);
}

.cln-vip-avatars span:nth-child(2) {
    background: linear-gradient(145deg, #29B7B3, #5C9DF5);
}

.cln-vip-avatars span:nth-child(3) {
    background: linear-gradient(145deg, #5A5F7D, #2F80ED);
}

.cln-hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 42px;
}

.cln-stat-card {
    min-width: 150px;
    padding: 18px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--cln-shadow-soft);
    text-align: center;
}

.cln-stat-card strong {
    display: block;
    color: var(--cln-primary);
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
}

.cln-stat-card span {
    display: block;
    margin-top: 8px;
    color: #303047;
    font-size: 0.93rem;
    font-weight: 900;
}

.cln-hero-visual {
    position: relative;
}

.cln-hero-art {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cln-hero-platform {
    position: absolute;
    right: -140px;
    bottom: 33px;
    z-index: 1;
    width: 92%;
    height: 132px;
    border-radius: 76px 0 0 76px;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
}

.cln-hero-img {
    position: relative;
    z-index: 3;
    width: min(620px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 34px 50px rgba(8, 38, 74, 0.2));
}

.cln-line-icon {
    position: absolute;
    z-index: 2;
    color: rgba(47, 128, 237, 0.24);
    font-size: 3rem;
}

.cln-line-icon-mop {
    top: 32px;
    left: 16%;
    transform: rotate(-20deg);
}

.cln-line-icon-spray {
    right: 7%;
    top: 47%;
    transform: rotate(18deg);
}

.cln-bubble-one {
    right: 25%;
    top: 40px;
    width: 18px;
    height: 18px;
}

.cln-bubble-two {
    right: 20%;
    top: 70px;
    width: 20px;
    height: 20px;
    background: rgba(92, 157, 245, 0.33);
}

.cln-bubble-three {
    left: 7%;
    bottom: 95px;
    width: 28px;
    height: 28px;
}

.cln-features-wrap {
    position: relative;
    z-index: 5;
    margin-top: -76px;
    padding-bottom: 58px;
}

.cln-feature-card {
    min-height: 180px;
    padding: 34px 42px;
}

.cln-feature-card h3 {
    margin: 12px 0 8px;
    color: #303047;
    font-size: 1.15rem;
    font-weight: 900;
}

.cln-feature-card p {
    margin: 0;
    color: var(--cln-muted);
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.55;
}

.cln-about {
    background: #F8FCFF;
}

.cln-about-collage {
    position: relative;
    min-height: 570px;
}

.cln-about-img-main {
    position: absolute;
    left: 0;
    top: 22px;
    width: 58%;
    height: 330px;
}

.cln-about-img-circle {
    position: absolute;
    top: 60px;
    right: 20%;
    width: 150px;
    height: 150px;
    border: 10px solid #F8FCFF;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--cln-shadow-soft);
}

.cln-about-img-bottom {
    position: absolute;
    right: 0;
    bottom: 22px;
    width: 55%;
    height: 280px;
}

.cln-about-years {
    position: absolute;
    left: 76px;
    bottom: 54px;
    z-index: 3;
}

.cln-about-bubble {
    left: 4px;
    bottom: 2px;
    width: 17px;
    height: 17px;
}

.cln-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 34px;
}

.cln-about-stats div {
    padding-right: 24px;
    /*border-right: 1px solid rgba(107, 114, 128, 0.22);*/
}

.cln-about-stats div:last-child {
    border-right: 0;
}

.cln-about-stats strong {
    display: block;
    color: var(--cln-primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.cln-about-stats span {
    display: block;
    margin-top: 9px;
    color: #303047;
    font-size: 0.92rem;
    font-weight: 900;
}

.cln-signature {
    margin-top: 44px;
}

.cln-signature span {
    display: block;
    color: #686F7E;
    font-family: "Nunito", "Inter", Arial, sans-serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
}

.cln-signature strong {
    display: block;
    margin-top: 8px;
    color: #303047;
    font-weight: 900;
}

.cln-services {
    overflow: hidden;
}

.cln-services::before,
.cln-services::after {
    content: "";
    position: absolute;
    color: rgba(47, 128, 237, 0.16);
    pointer-events: none;
}

.cln-services::before {
    left: -20px;
    bottom: 26%;
    width: 120px;
    height: 120px;
    border: 4px solid currentColor;
    border-radius: 50%;
}

.cln-services::after {
    right: 10%;
    bottom: 7%;
    width: 105px;
    height: 105px;
    border: 4px solid currentColor;
    border-radius: 28px;
}

.cln-service-controls {
    display: flex;
    gap: 14px;
}

.cln-service-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--cln-primary-dark);
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
    transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cln-service-nav:hover {
    color: var(--cln-white);
    background: var(--cln-primary);
    transform: translateY(-2px);
    box-shadow: var(--cln-shadow);
}

.cln-services-track {
    position: relative;
    z-index: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 64px) / 3);
    gap: 32px;
    overflow-x: auto;
    padding: 4px 2px 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.cln-services-track::-webkit-scrollbar {
    display: none;
}

.cln-service-card {
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: var(--cln-radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--cln-shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.cln-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(15, 39, 74, 0.13);
}

.cln-service-image {
    position: relative;
    display: block;
    height: 260px;
    margin: 18px 18px 0;
    overflow: hidden;
    border-radius: 20px;
}

.cln-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.cln-service-card:hover .cln-service-image img {
    transform: scale(1.05);
}

.cln-rating {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 32px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #303047;
    background: var(--cln-white);
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: var(--cln-shadow-soft);
}

.cln-rating i {
    color: var(--cln-accent);
    font-size: 0.82rem;
}

.cln-service-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 30px 30px;
}

.cln-service-body h3 {
    margin: 0;
    color: #303047;
    font-size: 1.16rem;
    font-weight: 900;
}

.cln-service-body h3 a:hover {
    color: var(--cln-primary-dark);
}

.cln-arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #6A7181;
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
    font-size: 1.25rem;
}

.cln-service-card:hover .cln-arrow-button {
    color: var(--cln-white);
    background: var(--cln-primary);
    transform: translate(3px, -3px);
}

.cln-service-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.cln-service-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(92, 157, 245, 0.42);
    transition: width 180ms ease, height 180ms ease, background 180ms ease;
}

.cln-service-dots button.active {
    width: 14px;
    height: 14px;
    border: 3px solid rgba(92, 157, 245, 0.35);
    background: var(--cln-primary);
}

.cln-why {
    background: #F8FCFF;
}

.cln-check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.cln-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #777E8D;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
}

.cln-check-list i {
    color: var(--cln-primary);
    margin-top: 2px;
}

.cln-mini-testimonial {
    display: grid;
    grid-template-columns: 185px 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}

.cln-mini-media {
    position: relative;
    overflow: hidden;
    height: 112px;
    border-radius: 10px;
    box-shadow: var(--cln-shadow-soft);
}

.cln-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cln-mini-media span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: auto;
    border-radius: 50%;
    color: var(--cln-white);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(6px);
}

.cln-mini-testimonial p {
    margin: 0;
    color: #858B97;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.65;
}

.cln-why-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.cln-phone-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cln-phone-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.16);
    font-size: 1.2rem;
}

.cln-phone-card strong,
.cln-phone-card a {
    display: block;
}

.cln-phone-card strong {
    color: var(--cln-primary-dark);
    font-size: 0.8rem;
    font-weight: 900;
}

.cln-phone-card a {
    color: #616879;
    font-size: 0.82rem;
    font-weight: 800;
}

.cln-why-collage {
    position: relative;
    min-height: 540px;
}

.cln-why-img-wide {
    position: absolute;
    top: 30px;
    right: 0;
    width: 80%;
    height: 255px;
}

.cln-why-img-tall {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 44%;
    height: 288px;
    border: 16px solid #F8FCFF;
}

.cln-why-years {
    position: absolute;
    left: 23%;
    bottom: 72px;
    z-index: 3;
}

.cln-why-bubble-one {
    right: 12px;
    top: 0;
    width: 16px;
    height: 16px;
}

.cln-why-bubble-two {
    right: 58px;
    bottom: 0;
    width: 24px;
    height: 24px;
}

.cln-pricing {
    padding-bottom: 120px;
}

.cln-pricing-head {
    margin-bottom: 48px;
}

.cln-price-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 52px 42px 42px;
    border: 1px solid rgba(92, 157, 245, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--cln-shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.cln-featured-service-card {
    padding-top: 28px;
}

.cln-featured-image {
    display: block;
    height: 190px;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--cln-soft);
}

.cln-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.cln-featured-service-card:hover .cln-featured-image img {
    transform: scale(1.055);
}

.cln-card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--cln-white);
    background: linear-gradient(135deg, var(--cln-accent), #F36C78);
    font-size: 0.75rem;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(243, 108, 120, 0.22);
}

.cln-price-card:hover,
.cln-price-card.cln-price-featured {
    transform: translateY(-8px);
    box-shadow: 0 30px 64px rgba(15, 39, 74, 0.14);
}

.cln-price-card h3 {
    margin: 0;
    color: #303047;
    font-size: 1.15rem;
    font-weight: 900;
    text-align: center;
}

.cln-price {
    margin-top: 22px;
    color: var(--cln-primary);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.cln-service-price {
    margin-top: 18px;
    font-size: 2rem;
}

.cln-service-duration {
    margin: 12px 0 0;
    color: #626A79;
    font-size: 0.94rem;
    font-weight: 900;
    text-align: center;
}

.cln-price sup {
    top: -1.1em;
    margin-right: 5px;
    font-size: 1.45rem;
    font-weight: 900;
}

.cln-price span {
    color: #626A79;
    font-size: 1rem;
    font-weight: 900;
}

.cln-price-card ul {
    display: grid;
    gap: 19px;
    min-height: 160px;
    margin: 36px 0 34px;
    padding: 0;
    list-style: none;
}

.cln-price-card li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #404457;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.cln-price-card li i {
    color: var(--cln-primary);
    font-size: 1rem;
}

.cln-gallery {
    padding: 95px 0 0;
    background: #F8FCFF;
}

.cln-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.cln-gallery-item {
    position: relative;
    height: 315px;
    margin: 0;
    overflow: hidden;
    background: var(--cln-soft);
    cursor: zoom-in;
}

.cln-gallery-item::after {
    content: "\F52A";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cln-white);
    background: rgba(8, 38, 74, 0.22);
    font-family: "bootstrap-icons";
    font-size: 2.2rem;
    opacity: 0;
    transition: opacity 220ms ease;
}

.cln-gallery-item:hover::after {
    opacity: 1;
}

.cln-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease, filter 320ms ease;
}

.cln-gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.05);
}

.cln-gallery-modal {
    z-index: 1080;
}

.cln-gallery-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #071F3C;
    box-shadow: 0 34px 90px rgba(8, 38, 74, 0.36);
}

.cln-gallery-modal .modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 0;
    background: #071F3C;
}

.cln-gallery-modal img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.cln-gallery-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    opacity: 1;
}

.cln-gallery-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--cln-shadow-soft);
    transform: translateY(-50%);
}

.cln-gallery-control:hover {
    color: var(--cln-white);
    background: var(--cln-primary);
}

.cln-gallery-prev {
    left: 18px;
}

.cln-gallery-next {
    right: 18px;
}

.cln-gallery-modal .modal-footer {
    justify-content: center;
    border: 0;
    padding: 18px 24px 24px;
    background: #071F3C;
}

.cln-gallery-modal h3 {
    margin: 0;
    color: var(--cln-white);
    font-size: 1.08rem;
    font-weight: 900;
    text-align: center;
}

.cln-quote {
    padding: 88px 0 48px;
    background: #F8FCFF;
}

.cln-quote-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 210px;
    padding: 54px 72px;
    border-radius: 18px;
    color: var(--cln-white);
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    box-shadow: 0 30px 70px rgba(47, 128, 237, 0.22);
}

.cln-quote-box h2 {
    margin: 0;
    color: var(--cln-white);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.15;
}

.cln-quote-box p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    font-weight: 700;
}

.cln-quote-phone {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--cln-white);
}

.cln-quote-phone:hover {
    color: var(--cln-white);
    transform: translateY(-2px);
}

.cln-quote-phone span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: var(--cln-white);
    font-size: 1.4rem;
}

.cln-quote-phone strong,
.cln-quote-phone b {
    display: block;
}

.cln-quote-phone strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
    font-weight: 900;
}

.cln-quote-phone b {
    margin-top: 5px;
    font-size: 1.25rem;
    font-weight: 900;
}

.cln-brands {
    padding: 20px 0 82px;
    background: #F8FCFF;
}

.cln-brand-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 30px;
}

.cln-brand-row span {
    color: rgba(46, 52, 69, 0.25);
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: none;
}

.cln-brand-row span:nth-child(3) {
    font-family: Georgia, serif;
    font-weight: 700;
}

.cln-footer {
    padding: 110px 0 42px;
    color: rgba(255, 255, 255, 0.75);
    background: var(--cln-footer);
}

.cln-footer .cln-logo {
    color: var(--cln-white);
}

.cln-footer .cln-logo:hover {
    color: var(--cln-white);
}

.cln-footer-text {
    max-width: 360px;
    margin: 34px 0 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.03rem;
    font-weight: 600;
    line-height: 1.85;
}

.cln-newsletter {
    display: flex;
    align-items: center;
    max-width: 345px;
    min-height: 64px;
    border: 2px solid rgba(92, 157, 245, 0.55);
    border-radius: 8px;
    background: var(--cln-white);
    overflow: hidden;
}

.cln-newsletter input {
    min-width: 0;
    flex: 1;
    height: 100%;
    padding: 0 24px;
    border: 0;
    outline: 0;
    color: var(--cln-dark);
    font-weight: 700;
}

.cln-newsletter button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 0;
    color: var(--cln-primary-dark);
    background: transparent;
    font-size: 1.25rem;
}

.cln-footer h3 {
    margin: 0 0 30px;
    color: var(--cln-white);
    font-size: 1.18rem;
    font-weight: 900;
}

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

.cln-footer-contact {
    display: grid;
    gap: 18px;
}

.cln-footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.cln-footer-contact i {
    color: var(--cln-white);
}

.cln-footer-social-icons {
    display: flex;
    gap: 17px;
    margin-top: 28px;
}

.cln-footer-social-icons a {
    color: var(--cln-white);
    font-size: 1rem;
}

.cln-footer-social-icons a:hover,
.cln-footer-links a:hover {
    color: var(--cln-soft-2);
}

.cln-footer-links {
    display: grid;
    gap: 20px;
}

.cln-footer-links a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    text-transform: lowercase;
}

.cln-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 92px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.96rem;
    font-weight: 700;
}

.cln-services-page {
    background: #F8FCFF;
}

.cln-services-hero {
    position: relative;
    overflow: hidden;
    padding: 148px 0 82px;
    background:
        radial-gradient(circle at 82% 26%, rgba(200, 243, 241, 0.58), transparent 30%),
        radial-gradient(circle at 12% 32%, rgba(92, 157, 245, 0.16), transparent 26%),
        linear-gradient(126deg, #F8FCFF 0%, #EEF8FF 48%, #DFF4FF 100%);
}

.cln-services-hero .container {
    z-index: 2;
}

.cln-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #697386;
    font-size: 0.92rem;
    font-weight: 800;
}

.cln-breadcrumb a:hover {
    color: var(--cln-primary-dark);
}

.cln-breadcrumb strong {
    color: var(--cln-primary-dark);
}

.cln-services-hero h1 {
    max-width: 760px;
    margin: 20px 0 0;
    color: #303047;
    font-size: 3.55rem;
    font-weight: 900;
    line-height: 1.08;
}

.cln-services-hero p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #6F7889;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.7;
}

.cln-services-hero-bubble-one {
    left: 6%;
    top: 42%;
    width: 28px;
    height: 28px;
}

.cln-services-hero-bubble-two {
    right: 9%;
    bottom: 18%;
    width: 42px;
    height: 42px;
}

.cln-services-hero-icon {
    right: 18%;
    top: 24%;
}

.cln-services-search {
    padding: 24px;
    border: 1px solid rgba(92, 157, 245, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--cln-shadow);
    backdrop-filter: blur(18px);
}

.cln-services-search label {
    display: block;
    margin-bottom: 12px;
    color: #303047;
    font-size: 0.92rem;
    font-weight: 900;
}

.cln-services-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 8px 8px 8px 20px;
    border: 2px solid rgba(92, 157, 245, 0.22);
    border-radius: 18px;
    background: var(--cln-white);
}

.cln-services-search-field i {
    color: var(--cln-primary-dark);
    font-size: 1.15rem;
}

.cln-services-search-field input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--cln-dark);
    font-size: 1rem;
    font-weight: 800;
}

.cln-services-search-field input::placeholder {
    color: #8993A3;
}

.cln-services-search-field button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    color: var(--cln-white);
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(47, 128, 237, 0.22);
}

.cln-services-listing {
    padding-top: 76px;
    background: #F8FCFF;
}

.cln-services-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.cln-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cln-category-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(92, 157, 245, 0.16);
    border-radius: 999px;
    color: #3D4658;
    background: var(--cln-white);
    box-shadow: 0 10px 24px rgba(15, 39, 74, 0.05);
    font-size: 0.92rem;
    font-weight: 900;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cln-category-filter:hover,
.cln-category-filter.active {
    color: var(--cln-white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    box-shadow: var(--cln-shadow);
    transform: translateY(-1px);
}

.cln-services-count {
    flex: 0 0 auto;
    margin: 9px 0 0;
    color: #303047;
    font-size: 0.98rem;
    font-weight: 900;
}

.cln-services-alert {
    display: none;
    margin-bottom: 22px;
    padding: 15px 18px;
    border-radius: 14px;
    color: #974B00;
    background: rgba(255, 183, 43, 0.16);
    font-weight: 800;
}

.cln-services-alert.is-visible {
    display: block;
}

.cln-services-grid-wrap {
    position: relative;
    min-height: 280px;
}

.cln-services-grid-wrap.is-loading .cln-services-grid,
.cln-services-grid-wrap.is-loading .cln-empty-state {
    display: none;
}

.cln-services-grid-wrap.is-loading::before {
    content: "";
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cln-services-grid-wrap.is-loading::after {
    content: "";
    display: block;
    height: 430px;
    border-radius: var(--cln-radius-lg);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)) 0 0 / 220px 100% no-repeat,
        linear-gradient(#DFF4FF 0 0) 24px 24px / calc(100% - 48px) 190px no-repeat,
        linear-gradient(#EAF7FF 0 0) 24px 246px / 48% 18px no-repeat,
        linear-gradient(#EAF7FF 0 0) 24px 280px / 88% 14px no-repeat,
        linear-gradient(#EAF7FF 0 0) 24px 306px / 74% 14px no-repeat,
        var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
    animation: cln-shimmer 1150ms linear infinite;
}

@keyframes cln-shimmer {
    to {
        background-position: 120% 0, 24px 24px, 24px 246px, 24px 280px, 24px 306px, 0 0;
    }
}

.cln-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cln-service-list-card {
    display: flex;
    flex-direction: column;
}

.cln-service-card-image {
    position: relative;
    display: block;
    height: 225px;
    margin: 18px 18px 0;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cln-soft), var(--cln-soft-2));
}

.cln-service-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.cln-service-list-card:hover .cln-service-card-image img {
    transform: scale(1.05);
}

.cln-service-card-image b {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    min-height: 30px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--cln-primary-dark);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--cln-shadow-soft);
    font-size: 0.76rem;
    font-weight: 900;
}

.cln-service-image-fallback,
.cln-detail-media > span {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--cln-primary-dark);
    font-size: 3rem;
}

.cln-image-missing .cln-service-image-fallback,
.cln-detail-media.cln-image-missing > span {
    display: flex;
}

.cln-service-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 28px 28px;
}

.cln-service-card-category {
    color: var(--cln-primary-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.cln-service-card-body h2 {
    margin: 10px 0 0;
    color: #303047;
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.25;
}

.cln-service-card-body h2 a:hover {
    color: var(--cln-primary-dark);
}

.cln-service-card-body p {
    margin: 14px 0 0;
    color: var(--cln-muted);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.58;
}

.cln-service-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.cln-service-card-meta strong {
    color: var(--cln-primary-dark);
    font-size: 1.18rem;
    font-weight: 900;
}

.cln-service-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #667085;
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.cln-service-highlights {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.cln-service-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #475062;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.cln-service-highlights i {
    margin-top: 2px;
    color: var(--cln-primary);
}

.cln-service-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 26px;
}

.cln-service-card-actions .cln-btn-primary,
.cln-service-card-actions .cln-btn-light {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.88rem;
}

.cln-empty-state {
    max-width: 560px;
    margin: 0 auto;
    padding: 54px 38px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: var(--cln-radius-lg);
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
    text-align: center;
}

.cln-empty-state > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.14);
    font-size: 2rem;
}

.cln-empty-state h2 {
    margin: 22px 0 0;
    color: #303047;
    font-size: 1.55rem;
    font-weight: 900;
}

.cln-empty-state p {
    margin: 12px auto 24px;
    color: var(--cln-muted);
    font-weight: 700;
    line-height: 1.6;
}

.cln-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.cln-service-hero-premium .cln-detail-actions .cln-btn-light {
    color: #17324d !important;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cln-service-hero-premium .cln-detail-actions .cln-btn-light i {
    color: inherit;
}

.cln-service-hero-premium .cln-detail-actions .cln-btn-light:hover,
.cln-service-hero-premium .cln-detail-actions .cln-btn-light:focus,
.cln-service-hero-premium .cln-detail-actions .cln-btn-light:active {
    color: #0f274a !important;
    background: #ffffff;
    transform: translateY(-2px);
}

.cln-detail-media {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 16px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    background: linear-gradient(135deg, var(--cln-soft), var(--cln-soft-2));
    box-shadow: var(--cln-shadow);
}

.cln-detail-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.cln-service-media-block {
    margin-top: 54px;
    padding: 30px;
    border-radius: 26px;
    background: #FFFFFF;
    box-shadow: var(--cln-shadow-soft);
}

.cln-service-media-main {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--cln-soft), var(--cln-soft-2));
}

.cln-service-media-main img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.cln-service-video-trigger {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 4;
}

.cln-service-media-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.cln-service-media-thumb {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 14px;
    background: #FFFFFF;
    transition: border-color 200ms ease, transform 200ms ease;
}

.cln-service-media-thumb img {
    width: 100%;
    height: 84px;
    object-fit: cover;
}

.cln-service-media-thumb.active,
.cln-service-media-thumb:hover {
    border-color: rgba(47, 128, 237, 0.58);
    transform: translateY(-1px);
}

.cln-service-video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cln-service-video-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 999px;
    color: var(--cln-primary-dark);
    background: #F8FCFF;
    font-weight: 800;
}

.cln-service-video-chip i {
    font-size: 1rem;
}

.cln-video-modal .modal-content {
    border: 0;
    border-radius: 24px;
    background: #071F3C;
    box-shadow: 0 34px 90px rgba(8, 38, 74, 0.36);
}

.cln-video-frame-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.cln-video-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cln-service-detail-summary {
    background: #F8FCFF;
}

.cln-detail-fact {
    height: 100%;
    padding: 34px;
    border-radius: 22px;
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
}

.cln-detail-fact span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.14);
    font-size: 1.35rem;
}

.cln-detail-fact strong {
    display: block;
    margin-top: 18px;
    color: #303047;
    font-size: 1.25rem;
    font-weight: 900;
}

.cln-detail-fact p {
    margin: 8px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-detail-includes {
    margin-top: 44px;
    padding: 38px;
    border-radius: 24px;
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
}

.cln-detail-includes h2 {
    margin: 0;
    color: #303047;
    font-size: 1.55rem;
    font-weight: 900;
}

.cln-booking-questionnaires {
    margin-top: 54px;
}

.cln-booking-flow {
    margin-top: 54px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--cln-shadow);
}

.cln-booking-flow-head,
.cln-booking-service-summary,
.cln-booking-actions,
.cln-booking-confirmation {
    display: flex;
    gap: 24px;
}

.cln-booking-flow-head,
.cln-booking-service-summary {
    align-items: flex-start;
    justify-content: space-between;
}

.cln-booking-total {
    flex: 0 0 auto;
    min-width: 190px;
    padding: 20px;
    border-radius: 18px;
    color: var(--cln-white);
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    box-shadow: var(--cln-shadow);
}

.cln-booking-total span,
.cln-booking-total strong {
    display: block;
}

.cln-booking-total span {
    opacity: 0.86;
    font-weight: 800;
}

.cln-booking-total strong {
    margin-top: 8px;
    font-size: 1.9rem;
    font-weight: 900;
}

.cln-booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.cln-booking-steps button {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid rgba(92, 157, 245, 0.14);
    border-radius: 16px;
    color: #4D5668;
    background: #F8FCFF;
    font-weight: 900;
    text-align: left;
}

.cln-booking-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.14);
}

.cln-booking-steps button.active,
.cln-booking-steps button.completed {
    color: var(--cln-white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
}

.cln-booking-steps button.active span,
.cln-booking-steps button.completed span {
    color: var(--cln-primary-dark);
    background: var(--cln-white);
}

.cln-booking-alert {
    display: none;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #974B00;
    background: rgba(255, 183, 43, 0.16);
    font-weight: 800;
}

.cln-booking-alert.is-visible {
    display: block;
}

.cln-booking-step {
    display: none;
}

.cln-booking-step.active {
    display: block;
}

.cln-booking-service-summary,
.cln-booking-empty-options {
    padding: 24px;
    border-radius: 20px;
    background: #F8FCFF;
}

.cln-booking-service-summary h3,
.cln-summary-block h4 {
    margin: 0;
    color: #303047;
    font-weight: 900;
}

.cln-booking-service-summary p,
.cln-booking-empty-options p {
    margin: 8px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-booking-service-summary strong {
    color: var(--cln-primary-dark);
    font-size: 1.45rem;
    font-weight: 900;
}

.cln-booking-service-summary span {
    display: block;
    color: var(--cln-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.cln-booking-options {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.cln-booking-option-group {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(92, 157, 245, 0.14);
    border-radius: 20px;
    background: var(--cln-white);
}

.cln-booking-option-group.has-error {
    border-color: #F36C78;
}

.cln-booking-option-group legend {
    float: none;
    width: auto;
    margin: 0 0 12px;
    color: #303047;
    font-size: 1rem;
    font-weight: 900;
}

.cln-booking-option-group legend b {
    color: #F36C78;
}

.cln-booking-option-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cln-booking-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    height: 100%;
    padding: 16px;
    border: 1px solid rgba(92, 157, 245, 0.14);
    border-radius: 16px;
    background: #F8FCFF;
    cursor: pointer;
}

.cln-booking-option:has(input:checked) {
    border-color: rgba(47, 128, 237, 0.42);
    background: rgba(92, 157, 245, 0.12);
}

.cln-booking-option strong,
.cln-booking-option small {
    display: block;
}

.cln-booking-option strong {
    color: #303047;
    font-weight: 900;
}

.cln-booking-option small {
    margin-top: 4px;
    color: var(--cln-muted);
    font-weight: 800;
}

.cln-booking-customer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cln-booking-customer-box {
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 18px;
    background: #F8FCFF;
}

.cln-booking-customer-box h3 {
    margin: 0;
    color: #303047;
    font-size: 1.08rem;
    font-weight: 900;
}

.cln-booking-customer-box p {
    margin: 8px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-booking-auth-lock {
    padding: 34px 28px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 22px;
    background: #F8FCFF;
    text-align: center;
}

.cln-booking-auth-lock > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.16);
    font-size: 1.9rem;
}

.cln-booking-auth-lock h3 {
    margin: 16px auto 0;
    max-width: 620px;
    color: #303047;
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.4;
}

.cln-booking-auth-lock p {
    margin: 10px auto 0;
    max-width: 640px;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-booking-auth-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.cln-booking-addresses {
    display: grid;
    gap: 12px;
}

.cln-booking-address-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(92, 157, 245, 0.14);
    border-radius: 16px;
    background: #F8FCFF;
    cursor: pointer;
}

.cln-booking-address-card:has(input:checked) {
    border-color: rgba(47, 128, 237, 0.54);
    background: rgba(92, 157, 245, 0.1);
}

.cln-booking-address-card:has(input:disabled) {
    opacity: 0.75;
    border-style: dashed;
}

.cln-booking-address-card strong,
.cln-booking-address-card small {
    display: block;
}

.cln-booking-address-card strong {
    color: #303047;
    font-weight: 900;
}

.cln-booking-address-card small {
    margin-top: 2px;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-booking-address-status {
    font-size: 0.78rem;
}

.cln-booking-address-status.is-covered {
    color: #0f8a5b;
}

.cln-booking-address-status.is-uncovered {
    color: #bd3f4e;
}

.cln-booking-empty-address {
    padding: 18px;
    border-radius: 14px;
    border: 1px dashed rgba(92, 157, 245, 0.3);
    background: #F8FCFF;
}

.cln-booking-empty-address strong {
    display: block;
    color: #303047;
    font-weight: 900;
}

.cln-booking-empty-address p {
    margin: 7px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-btn-address-new {
    margin-top: 12px;
}

.cln-booking-scheduler {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.cln-booking-calendar-pane,
.cln-booking-times-pane {
    padding: 18px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 16px;
    background: #FFFFFF;
}

.cln-booking-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cln-booking-calendar-head strong {
    color: #303047;
    font-size: 1rem;
    font-weight: 900;
}

.cln-calendar-nav {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 50%;
    color: var(--cln-primary-dark);
    background: #F8FCFF;
}

.cln-calendar-weekdays,
.cln-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.cln-calendar-weekdays {
    margin-bottom: 8px;
}

.cln-calendar-weekdays span {
    text-align: center;
    color: var(--cln-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.cln-calendar-day {
    min-height: 42px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 12px;
    color: #303047;
    background: #F8FCFF;
    font-weight: 800;
}

.cln-calendar-day.is-available {
    border-color: rgba(47, 128, 237, 0.4);
}

.cln-calendar-day.is-selected {
    color: #FFFFFF;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
}

.cln-calendar-day.is-disabled {
    opacity: 0.42;
}

.cln-calendar-blank {
    min-height: 42px;
}

.cln-booking-times-pane h4 {
    margin: 0;
    color: #303047;
    font-size: 1rem;
    font-weight: 900;
}

.cln-booking-times-pane p {
    margin: 8px 0 12px;
    color: var(--cln-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.cln-time-slot-list {
    display: grid;
    gap: 8px;
}

.cln-time-slot {
    min-height: 40px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 12px;
    color: #303047;
    background: #F8FCFF;
    font-weight: 800;
}

.cln-time-slot.is-selected {
    color: #FFFFFF;
    border-color: transparent;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
}

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

.cln-booking-actions {
    align-items: center;
    justify-content: flex-end;
    margin-top: 28px;
}

.cln-booking-confirmation {
    align-items: flex-start;
}

.cln-booking-confirmation > div {
    flex: 1;
}

.cln-booking-payment-box {
    flex: 0 0 320px;
    padding: 26px;
    border-radius: 22px;
    background: #F8FCFF;
    box-shadow: var(--cln-shadow-soft);
}

.cln-booking-payment-box > span,
.cln-booking-payment-box > strong {
    display: block;
}

.cln-booking-payment-box > span {
    color: var(--cln-muted);
    font-weight: 900;
}

.cln-booking-payment-box > strong {
    margin-top: 8px;
    color: var(--cln-primary-dark);
    font-size: 1.5rem;
    font-weight: 900;
}

.cln-booking-payment-box p {
    color: var(--cln-muted);
    font-weight: 700;
    line-height: 1.55;
}

.cln-payment-methods {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.cln-payment-method {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 14px;
    background: #FFFFFF;
    cursor: pointer;
}

.cln-payment-method:has(input:checked) {
    border-color: rgba(47, 128, 237, 0.5);
    background: rgba(92, 157, 245, 0.1);
}

.cln-payment-method b,
.cln-payment-method small {
    display: block;
}

.cln-payment-method b {
    color: #303047;
    font-weight: 900;
}

.cln-payment-method small {
    margin-top: 2px;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-payment-proof,
.cln-payment-card-note {
    display: none;
    padding: 12px;
    border-radius: 14px;
    background: #F8FCFF;
}

.cln-payment-proof.is-visible,
.cln-payment-card-note.is-visible {
    display: block;
}

.cln-payment-proof label {
    display: block;
    margin-bottom: 6px;
    color: #303047;
    font-size: 0.9rem;
    font-weight: 800;
}

.cln-btn-card-pay {
    width: 100%;
}

.cln-payment-card-note p {
    margin: 8px 0 0;
}

.cln-booking-price-lines {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.cln-booking-price-lines div,
.cln-summary-block li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.cln-booking-price-lines div:last-child {
    padding-top: 14px;
    border-top: 1px solid rgba(92, 157, 245, 0.18);
}

.cln-booking-price-lines span,
.cln-summary-block span {
    color: #4D5668;
    font-weight: 800;
}

.cln-booking-price-lines b,
.cln-summary-block b {
    color: #303047;
    font-weight: 900;
    text-align: right;
}

.cln-summary-block {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 18px;
    background: #F8FCFF;
}

.cln-summary-block p {
    margin: 8px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-summary-block ul {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.cln-success-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 16px;
    color: #0F5132;
    background: rgba(41, 183, 179, 0.14);
    font-weight: 800;
}

.cln-questionnaire-card {
    margin-top: 24px;
    padding: 32px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: 24px;
    background: var(--cln-white);
    box-shadow: var(--cln-shadow-soft);
}

.cln-booking-questionnaires-embedded {
    margin-top: 0;
}

.cln-booking-questionnaires-embedded .cln-questionnaire-card:first-child {
    margin-top: 0;
}

.cln-questionnaire-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.cln-questionnaire-head h3 {
    margin: 0;
    color: #303047;
    font-size: 1.3rem;
    font-weight: 900;
}

.cln-questionnaire-head p {
    margin: 10px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
    line-height: 1.6;
}

.cln-questionnaire-head > span {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--cln-primary-dark);
    background: rgba(92, 157, 245, 0.14);
    font-size: 0.76rem;
    font-weight: 900;
}

.cln-questionnaire-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cln-question-field {
    display: grid;
    gap: 9px;
}

.cln-question-field label {
    margin: 0;
    color: #303047;
    font-size: 0.95rem;
    font-weight: 900;
}

.cln-question-field label b {
    color: #F36C78;
}

.cln-question-field small {
    color: var(--cln-muted);
    font-weight: 700;
}

.cln-question-field input[type="text"],
.cln-question-field input[type="number"],
.cln-question-field input[type="date"],
.cln-question-field input[type="time"],
.cln-question-field input[type="email"],
.cln-question-field textarea,
.cln-question-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 14px;
    color: var(--cln-dark);
    background: #F8FCFF;
    font-weight: 800;
    outline: 0;
}

.cln-question-field textarea {
    min-height: 112px;
    resize: vertical;
}

.cln-question-field input:focus,
.cln-question-field textarea:focus,
.cln-question-field select:focus {
    border-color: rgba(47, 128, 237, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.12);
}

.cln-question-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cln-question-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid rgba(92, 157, 245, 0.18);
    border-radius: 999px;
    background: #F8FCFF;
    cursor: pointer;
}

.cln-question-option span {
    color: #303047;
    font-weight: 800;
}

.cln-question-field.has-error input,
.cln-question-field.has-error textarea,
.cln-question-field.has-error select,
.cln-question-field.has-error .cln-question-option {
    border-color: #F36C78;
}

body.cln-js .cln-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

body.cln-js .cln-animate.cln-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1199.98px) {
    .cln-hero h1 {
        font-size: 3.7rem;
    }

    .cln-hero-img {
        width: min(540px, 100%);
    }

    .cln-service-image {
        height: 230px;
    }
}

@media (max-width: 991.98px) {
    .cln-section {
        padding: 78px 0;
    }

    .cln-navbar {
        min-height: 72px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 30px rgba(15, 39, 74, 0.08);
        backdrop-filter: blur(16px);
    }

    .cln-navbar > .container {
        gap: 10px;
    }

    .cln-logo {
        order: 1;
        margin-right: auto;
        font-size: 1.55rem;
    }

    .cln-navbar-toggler {
        order: 2;
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .cln-navbar .navbar-collapse {
        position: absolute;
        top: calc(100% + 10px);
        right: 12px;
        left: auto;
        z-index: 1050;
        width: min(390px, calc(100vw - 24px));
        max-height: min(480px, calc(100vh - 92px));
        margin-top: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 16px;
        border-radius: 20px;
        background: var(--cln-white);
        box-shadow: var(--cln-shadow-soft);
    }

    .cln-navbar .navbar-collapse.collapsing {
        display: block;
        height: auto !important;
        overflow: hidden;
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .cln-navbar .navbar-collapse.show {
        display: block;
    }

    .cln-navbar .navbar-collapse:not(.show):not(.collapsing) {
        display: none !important;
    }

    .cln-navbar-quick {
        order: 3;
        margin-left: 0;
        margin-right: 0;
        gap: 8px;
    }

    .cln-icon-action {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
        font-size: 1.05rem;
    }

    .cln-user-text {
        display: none;
    }

    .cln-nav-menu {
        gap: 8px;
    }

    .cln-nav-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        margin-top: 18px;
    }

    .cln-btn-nav {
        width: 100%;
        border-radius: 999px;
    }

    .cln-hero {
        min-height: 0;
        padding: 116px 0 112px;
    }

    .cln-hero-row {
        min-height: 0;
        gap: 42px;
    }

    .cln-hero h1 {
        font-size: 3.3rem;
    }

    .cln-hero-art {
        min-height: 470px;
        justify-content: center;
    }

    .cln-hero-platform {
        right: 0;
        width: 96%;
    }

    .cln-features-wrap {
        margin-top: -58px;
    }

    .cln-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .cln-services-track {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
    }

    .cln-about-collage,
    .cln-why-collage {
        max-width: 620px;
        margin: 0 auto;
    }

    .cln-mini-testimonial {
        grid-template-columns: 1fr;
    }

    .cln-mini-media {
        width: 230px;
    }

    .cln-why-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .cln-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cln-quote-box {
        padding: 44px;
    }

    .cln-brand-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .cln-services-hero {
        padding-top: 124px;
    }

    .cln-services-hero h1 {
        font-size: 2.9rem;
    }

    .cln-services-toolbar {
        flex-direction: column;
    }

    .cln-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .cln-nav-actions {
        display: none;
    }

    .cln-search-button {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .cln-nav-login {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.86rem;
    }

    .cln-icon-action {
        min-width: 44px;
        height: 44px;
    }
}

@media (max-width: 767.98px) {
    .cln-section {
        padding: 64px 0;
    }

    .cln-section-title {
        font-size: 2.22rem;
    }

    .cln-navbar {
        min-height: 64px;
        padding: 8px 0;
    }

    .cln-navbar > .container {
        gap: 8px;
    }

    .cln-logo {
        max-width: calc(100% - 112px);
        gap: 8px;
        font-size: 1.42rem;
    }

    .cln-logo-mark {
        flex: 0 0 30px;
        width: 30px;
        height: 34px;
        font-size: 1rem;
    }

    .cln-logo-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .cln-navbar-quick {
        order: 2;
        margin-left: auto;
    }

    .cln-navbar-toggler {
        order: 3;
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .cln-search-button {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .cln-navbar-quick .cln-nav-login,
    .cln-navbar-quick > .dropdown {
        display: none;
    }

    .cln-navbar .navbar-collapse {
        right: 12px;
        left: 12px;
        width: auto;
        max-height: min(420px, calc(100vh - 82px));
        padding: 14px;
        border-radius: 18px;
    }

    .cln-navbar .nav-link {
        padding: 10px 2px;
    }

    .cln-nav-actions {
        margin-top: 12px;
    }

    .cln-btn-nav {
        min-height: 44px;
        padding: 12px 18px;
    }

    .cln-search-panel {
        position: fixed;
        top: 72px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: calc(100vh - 88px);
        padding: 12px;
        border-radius: 18px;
    }

    .cln-search-field {
        min-height: 50px;
        gap: 8px;
        padding: 0 8px 0 12px;
    }

    .cln-search-field > i {
        display: none;
    }

    .cln-search-submit {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .cln-search-suggestions {
        max-height: min(296px, calc(100vh - 230px));
    }

    .cln-search-suggestion {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 9px;
        padding: 8px;
    }

    .cln-search-suggestion img,
    .cln-search-suggestion-icon {
        width: 44px;
        height: 44px;
    }

    .cln-search-suggestion-copy strong {
        font-size: 0.88rem;
    }

    .cln-search-suggestion-copy span,
    .cln-search-suggestion b {
        font-size: 0.76rem;
    }

    .cln-hero {
        padding: 92px 0 86px;
    }

    .cln-hero h1 {
        font-size: 2.58rem;
    }

    .cln-hero-copy {
        font-size: 1rem;
    }

    .cln-hero-actions {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
        max-width: 420px;
    }

    .cln-hero-stats {
        align-items: stretch;
        flex-direction: column;
    }

    .cln-btn-hero {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 54px;
        padding: 0 6px 0 20px;
        font-size: 0.86rem;
    }

    .cln-btn-hero span {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .cln-play-button {
        align-self: center;
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 1.12rem;
    }

    .cln-vip {
        align-items: flex-start;
        flex-direction: column;
    }

    .cln-stat-card {
        width: 100%;
    }

    .cln-hero-art {
        min-height: 370px;
    }

    .cln-hero-platform {
        bottom: 10px;
        height: 92px;
        border-radius: 54px 0 0 54px;
    }

    .cln-features-wrap {
        margin-top: -42px;
        padding-bottom: 30px;
    }

    .cln-feature-card {
        min-height: 0;
        padding: 28px;
    }

    .cln-about-collage,
    .cln-why-collage {
        min-height: 460px;
    }

    .cln-about-img-main {
        width: 68%;
        height: 260px;
    }

    .cln-about-img-circle {
        right: 4%;
        width: 118px;
        height: 118px;
    }

    .cln-about-img-bottom {
        width: 64%;
        height: 230px;
    }

    .cln-about-years {
        left: 20px;
        bottom: 38px;
    }

    .cln-about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cln-about-stats div {
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(107, 114, 128, 0.22);
    }

    .cln-about-stats div:last-child {
        border-bottom: 0;
    }

    .cln-services-track {
        grid-auto-columns: 100%;
        gap: 20px;
    }

    .cln-service-controls {
        width: 100%;
    }

    .cln-service-nav {
        width: 50%;
    }

    .cln-service-image {
        height: 218px;
    }

    .cln-why-img-wide {
        width: 94%;
        height: 210px;
    }

    .cln-why-img-tall {
        width: 58%;
        height: 235px;
    }

    .cln-why-years {
        left: 6%;
        bottom: 58px;
    }

    .cln-price-card {
        padding: 42px 28px 32px;
    }

    .cln-featured-service-card {
        padding-top: 24px;
    }

    .cln-featured-image {
        height: 176px;
    }

    .cln-gallery-grid {
        grid-template-columns: 1fr;
    }

    .cln-gallery-item {
        height: 260px;
    }

    .cln-gallery-control {
        width: 44px;
        height: 44px;
    }

    .cln-gallery-prev {
        left: 10px;
    }

    .cln-gallery-next {
        right: 10px;
    }

    .cln-quote {
        padding-top: 64px;
    }

    .cln-quote-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 36px 28px;
    }

    .cln-quote-box h2 {
        font-size: 2rem;
    }

    .cln-brand-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .cln-brand-row span {
        font-size: 1.45rem;
    }

    .cln-footer {
        padding-top: 76px;
    }

    .cln-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 56px;
    }

    .cln-services-hero h1 {
        font-size: 2.35rem;
    }

    .cln-services-search {
        padding: 18px;
    }

    .cln-services-search-field {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
    }

    .cln-services-search-field i {
        display: none;
    }

    .cln-services-search-field button {
        width: 100%;
    }

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

    .cln-service-card-actions {
        grid-template-columns: 1fr;
    }

    .cln-detail-media,
    .cln-detail-media img {
        min-height: 280px;
    }

    .cln-service-media-block {
        padding: 20px;
    }

    .cln-service-media-main,
    .cln-service-media-main img {
        min-height: 260px;
    }

    .cln-service-media-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .cln-service-video-list {
        flex-direction: column;
    }

    .cln-questionnaire-fields {
        grid-template-columns: 1fr;
    }

    .cln-questionnaire-head {
        flex-direction: column;
    }

    .cln-booking-flow {
        padding: 22px;
    }

    .cln-booking-flow-head,
    .cln-booking-service-summary,
    .cln-booking-confirmation {
        flex-direction: column;
    }

    .cln-booking-total,
    .cln-booking-payment-box {
        width: 100%;
        flex-basis: auto;
    }

    .cln-booking-steps,
    .cln-booking-option-list,
    .cln-booking-customer-grid {
        grid-template-columns: 1fr;
    }

    .cln-booking-auth-actions {
        flex-direction: column;
    }

    .cln-booking-scheduler {
        grid-template-columns: 1fr;
    }

    .cln-booking-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }
}

@media (max-width: 479.98px) {
    .cln-logo {
        max-width: calc(100% - 104px);
        font-size: 1.28rem;
    }

    .cln-logo-mark {
        flex-basis: 28px;
        width: 28px;
        height: 32px;
    }

    .cln-navbar-quick {
        gap: 6px;
    }

    .cln-icon-action {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
    }

    .cln-hero h1 {
        font-size: 2.24rem;
    }

    .cln-btn-primary,
    .cln-btn-light {
        width: 100%;
        white-space: normal;
    }

    .cln-hero-actions .cln-btn-primary {
        width: auto;
        white-space: nowrap;
    }

    .cln-hero-actions {
        gap: 10px;
    }

    .cln-btn-hero {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        min-height: 48px;
        padding: 0 5px 0 14px;
        gap: 8px;
        font-size: 0.76rem;
        justify-content: space-between;
    }

    .cln-btn-hero span {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .cln-play-button {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        box-shadow: 0 0 0 6px rgba(255, 183, 43, 0.18);
    }

    .cln-hero-art {
        min-height: 320px;
    }

    .cln-floating-card {
        width: 112px;
        height: 112px;
    }

    .cln-floating-card strong {
        font-size: 2.15rem;
    }

    .cln-about-collage,
    .cln-why-collage {
        min-height: 410px;
    }

    .cln-about-img-main {
        height: 225px;
    }

    .cln-about-img-bottom {
        height: 205px;
    }

    .cln-service-body {
        padding: 22px;
    }

    .cln-mini-media {
        width: 100%;
    }

    .cln-phone-card {
        align-items: flex-start;
    }

    .cln-price {
        font-size: 3.2rem;
    }

    .cln-quote-phone {
        align-items: flex-start;
    }
}

/* Premium overrides: keep these at the end to win cascade */

.cln-nav-login {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.86rem;
}

.cln-user-action {
    gap: 9px;
    min-height: 46px;
    padding: 0 14px 0 8px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    background: rgba(255, 255, 255, 0.94);
}

.cln-user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #2f80ed;
    background: rgba(92, 157, 245, 0.16);
    font-size: 0.92rem;
}

.cln-user-text {
    font-size: 0.84rem;
    font-weight: 900;
}

.cln-user-menu {
    min-width: 256px;
    margin-top: 12px;
    padding: 10px;
    border-radius: 16px;
}

.cln-user-menu-head {
    display: grid;
    gap: 4px;
    margin-bottom: 6px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fcff;
}

.cln-user-menu-head strong {
    color: #303047;
    font-size: 0.92rem;
    font-weight: 900;
}

.cln-user-menu-head small {
    color: #6b7280;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.cln-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #344155;
    font-size: 0.86rem;
    font-weight: 800;
}

.cln-user-menu .dropdown-item span:not(.cln-menu-badge) {
    min-width: 0;
}

.cln-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: auto;
    padding: 0 8px;
    border-radius: 999px;
    color: #ffffff;
    background: #f36c78;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(243, 108, 120, 0.22);
}

.cln-btn-nav-support {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cln-btn-nav-support .cln-menu-badge {
    margin-left: 0;
}

.cln-user-menu .dropdown-item i {
    color: #2f80ed;
    font-size: 0.96rem;
}

.cln-user-menu-logout form {
    margin: 0;
}

.cln-user-logout-button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    border: 1px solid rgba(243, 108, 120, 0.28);
    border-radius: 10px;
    color: #c53949;
    background: rgba(243, 108, 120, 0.1);
    font-size: 0.84rem;
    font-weight: 900;
}

.cln-service-media-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    background: #f8fcff;
}

.cln-service-media-caption strong {
    color: #2f3447;
    font-size: 0.95rem;
    font-weight: 900;
}

.cln-service-media-caption p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.45;
}

.cln-service-media-caption small {
    color: #2f80ed;
    font-size: 0.76rem;
    font-weight: 900;
    white-space: nowrap;
}

.cln-service-media-thumb {
    position: relative;
}

.cln-service-media-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 0 rgba(47, 128, 237, 0.6);
    transition: box-shadow 180ms ease;
}

.cln-service-media-thumb.active::after,
.cln-service-media-thumb:hover::after {
    box-shadow: inset 0 0 0 2px rgba(47, 128, 237, 0.62);
}

.cln-service-video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.cln-service-video-chip {
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 70px;
    padding: 9px 10px;
    border-radius: 14px;
    text-align: left;
}

.cln-service-video-chip-thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(92, 157, 245, 0.14);
}

.cln-service-video-chip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cln-service-video-chip-thumb i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #2f80ed;
    font-size: 1.15rem;
}

.cln-service-video-chip-label {
    display: grid;
    gap: 3px;
}

.cln-service-video-chip-label b {
    display: block;
    color: #303047;
    font-size: 0.85rem;
    font-weight: 900;
    line-height: 1.35;
}

.cln-service-video-chip-label small {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.cln-video-modal .modal-body {
    padding: 10px;
}

.cln-video-modal .modal-footer {
    padding: 0 16px 16px;
    border-top: 0;
}

.cln-video-modal .modal-footer h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.cln-gallery-modal-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 20px !important;
}

.cln-gallery-modal-body img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 12px;
}

.cln-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #2f80ed;
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-50%);
}

.cln-gallery-nav.prev {
    left: 18px;
}

.cln-gallery-nav.next {
    right: 18px;
}

@media (max-width: 991.98px) {
    .cln-user-text {
        display: none;
    }

    .cln-user-action {
        min-width: 46px;
        padding-right: 10px;
    }

    .cln-user-action.dropdown-toggle::after {
        display: none;
    }

    .cln-service-media-caption {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .cln-user-menu {
        min-width: min(280px, calc(100vw - 20px));
    }

    .cln-service-video-list {
        grid-template-columns: 1fr;
    }

    .cln-service-video-chip {
        min-height: 0;
    }
}

/* Service landing redesign */

.cln-service-landing {
    background: #f8fcff;
}

.cln-service-hero-premium {
    position: relative;
    min-height: 690px;
    padding: 132px 0 94px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #0a2b50 0%, #2f80ed 100%);
}

.cln-service-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cln-service-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 38, 74, 0.86) 0%, rgba(8, 38, 74, 0.62) 48%, rgba(8, 38, 74, 0.24) 100%),
        linear-gradient(180deg, rgba(8, 38, 74, 0.2) 0%, rgba(8, 38, 74, 0.74) 100%);
}

.cln-service-hero-empty .cln-service-hero-overlay {
    background:
        radial-gradient(circle at 12% 22%, rgba(92, 157, 245, 0.32), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(200, 243, 241, 0.26), transparent 30%),
        linear-gradient(135deg, #08264a 0%, #174c8a 58%, #2f80ed 100%);
}

.cln-breadcrumb-on-dark {
    color: rgba(255, 255, 255, 0.72);
}

.cln-breadcrumb-on-dark a,
.cln-breadcrumb-on-dark strong {
    color: #ffffff;
}

.cln-service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: end;
    gap: 40px;
    min-height: 430px;
}

.cln-service-hero-copy h1 {
    max-width: 780px;
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.06;
}

.cln-service-hero-copy p {
    max-width: 670px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.72;
}

.cln-badge-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.cln-service-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cln-service-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.cln-service-hero-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.cln-service-hero-card span,
.cln-service-hero-card small {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.cln-service-hero-card strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.cln-service-hero-card p {
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    line-height: 1.6;
}

.cln-service-hero-card div {
    display: grid;
    gap: 9px;
}

.cln-detail-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cln-service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 24px;
    margin-top: 34px;
}

.cln-service-rich-card,
.cln-service-benefits-card,
.cln-detail-list-card,
.cln-recommendations-card {
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--cln-shadow-soft);
}

.cln-service-rich-card {
    padding: 40px;
}

.cln-service-rich-card h2 {
    margin: 18px 0 0;
    color: #303047;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.18;
}

.cln-service-rich-text {
    margin-top: 22px;
    color: #4d5668;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.78;
}

.cln-service-rich-text p,
.cln-service-rich-text ul,
.cln-service-rich-text ol,
.cln-service-rich-text blockquote {
    margin: 0 0 16px;
}

.cln-service-rich-text ul,
.cln-service-rich-text ol {
    padding-left: 22px;
}

.cln-service-rich-text li {
    margin-bottom: 8px;
}

.cln-service-rich-text h2,
.cln-service-rich-text h3,
.cln-service-rich-text h4 {
    margin: 24px 0 12px;
    color: #303047;
    font-weight: 900;
}

.cln-service-benefits-card {
    align-self: start;
    position: sticky;
    top: 108px;
    padding: 28px;
}

.cln-service-benefits-card h3 {
    margin: 0;
    color: #303047;
    font-size: 1.18rem;
    font-weight: 900;
}

.cln-service-benefits-card ul,
.cln-soft-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.cln-service-benefits-card li,
.cln-soft-list li {
    display: flex;
    gap: 10px;
    color: #4d5668;
    font-weight: 800;
    line-height: 1.5;
}

.cln-service-benefits-card i,
.cln-soft-list i {
    flex: 0 0 auto;
    color: #2f80ed;
}

.cln-service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.cln-detail-list-card {
    padding: 32px;
}

.cln-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.cln-card-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    color: #2f80ed;
    background: rgba(92, 157, 245, 0.14);
    font-size: 1.25rem;
}

.cln-card-head h2,
.cln-card-head h3 {
    margin: 0;
    color: #303047;
    font-size: 1.35rem;
    font-weight: 900;
}

.cln-card-head p {
    margin: 6px 0 0;
    color: var(--cln-muted);
    font-weight: 700;
    line-height: 1.5;
}

.cln-detail-list-card .cln-check-list {
    margin-top: 0;
}

.cln-detail-list-card-neutral {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.cln-recommendations-card {
    margin-top: 30px;
    padding: 34px;
}

.cln-recommendations-card .cln-section-head {
    margin-bottom: 24px;
}

.cln-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.cln-recommendations-grid article {
    display: flex;
    gap: 12px;
    min-height: 108px;
    padding: 18px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: 18px;
    background: #f8fcff;
}

.cln-recommendations-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    font-size: 0.86rem;
    font-weight: 900;
}

.cln-recommendations-grid p {
    margin: 0;
    color: #4d5668;
    font-weight: 800;
    line-height: 1.55;
}

.cln-service-media-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
    gap: 20px;
}

.cln-service-media-block .cln-card-head {
    margin-bottom: 20px;
}

.cln-service-video-panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: 20px;
    background: #f8fcff;
}

.cln-service-video-panel h3 {
    margin: 0 0 4px;
    color: #303047;
    font-size: 1.08rem;
    font-weight: 900;
}

.cln-service-video-card {
    display: grid;
    gap: 10px;
    width: 100%;
    padding: 0 0 14px;
    overflow: hidden;
    border: 1px solid rgba(92, 157, 245, 0.16);
    border-radius: 18px;
    color: inherit;
    background: #ffffff;
    text-align: left;
    box-shadow: 0 12px 24px rgba(15, 39, 74, 0.06);
}

.cln-service-video-card > span {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: rgba(92, 157, 245, 0.12);
}

.cln-service-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cln-service-video-card i {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #2f80ed;
    background: rgba(255, 255, 255, 0.92);
    font-size: 1.6rem;
    transform: translate(-50%, -50%);
}

.cln-service-video-card b,
.cln-service-video-card small {
    display: block;
    padding: 0 14px;
}

.cln-service-video-card b {
    color: #303047;
    font-weight: 900;
}

.cln-service-video-card small {
    color: var(--cln-muted);
    font-weight: 700;
    line-height: 1.45;
}

.cln-booking-flow {
    margin-top: 42px;
    border: 1px solid rgba(92, 157, 245, 0.12);
}

.cln-booking-address-item {
    display: grid;
    gap: 8px;
    height: 100%;
}

.cln-booking-address-card {
    height: 100%;
}

.cln-booking-address-edit {
    justify-self: start;
    margin-left: 4px;
}

.cln-booking-payment-box {
    position: sticky;
    top: 104px;
}

.cln-summary-block {
    border: 1px solid rgba(92, 157, 245, 0.1);
    background: #ffffff;
}

.cln-address-modal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 28px 80px rgba(15, 39, 74, 0.24);
}

.cln-address-modal .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(92, 157, 245, 0.12);
}

.cln-address-modal .modal-title {
    color: #303047;
    font-weight: 900;
}

.cln-address-modal .modal-body {
    padding: 24px;
}

body > .bootstrap-select .dropdown-menu,
.bootstrap-select .dropdown-menu.show {
    z-index: 2070;
}

.cln-booking-benefits {
    display: grid;
    gap: 20px;
    margin: 24px 0 0;
    padding: 24px;
    border: 1px solid rgba(92, 157, 245, 0.16);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--cln-shadow-soft);
}

.cln-booking-benefits-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cln-booking-benefits-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cln-primary), var(--cln-primary-dark));
    font-size: 1.1rem;
}

.cln-booking-benefits-head strong,
.cln-points-available strong {
    display: block;
    color: #303047;
    font-size: 1rem;
    font-weight: 900;
}

.cln-booking-benefits-head small,
.cln-points-available span,
.cln-discount-panel small,
.cln-points-value {
    color: var(--cln-muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.45;
}

.cln-booking-benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 18px;
}

.cln-discount-panel {
    display: grid;
    align-content: start;
    gap: 10px;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(92, 157, 245, 0.12);
    border-radius: 16px;
    background: #f8fcff;
}

.cln-discount-panel-title {
    display: block;
    color: #303047;
    font-size: 0.94rem;
    font-weight: 900;
}

.cln-discount-panel label {
    margin: 0;
    color: #303047;
    font-size: 0.86rem;
    font-weight: 900;
}

.cln-coupon-row,
.cln-points-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cln-coupon-row input,
.cln-points-row input {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid rgba(92, 157, 245, 0.2);
    border-radius: 12px;
    color: var(--cln-dark);
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    outline: 0;
}

.cln-coupon-row .cln-btn-primary {
    flex: 0 0 auto;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.84rem;
}

.cln-points-row input {
    max-width: 180px;
}

.cln-points-row span {
    flex: 0 0 auto;
    color: #303047;
    font-size: 0.86rem;
    font-weight: 900;
}

.cln-points-available {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cln-points-value strong {
    color: #2f80ed;
}

.cln-discount-status {
    min-height: 18px;
    color: var(--cln-muted);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.35;
}

.cln-discount-status.is-error {
    color: #c53949;
}

.cln-discount-status.is-success {
    color: #16855f;
}

.cln-inline-action {
    width: fit-content;
    padding: 0;
    border: 0;
    color: #2f80ed;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 900;
}

.cln-points-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cln-discount-panel-muted {
    color: var(--cln-muted);
}

.cln-discount-panel-muted p {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .cln-detail-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .cln-service-hero-premium {
        min-height: 0;
        padding: 118px 0 72px;
    }

    .cln-service-hero-grid,
    .cln-service-content-grid,
    .cln-service-media-layout {
        grid-template-columns: 1fr;
    }

    .cln-service-hero-copy h1 {
        font-size: 3rem;
    }

    .cln-service-benefits-card,
    .cln-booking-payment-box {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .cln-booking-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .cln-service-hero-premium {
        padding: 98px 0 58px;
    }

    .cln-service-hero-copy h1 {
        font-size: 2.36rem;
    }

    .cln-service-hero-card,
    .cln-service-rich-card,
    .cln-detail-list-card,
    .cln-recommendations-card {
        padding: 22px;
        border-radius: 18px;
    }

    .cln-detail-facts-grid,
    .cln-service-list-grid {
        grid-template-columns: 1fr;
    }

    .cln-card-head {
        flex-direction: column;
    }

    .cln-booking-benefits {
        padding: 18px;
        border-radius: 18px;
    }

    .cln-coupon-row {
        align-items: stretch;
        flex-direction: column;
    }

    .cln-coupon-row .cln-btn-primary {
        width: 100%;
    }

    .cln-points-available {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .cln-points-row input {
        max-width: none;
    }
}
