@font-face {
    font-family: 'Racama';
    src: url('../fonts/Racama.eot');
    src: url('../fonts/Racama.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Racama.woff2') format('woff2'),
         url('../fonts/Racama.woff') format('woff'),
         url('../fonts/Racama.ttf')  format('truetype'),
         url('../fonts/Racama.svg#Racama') format('svg');
}
@font-face {
    font-family: 'Gilroy';
	font-weight: normal;
    src: url('../fonts/Gilroy-Light.eot');
    src: url('../fonts/Gilroy-Light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Gilroy-Light.woff2') format('woff2'),
         url('../fonts/Gilroy-Light.woff') format('woff'),
         url('../fonts/Gilroy-Light.ttf')  format('truetype'),
         url('../fonts/Gilroy-Light.svg#Gilroy') format('svg');
}
@font-face {
    font-family: 'Gilroy';
	font-weight: bold;
    src: url('../fonts/Gilroy-ExtraBold.eot');
    src: url('../fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'),
         url('../fonts/Gilroy-ExtraBold.woff') format('woff'),
         url('../fonts/Gilroy-ExtraBold.ttf')  format('truetype'),
         url('../fonts/Gilroy-ExtraBold.svg#Gilroy') format('svg');
}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Gilroy', sans-serif;
            color: #1f2937;
            line-height: 1.4;
            background-color: #ffffff;
            font-size: 17px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
		button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 17px;
  line-height: 28px;
  
}


        .container {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col {
            padding: 0 15px;
            width: 100%;
        }

        .col-2 { width: 16.666%; }
        .col-3 { width: 25%; }
        .col-4 { width: 33.333%; }
        .col-5 { width: 41.666%; }
        .col-6 { width: 50%; }
        .col-7 { width: 58.333%; }
        .col-8 { width: 66.666%; }
        .col-12 { width: 100%; }

        :root {
            --primary-blue: #2563eb;
            --primary-dark: #1e40af;
            --text-main: #111827;
            --text-gray: #6b7280;
            --bg-light: #f3f4f6;
            --bg-blue-light: #eff6ff;
            --green: #10b981;
            --orange: #f59e0b;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        h1 { font-size: 42px; line-height: 1.1; }
        h2 { font-size: 32px; }
        h3 { font-size: 24px; }
        h4 { font-size: 18px; }

        .text-blue { color: var(--primary-blue); }
        .text-gray { color: var(--text-gray); }
        .text-center { text-align: center; }
        .fw-bold { font-weight: 700; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-size: 16px;
        }

        .btn-outline-blue {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
        }

        .section-padding {
            padding: 80px 0;
        }

        .bg-light { background-color: var(--bg-light); }
        .bg-blue-light { background-color: var(--bg-blue-light); }
        .bg-blue { background-color: var(--primary-blue); color: #fff; }
        
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .card-blue {
            background: var(--primary-blue);
            color: #fff;
            border-radius: 16px;
            padding: 24px;
        }

        .card-green {
            background: var(--green);
            color: #fff;
            border-radius: 16px;
            padding: 24px;
        }

/* Float Line */
.float-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 4px 16px #1F538712;
}
        .float-line.visible {
            transform: translateY(0);
        }
.float-line-wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    padding-bottom: 28px;
}
.float-line-text {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 21px;
    font-family: 'Racama';
    line-height: 28px;
    letter-spacing: 1%;
}


/* Header Top */
.header-top {
    background: #ffffff;
    padding: 10px 0 12px;
    border-bottom: 1px solid #E8ECF2;
}
.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
        .header-left {
            display: flex;
            align-items: center;
            gap: 48px;
        }

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 16px;
}

.logo-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 165%;
    color: #21272A;
    text-transform: uppercase;
    letter-spacing: 5%;
}
.logo-mobi {
    display: none;
}
        .header-contacts {
            display: flex;
            gap: 32px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
        }

.contact-icon {
    width: 52px;
    height: 52px;
    background: #EBF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #277AED;
}

.contact-info h3 {
    font-size: 17px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 4px;
    font-family: Racama;
    letter-spacing: 1%;
}
.contact-info p {
    font-size: 15px;
    color: #585F6A;
    letter-spacing: 1%;
}
.contact-phone a svg {
    display: none;
}
.contact-addr .contact-info h3 svg {
    display: none;
}
.btn-online-wrap {
    flex: 1 0 0;
    display: flex;
    justify-content: flex-end;
}
.btn-online {
    background: #277AED;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 32px;
    border: none;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1%;
    cursor: pointer;
    font-family: 'Gilroy';
    margin-top: -8px;
    line-height: 28px;
}

        /* Navigation */
.main-nav {
    background: #277AED;
    padding: 0;
    position: relative;
}
        .nav-list {
            display: flex;
            list-style: none;
            gap: 0;
        }

.nav-list li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 25px 24px 23px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
    transition: background 0.3s;
    font-family: 'Racama';
}
.nav-list li:first-child a {
    padding-left: 0;
}
.nav-list li a:hover {
    /* background: #2563eb; */
    opacity: 0.5;
}
.menu-toggle {
    display: none;
    line-height: 0;
    position: absolute;
    top: -45px;
    right: 30px;
}
nav .menu-toggle button#menu-btn {
    border: none;
    background: transparent;
    line-height: 0;
}
nav .menu-toggle svg.menu-icon-close {
    display: none;
}
nav.open .menu-toggle svg.menu-icon-close {
    display: block;
}
nav .menu-toggle svg.menu-icon-open {
    display: block;
}
nav.open .menu-toggle svg.menu-icon-open {
    display: none;
}


        /* Hero Section */
.hero-section {
    background: #EBF6FF;
    /* padding: 80px 0; */
    border-radius: 48px 200px 48px 200px;
    margin: 24px 40px;
    position: relative;
}
.hero-section > figure {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: auto;
}
.hero-section > figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content {
    display: flex;
    align-items: flex-end;
    gap: 0px;
}
.hero-text {
    flex: 1;
    padding-top: 64px;
    padding-bottom: 66px;
}

.hero-subtitle {
    font-size: 27px;
    line-height: 42px;
    color: #121519;
    margin-bottom: 48px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.hero-title {
    font-size: 44px;
    font-family: 'Racama';
    line-height: 56px;
    color: #277AED;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1%;
}
.hero-price {
    font-size: 60px;
    font-family: 'Racama';
    color: #121519;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1%;
}
.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 32px;
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 28px;
    color: #121519;
    letter-spacing: 0.5%;
}
.hero-feature svg {
    width: 26px;
    height: 26px;
    color: #4EB71A;
}
.btn-primary {
    background: #277AED;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 32px;
    border: none;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s;
    line-height: 32px;
    font-family: 'Gilroy';
    /* letter-spacing: 1%; */
}
.btn-primary svg {
    margin-left: 4px;
}
        .btn-primary:hover {
            background: #2563eb;
        }

.hero-image {
    flex: 690px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -45px;
}

.implant-circle {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 245px;
    height: 245px;
}

.patient-photo {
    width: 100%;
}
        /* Stats Section */
.stats-section {
    margin: 24px 0 64px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #EBF6FF;
    border-radius: 48px;
    padding: 40px;
    margin-left: -40px;
    margin-right: -40px;
}
.stat-card {
    background: #ffffff;
    padding: 22px 24px 24px 24px;
    border-radius: 32px;
    display: flex;
    align-items: flex-start;
    gap: 0 16px;
    flex-flow: row wrap;
}
.stat-number {
    font-size: 44px;
    font-weight: 400;
    color: #121519;
    line-height: 56px;
    font-family: 'Racama';
    letter-spacing: -4%;
    margin-bottom: 10px;
    flex: 1 0 0;
    margin-top: 6px;
}
.stat-icon {
    width: 56px;
    height: 56px;
    background: #FFF7E6;
    border-radius: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg {
    width: 32px;
    height: 32px;
    color: #FA8C16;
}
.stat-text {
    font-size: 15px;
    color: #121519;
    line-height: 24px;
    flex: 100% 0 0;
}



/* Advantages Section */
.advantages-section {
    margin: 64px 0;
}
.section-title {
    font-size: 44px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 48px;
    font-family: 'Racama';
    line-height: 56px;
    letter-spacing: 1%;
}
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

.advantage-card {
    background: linear-gradient(135deg, #277AED 0%, #4096FF 100%);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    gap: 15px;
}

    .advantage-content {
        flex: 1;
    }

.advantage-title {
    font-family: 'Racama';
    font-size: 27px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    /* letter-spacing: 1%; */
    line-height: 36px;
}
.advantage-text {
    font-size: 17px;
    color: #ffffff;
    line-height: 28px;
    letter-spacing: 1%;
    margin-bottom: 32px;
}
/*.advantage-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}*/
.advantage-icon svg {
    width: 64px;
    /* height: 56px; */
}
.btn-white {
    background: #ffffff;
    color: #121519;
    padding: 12px 24px;
    border-radius: 32px;
    border: none;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s;
    /* letter-spacing: 1%; */
}
    .btn-white:hover {
        background: #f1f5f9;
    }
	


/* What's Included Section */
.included-section {
    background: #EBF6FF;
    padding: 64px 0;
    border-radius: 80px;
    margin: 64px 40px;
}

.included-stage {
    margin-bottom: 48px;
}
    .included-stage:last-child {
        margin-bottom: 0;
    }

.stage-header {
    display: flex;
    /* align-items: center; */
    gap: 16px;
    margin-bottom: 4px;
}
.stage-number {
    width: 32px;
    height: 32px;
}
.stage-title {
    font-size: 27px;
    font-weight: 400;
    font-family: 'Racama';
    color: #121519;
    letter-spacing: 1%;
}
.stage-subtitle {
    font-size: 17px;
    color: #121519;
    margin-bottom: 32px;
    padding-left: 48px;
    /* letter-spacing: 1%; */
}
    .products-wrapper {
        display: flex;
        gap: 64px;
        align-items: stretch;
    }

.products-slider {
    flex: 1  0 0;
    position: relative;
    display: flex;
    gap: 64px;
    min-width: 0;
}
    /*.slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        z-index: 10;
    }

    .slider-arrow:hover {
        background: #3b82f6;
        color: #ffffff;
    }

    .slider-arrow svg {
        width: 24px;
        height: 24px;
        color: #1e293b;
        transition: color 0.3s;
    }

    .slider-arrow:hover svg {
        color: #ffffff;
    }*/

    .slider-arrow-left {
        left: -24px;
    }

    .slider-arrow-right {
        right: -24px;
    }

    /*.products-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        width: 100%;
    }*/
.products-track {
    position: relative;
    flex: 100% 0 0;
    width: 100%;
}
.swiper {
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
    margin: 0;
    width: 100%;
}
button.swiper-button-lock {
    display: none;
}
.products-track .swiper-slide {
    flex-shrink: 0;
    width: 100%; /*calc((100% - 32px) / 3); /* 3 слайда с учетом gap */
    transition: transform 0.3s;
}
.product-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 24px 24px 16px 24px;
    position: relative;
}
.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #DA2F38;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 48px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
    letter-spacing: 3%;
}
.product-brand-logo {
    position: absolute;
    top: 24px;
    left: 24px;
}
.product-image {
    height: 0;
    padding-top: 75%;
    margin-bottom: 12px;
    position: relative;
}
.product-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    top: 0;
    left: 0;
}
.product-brand {
    font-size: 17px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 4px;
    font-family: 'Racama';
    display: flex;
    gap: 12px;
}
.product-name {
    font-size: 17px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Racama';
}
.product-country {
    display: inline-block;
    font-size: 13px;
    color: #121519;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #F4F7FB;
    padding: 2px 8px;
    letter-spacing: 2%;
}
.product-price {
    font-size: 21px;
    font-weight: 400;
    color: #121519;
    font-family: 'Racama';
}
.included-box {
    background: #ffffff;
    border-radius: 32px;
    padding: 35px 32px 23px 39px;
    flex: 29% 0 0;
}
.included-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 17px;
}
    .included-header svg {
        width: 27px;
        height: 27px;
    }

.included-header span {
    font-size: 21px;
    font-weight: 400;
    color: #121519;
    font-family: 'Racama';
}

.included-list {
    list-style: none;
    position: relative;
}

.included-list li {
    padding: 10px 0 10px 44px;
    position: relative;
    font-size: 17px;
    line-height: 28px;
    color: #121519;
}
.included-list li::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #4EB71A;
    border-radius: 50%;
}
.included-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 28px;
    width: 2px;
    height: calc(100% - 8px);
    background: #E8ECF2;
}	



/* Innovation Section */
.innovation-section {
    margin: 64px 0;
}
.innovation-section .section-title {
    margin-bottom: 25px;
}
.innovation-section .row {
    align-items: flex-end;
    gap: 0;
}
.innovation-subtitle {
    font-size: 21px;
    color: #121519;
    margin-bottom: 46px;
    line-height: 28px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.innovation-image-mobi {
    display: none;
}
.innovation-list {
    list-style: none;
    margin-bottom: 10px;
    max-width: 86%;
}
.innovation-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 21px;
}
.innovation-text {
    font-size: 17px;
    color: #121519;
    line-height: 28px;
}
.info-box {
    background: #F4F7FB;
    border-radius: 32px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: -10px;
    max-width: 86%;
}
 .info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.info-text {
    font-size: 15px;
    color: #121519;
    line-height: 24px;
}
    .innovation-image-wrapper {
        position: relative;
    }

    .innovation-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
	
	

/* Standards Section */
.standards-section {
    margin: 64px 0;
}
.standards-section .section-title {
    margin-bottom: 28px;
    padding-top: 10px;
}
.standards-subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    color: #121519;
    font-size: 21px;
    font-weight: 400;
    line-height: 28px;
    font-family: 'Racama';
    letter-spacing: 1%;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.standard-card {
    grid-column: span 2;
}

.standard-card:nth-child(4),
.standard-card:nth-child(5) {
    grid-column: span 3;
}

.standard-card {
    background: #3b82f6;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    color: #ffffff;
}

.standard-icon {
    margin: 0 auto 24px;
}
.standard-title {
    font-size: 27px;
    font-weight: 400;
    font-family: 'Racama';
    letter-spacing: 1%;
    line-height: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}
.standard-text {
    font-size: 17px;
    line-height: 28px;
    color: #FFFFFF;
    letter-spacing: 1%;
}	
	


/* Prices Section */
.prices-section {
    background: #EBF6FF;
    margin: 64px 40px;
    padding: 64px 0;
    border-radius: 80px;
}
.prices-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 48px;
}
.price-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 24px 24px 16px 24px;
    display: flex;
    flex-direction: column;
}
    /*.price-card.featured {
        border: 2px solid #3b82f6;
        position: relative;
    }*/


.price-header {
    padding-bottom: 12px;
    border-top: 1px solid #E8ECF2;
    padding-top: 12px;
    border-bottom: 1px solid #E8ECF2;
}
.price-logo-img {
    margin: 0 auto 12px;
    height: 32px;
}
.price-logo {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Racama';
    color: #121519;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
}
.price-logo img {
    height: 100%;
    width: auto;
}

    .price-specs {
        margin-bottom: 12px;
    }

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #E8ECF2;
    font-size: 13px;
    gap: 10px;
}
.spec-row.spec-ext {
    padding: 7px 0 8px 0;
}
.spec-row.spec-imp {
    padding: 5px 0 5px 0;
}
.spec-label {
    color: #585F6A;
    font-size: 13px;
    letter-spacing: 2%;
}

.spec-value {
    font-weight: 500;
    color: #121519;
    font-size: 13px;
    letter-spacing: 2%;
}


.item-price {
    font-size: 17px;
    font-family: 'Racama';
    color: #121519;
    white-space: nowrap;
}
.price-total {
    text-align: center;
    position: relative;
}
.total-label {
    font-size: 15px;
    color: #121519;
    margin-bottom: 8px;
}
.total-price {
    font-size: 27px;
    font-weight: 400;
    font-family: 'Racama';
    color: #121519;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.total-price .badge {
    background: #DA2F38;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 48px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3%;
}

    

/* Doctor Quote */
.doctor-quote {
    background: #ffffff;
    border-radius: 48px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}
    .doctor-photo {
        flex-shrink: 0;
    }

.doctor-photo figure {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}
    .doctor-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .quote-content {
        flex: 1;
    }

.doctor-name {
    font-size: 17px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 11px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.doctor-title {
    display: flex;
    gap: 8px;
    margin-bottom: 23px;
    flex-wrap: wrap;
}
.title-badge {
    background: #F4F7FB;
    color: #121519;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2%;
}
.quote-text {
    font-size: 15px;
    color: #121519;
    line-height: 24px;
    font-style: italic;
    max-width: 88%;
    letter-spacing: 0.3%;
}
.quote-icon {
    position: absolute;
    right: 40px;
    top: 40px;
}



/* Indications Section */
.indications-section {
    margin: 64px 0;
}
.indications-section .section-title {
    margin-bottom: 24px;
}
.section-description {
    font-size: 17px;
    color: #121519;
    line-height: 28px;
    margin-bottom: 48px;
    max-width: 80%;
    letter-spacing: 0.4%;
}
.subsection-title {
    font-size: 27px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 32px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.indications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.indication-card {
    background: #EBF6FF;
    border-radius: 32px;
    padding: 32px;
    text-align: center;
}
.indication-image {
    margin-bottom: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .indication-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.indication-title {
    font-size: 21px;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Racama';
    letter-spacing: 1%;
    color: #121519;
    margin-bottom: 14px;
}

.indication-text {
    font-size: 14px;
    color: #64748b;
    line-height: 24px;
    letter-spacing: 1%;
}

.indications-section .doctor-quote {
    background: #F4F7FB;
}
.indications-section .doctor-quote .quote-icon svg path {
    fill: #fff;
}
.indications-section .doctor-quote .title-badge {
    background: #fff;
}



/* Process Section */
    .process-section {
        margin: 64px 0;
    }

.process-timeline {
    max-width: 83%;
    position: relative;
}
.process-step {
    display: flex;
    gap: 45px;
    margin-bottom: 64px;
    position: relative;
    padding-left: 5px;
    padding-top: 4px;
}
    .process-step:last-child {
        margin-bottom: 0;
    }

.process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 55px;
    top: 110px;
    bottom: -64px;
    width: 5px;
    background: #EBF6FF;
}
    .step-number-wrapper {
        position: relative;
        flex-shrink: 0;
    }

/*.step-number {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #277AED 0%, #4096FF 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 700;
    position: relative;
}*/
.step-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.step-badge svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}
    .step-content {
        flex: 1;
        padding-top: 8px;
    }

.step-label {
    display: inline-block;
    background: #F4F7FB;
    color: #121519;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: -3px;
}
.step-title {
    font-size: 21px;
    font-weight: 400;
    font-family: 'Racama';
    color: #121519;
    margin-bottom: 16px;
    line-height: 28px;
    letter-spacing: 1%;
}
.step-text {
    font-size: 17px;
    color: #121519;
    line-height: 28px;
    margin: 0;
    letter-spacing: 0.3%;
}


	
/* Experts Section */
.experts-section {
    background: #EBF6FF;
    padding: 64px 0;
    border-radius: 80px;
    margin: 64px 40px;
}
.experts-section .section-title {
    margin-bottom: 24px;
}
.experts-subtitle {
    font-size: 21px;
    font-family: 'Racama';
    color: #121519;
    margin-bottom: 26px;
    letter-spacing: 1%;
}
    .experts-conditions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 48px;
    }

.condition-tag {
    background: #277AED;
    color: #ffffff;
    padding: 8px 17px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 500;
    /* letter-spacing: 1%; */
    line-height: 24px;
}
    .experts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .expert-card {
        background: #ffffff;
        border-radius: 32px;
        padding: 32px;
        display: flex;
        gap: 32px;
        transition: transform 0.3s, box-shadow 0.3s;
		position: relative;
    }


    .expert-photo-wrapper {
        position: relative;
        flex-shrink: 0;
    }

.expert-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}
    .expert-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.expert-badge {
    position: absolute;
    top: 40px;
    left: 0;
    width: 62px;
    height: 72px;
}
.expert-experience {
    position: absolute;
    top: 175px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF7E6;
    color: #121519;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 2%;
}
.expert-name + .expert-experience {
    display: none;
}
.expert-info {
    flex: 1;
    position: relative;
}
.expert-name {
    font-size: 21px;
    font-weight: 400;
    line-height: 28px;
    color: #1e293b;
    margin-bottom: 15px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.expert-specialty {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    letter-spacing: 1%;
    line-height: 18px;
}
.specialty-badge {
    background: #F4F7FB;
    color: #121519;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}
.expert-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #121519;
    margin-bottom: 18px;
    letter-spacing: 1%;
}
    .location-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.expert-divider {
    height: 1px;
    background: #E8ECF2;
    margin-bottom: 16px;
}
.expert-info.meddoc .expert-specialty {
    margin-left: 86px;
}
.expert-info.meddoc .expert-location {
    margin-left: 86px;
}
.expert-description {
    font-size: 13px;
    color: #585F6A;
    line-height: 18px;
    margin: 0;
    letter-spacing: 1%;
}



/* Guarantees Section */
    .guarantees-section {
        margin: 64px 0;
    }

.guarantees-section .section-title {
    margin-bottom: 24px;
}
.guarantees-subtitle {
    display: flex;
    align-items: center;
    gap: 26px;
    max-width: 75%;
    color: #121519;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 48px;
    font-family: 'Racama';
    letter-spacing: 1%;
}
.subtitle-icon {
    flex-shrink: 0;
}
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.guarantee-card {
    background: #4EB71A;
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    color: #ffffff;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
}
.guarantee-text {
    font-size: 17px;
    line-height: 24px;
    margin: 0;
    font-family: 'Racama';
    letter-spacing: 1%;
}


 
/* Reviews Section */
.reviews-section {
    background: #EBF6FF;
    padding: 64px 0;
    border-radius: 80px;
    margin: 64px 40px 0px;
}
.reviews-section .swiper-slide {
    height: auto;
}
    .reviews-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .reviews-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: #ffffff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
        z-index: 10;
    }

    .reviews-arrow:hover {
        background: #3b82f6;
        color: #ffffff;
    }

    .reviews-arrow-left {
        left: -24px;
    }

    .reviews-arrow-right {
        right: -24px;
    }

    .reviews-slider {
        flex: 1;
        overflow: hidden;
    }
.review-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-flow: column;
}

    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }


.review-date {
    font-size: 13px;
    color: #121519;
    background: #F4F7FB;
    padding: 8px 12px;
    border-radius: 12px;
    letter-spacing: 2%;
    line-height: 18px;
}
.review-author {
    font-size: 17px;
    font-family: 'Racama';
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1%;
    color: #0E131B;
    margin-bottom: 8px;
}
.review-text {
    font-size: 15px;
    color: #0E131B;
    line-height: 24px;
    /* letter-spacing: 1%; */
    margin-bottom: 8px;
    flex: 1 0 0;
}
.read-more {
    display: inline-block;
    color: #3b82f6;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    text-decoration: none;
    letter-spacing: 1%;
}

    .read-more:hover {
        text-decoration: underline;
    }

    .review-clinic {
        display: flex;
    }
.clinic-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 18px;
    color: #64748b;
    border: 1px solid #E8ECF2;
    padding: 7px 10px;
    border-radius: 12px;
    letter-spacing: 2%;
}
    .clinic-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }



/* Footer CTA Section */
.footer-cta-section {
    background: #277AED;
    padding: 0;
    border-radius: 80px;
    margin: 64px 40px 80px;
    position: relative;
    overflow: hidden;
}
.footer-cta-section .container {
    position: relative;
}
figure.cta-bg-left {
    position: absolute;
    bottom: 0;
    left: 0;
}
figure.cta-bg-right {
    position: absolute;
    right: 0;
    top: 0;
}
.cta-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0px;
}
.cta-content {
    flex: 1;
    padding-top: 0;
    padding-bottom: 72px;
    margin-right: -100px;
}
.cta-title {
    font-size: 44px;
    line-height: 56px;
    font-weight: 400;
    color: #fff;
    font-family: 'Racama';
    margin-bottom: 24px;
    letter-spacing: 1%;
    margin-top: 64px;
}
.cta-subtitle {
    font-size: 21px;
    line-height: 34px;
    font-family: 'Racama';
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 1%;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 415px;
    position: relative;
}
fieldset.fb-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 415px;
    background: transparent;
    border: none;
}
/*.form-input {
    padding: 12px 16px;
    border: 2px solid #B3BBC7;
    border-radius: 16px;
    font-size: 16px;
    background: #ffffff;
    color: #121519;
    transition: border-color 0.3s;
}
/*    .form-input:focus {
        outline: none;
        border-color: #69B1FF;
    }

    .form-input::placeholder {
        color: #929BAA;
    }
*/
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #FA8C16;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    letter-spacing: 1%;
    margin-top: 25px;
}
    .cta-button:hover {
        background: #f59e0b;
        /* transform: translateY(-2px); */
        /* box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3); */
    }

    .cta-button svg {
        width: 20px;
        height: 20px;
    }

.cta-image {
    flex: 690px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -45px;
}
/*    .cta-image figure {
        margin: 0;
        border-radius: 50%;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
        aspect-ratio: 1;
    }

    .cta-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
*/

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #B3BBC7;
    border-radius: 16px;
    font-size: 17px;
    outline: none;
    transition: border-color 0.3s;
    color: #121519;
    line-height: 28px;
    letter-spacing: 1%;
}
.input-wrapper input:focus {
    border-color: #3b82f6;
}

.input-wrapper input:focus + .input-label,
.input-wrapper input:not(:placeholder-shown) + .input-label {
	opacity: 0;
}

.input-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #929BAA;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s;
}

.input-label .required {
    color: #DA2F38;
}



/* Footer Section */
footer.site-footer {
    background: #EBF6FF;
    padding: 40px 0;
    margin-top: 65px;
}
.footer-wrapper {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-end;
    gap: 80px;
}
    .footer-left {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
    }

    .footer-logo span {
        font-size: 24px;
        font-weight: 700;
        color: #3b82f6;
    }

.footer-legal p {
    font-size: 15px;
    color: #121519;
    line-height: 24px;
    margin: 0;
    letter-spacing: 1%;
}
.footer-legal p.footer-disclaimer {
    margin-bottom: 8px;
    font-size: 17px;
    color: #121519;
    line-height: 24px;
    font-family: 'Racama';
}

.footer-warning {
    font-size: 14px;
    color: #929BAA;
    line-height: 26px;
    margin: 0;
    text-align: left;
    font-family: 'Racama';
}

    /* Clinics Section */
.clinics-section {
    margin: 64px 0;
}
.clinics-header {
    display: flex;
    align-items: flex-start;
    gap: 102px;
}
.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1%;
    font-weight: 500;
    color: #121519;
    cursor: pointer;
    transition: all 0.3s;
}
    .filter-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

.clinics-wrapper {
    display: flex;
    gap: 16px;
    /* border-radius: 24px; */
    overflow: hidden;
    /* background: #ffffff; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}
.clinics-list {
    overflow-y: auto;
    height: 600px;
    flex: 33.3333% 0 0;
}
.clinic-item {
    padding: 15px 24px;
    margin-bottom: 12px;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid #E8ECF2;
}

    .clinic-item.active {
        background: #eff6ff;
        border-color: #3b82f6;
    }

.clinic-marker {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    /* margin-top: 6px; */
}
    .clinic-info {
        flex: 1;
    }

.clinic-name {
    font-size: 17px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    line-height: 24px;
    gap: 8px;
    letter-spacing: 1%;
    font-family: 'Racama';
}
.clinic-badge {
    display: inline-block;
    background: #DA2F38;
    color: #ffffff;
    padding: 0px 6px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2%;
    line-height: 16px;
}
.clinic-address {
    font-size: 13px;
    color: #64748b;
    line-height: 18px;
    letter-spacing: 2%;
    margin: 0;
}
.map-container {
    flex: 1;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
}


/* Results Section */
.results-section {
    margin: 64px 0;
}

    .next-section {
        margin-top: 80px;
        margin-bottom: 0;
    }

    .results-slider-wrapper {
        position: relative;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}
    .slider-arrow:hover {
        background: #3b82f6;
        color: #ffffff;
        /* box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3); */
    }

   /* .slider-arrow svg {
        width: 24px;
        height: 24px;
        color: #1e293b;
        transition: color 0.3s;
    }

    .slider-arrow:hover svg {
        color: #ffffff;
    }*/

    .slider-arrow-left {
        left: -28px;
    }

    .slider-arrow-right {
        right: -28px;
    }

    .results-slider {
        flex: 1;
        overflow: hidden;
    }

    .results-track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s ease;
    }

.result-item {
    flex: 0 0 calc(50% - 12px);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 1/0.68;
}

.before-after-compare {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    user-select: none;
}

    .compare-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .compare-before {
        clip-path: inset(0 50% 0 0);
        z-index: 2;
    }

    .compare-after {
        clip-path: inset(0 0 0 50%);
    }

    .compare-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }

.compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff;
    z-index: 3;
    pointer-events: none;
}
.compare-slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 4;
    cursor: ew-resize;
    margin-left: -33px;
}


/* Модальное окно */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0E163280;
    /* backdrop-filter: blur(4px); */
}
.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 40px;
    max-width: 432px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px #153F681A;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.modal-close span {
    display: none;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: calc(100% - 35px);
}

.modal-date {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1%;
    color: #585F6A;
}
.modal-author {
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1%;
    font-family: 'Racama';
    color: #0E131B;
    margin-bottom: 8px;
}
.modal-text {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1%;
    color: #0E131B;
    margin-bottom: 16px;
}
.modal-c-wrap {
    display: flex;
}
.modal-clinic {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2%;
    color: #121519;
    border: 1px solid #E8ECF2;
    border-radius: 12px;
	padding: 8px 12px;
}
.clinic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}




.clinic-popup {
    border-radius: 32px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 8px 32px #153F681A;
    position: relative;
    width: 389px;
}
button.clinic-popup__close {
    border: none;
    background: transparent;
    position: absolute;
    top: 20px;
    right: 24px;
    cursor: pointer;
    line-height: 0;
}
.clinic-popup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a0a0a0;
    flex-shrink: 0;
}
.clinic-popup__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.clinic-popup__badge {
    background: #DA2F38;
    border-radius: 16px;
    padding: 0 6px;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 2%;
}
.clinic-popup__address {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1%;
    border-bottom: 1px solid #E8ECF2;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.clinic-popup__phone {
    font-size: 17px;
    display: inline-block;
    line-height: 24px;
    letter-spacing: 1%;
    font-family: 'Racama';
    margin-bottom: 4px;
}
.clinic-popup__hours {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 1%;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E8ECF2;
}
.clinic-popup__button {
    display: block;
    background: #277AED;
    border-radius: 32px;
    padding: 12px 24px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1%;
}
h3.clinic-popup__title {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 1%;
    margin: 0;
    padding: 0;
    font-family: 'Racama';
}


/* Модальное окно записи */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0E163280;
}
.modal-container {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    max-width: 432px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
}

/* Форма записи */
.booking-form-wrapper {
    padding: 32px 40px;
}
.booking-title {
    font-size: 27px;
    font-weight: 400;
    color: #121519;
    margin-bottom: 24px;
    line-height: 36px;
    letter-spacing: 1%;
    font-family: 'Racama';
    padding-right: 30px;
}
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-group {
    position: relative;
}

/*.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
    background: #ffffff;
}

.form-input:focus {
    border-color: #3b82f6;
}

.form-input:not(:placeholder-shown) + .form-label,
.form-input:focus + .form-label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    background: white;
    padding: 0 6px;
    color: #3b82f6;
}*/
/*
.form-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s;
}

.form-label .required {
    color: #ef4444;
}
*/
.form-hint {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2%;
    color: #121519;
    background: #FFF7E6;
    padding: 8px 16px;
    border-radius: 32px;
    text-align: center;
    margin-bottom: 12px;
}
.form-hint .required {
    color: #DA2F38;
    font-weight: 600;
}
.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.form-checkbox {
    width: 24px;
    height: 24px;
    accent-color: #3b82f6;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid #277AED;
    border-radius: 8px;
	position: relative;
}
.form-checkbox input#agreement {
    opacity: 0;
}
.form-checkbox input+svg {
    opacity: 0;
    position: absolute;
    top: -1px;
    left: -1px;
}
.form-checkbox input:checked+svg {
    opacity: 1;
}

.form-checkbox-label {
    font-size: 13px;
    color: #121519;
    line-height: 18px;
    cursor: pointer;
    letter-spacing: 2%;
}
.form-checkbox-label .link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

.form-checkbox-label .link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit {
    background: #277AED;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 32px;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 1%;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 24px;
}

.btn-submit:hover {
    background: #2563eb;
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3); */
}

.btn-submit:active {
    transform: translateY(0);
}

/* Сообщение об успехе */
.booking-success-wrapper {
    padding: 32px 40px;
    text-align: center;
}
.success-icon {
    margin-bottom: 20px;
}
.success-title {
    font-size: 27px;
    line-height: 36px;
    letter-spacing: 1%;
    font-weight: 400;
    font-family: 'Racama';
    color: #121519;
    margin-bottom: 16px;
}
.success-text {
    font-size: 15px;
    color: #121519;
    line-height: 24px;
    letter-spacing: 1%;
    margin-bottom: 24px;
}
.btn-continue {
    background: #ffffff;
    color: #121519;
    padding: 12px 24px;
    border: 1px solid #B3BBC7;
    border-radius: 32px;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1%;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-continue:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
fieldset.fb-send {
    border: none;
    color: #fff;
    position: absolute;
    top: calc(100% + 6px);
    left: 30px;
}

.view-switcher {
    background: #FA8C16;
    border: none;
    border-radius: 24px;
    padding: 2px;
    justify-content: space-between;
    display: none;
    margin: 0 16px 16px;
}
.view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1%;
    cursor: pointer;
    border-radius: 32px;
    transition: all 0.3s;
    white-space: nowrap;
    flex: 50% 0 0;
    justify-content: center;
}
.view-btn.active {
    background: #fff;
    color: #FA8C16;
}

.view-btn svg {
    width: 24px;
    height: 24px;
}
.view-btn svg * {
    stroke: #ffffff;
}
.view-btn.active svg * {
    stroke: #FA8C16;
}
.clinic-button {
    display: none;
}
.clinic-hours {
    display: none;
}
.clinic-phone {
    display: none;
}
.clinic-mobi-info {
    display: none;
    background: #F4F7FB;
    padding: 16px;
    border-radius: 0 0 24px 24px;
}
.clinic-mobi-info.show {
    display: block;
}
.clinic-mobi-info .clinic-info {
    padding: 16px;
    border-radius: 24px;
    background: #fff;
}
.clinic-mobi-info .clinic-badge {
	display: none;
}