:root {
    --primary: #0D1B2A;
    --primary-light: #1B2A4A;
    --primary-dark: #070F1A;
    --secondary: #C9A84C;
    --secondary-light: #D4BA6A;
    --secondary-dark: #8B7340;
    --accent: #6B0F1A;
    --accent-light: #8C1A2A;
    --bg-ivory: #F5F0E8;
    --bg-parchment: #FFFDF8;
    --bg-deep: #0D1B2A;
    --bg-dark: #070F1A;
    --text-dark: #1C1C1C;
    --text-light: #F5F0E8;
    --text-muted: #6B6B6B;
    --gold-glow: rgba(201, 168, 76, 0.4);
    --gradient-dark: linear-gradient(180deg, #0D1B2A, #070F1A);
    --gradient-gold: linear-gradient(135deg, #8B7340, #C9A84C);
    --gradient-accent: linear-gradient(135deg, #6B0F1A, #8C1A2A);
    --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
    --shadow-md: 0 4px 15px rgba(13, 27, 42, 0.08);
    --shadow-lg: 0 10px 40px rgba(13, 27, 42, 0.12);
    --shadow-gold: 0 8px 25px rgba(139, 115, 64, 0.35);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-ivory);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', 'Georgia', serif;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary);
}

a {
    color: var(--secondary-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
    font-family: 'PT Sans', sans-serif;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 15, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-light);
    z-index: 1001;
}

.logo-icon {
    color: var(--secondary);
    font-size: 1.6rem;
}

.logo-text {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

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

.nav-link {
    color: rgba(245, 240, 232, 0.85);
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-light);
}

.nav-link:hover::after {
    width: 70%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-light);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.header-phone i {
    font-size: 0.85rem;
}

.header-phone:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--secondary-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(139, 115, 64, 0.03) 0,
        rgba(139, 115, 64, 0.03) 1px,
        transparent 1px,
        transparent 12px
    );
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    animation: imperial-glow 8s ease-in-out infinite;
}

@keyframes imperial-glow {
    0%, 100% {
        opacity: 0.08;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.15);
    }
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 12s infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.particle-2 { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.particle-3 { left: 40%; animation-delay: 4s; animation-duration: 13s; }
.particle-4 { left: 55%; animation-delay: 1s; animation-duration: 15s; }
.particle-5 { left: 70%; animation-delay: 3s; animation-duration: 12s; }
.particle-6 { left: 85%; animation-delay: 5s; animation-duration: 10s; }
.particle-7 { left: 15%; animation-delay: 6s; animation-duration: 16s; }
.particle-8 { left: 60%; animation-delay: 7s; animation-duration: 11s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(139, 115, 64, 0.4);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-gold-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(245, 240, 232, 0.8);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.hero-accent {
    font-size: 1.1rem;
    color: var(--secondary-light);
    margin-bottom: 2.5rem;
}

.hero-accent strong {
    font-size: 1.4rem;
    color: var(--secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 115, 64, 0.25);
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 115, 64, 0.2);
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-shimmer:hover::after {
    left: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(196, 169, 90, 0.6);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(196, 169, 90, 0.15);
    border-color: var(--secondary-light);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-light .section-title {
    color: var(--text-light);
}

.section-header-light .section-subtitle {
    color: rgba(245, 240, 232, 0.75);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 1rem;
    position: relative;
}

.gold-accent {
    color: var(--secondary);
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 1.2rem;
    border-radius: 2px;
    position: relative;
}

.title-divider::before,
.title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    transform: rotate(45deg) translateY(-50%);
}

.title-divider::before {
    left: -16px;
}

.title-divider::after {
    right: -16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    background: var(--bg-ivory);
    padding: 100px 0;
    position: relative;
}

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

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(201, 168, 76, 0.15);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03) rotate(0.5deg);
    filter: brightness(1.05);
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.about-features {
    margin-top: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.about-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stats-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.geography-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
}

.geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 30px;
    color: var(--secondary-light);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.geo-badge:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.geo-badge i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    animation: underline-grow 2s ease-in-out infinite;
}

@keyframes underline-grow {
    0%, 100% { transform: scaleX(0.6); }
    50% { transform: scaleX(1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(196, 169, 90, 0.25);
    position: relative;
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--secondary-light);
    font-variant-numeric: tabular-nums;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    line-height: 1.2;
}

.stat-card .stat-number::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 0.6rem auto 0;
    transition: width 0.6s ease;
}

.stat-card.animate .stat-number::after {
    width: 60px;
}

.stat-label {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.95rem;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    font-size: 0.8rem;
}

.services-section {
    background: var(--bg-ivory);
    padding: 100px 0;
    position: relative;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.2rem;
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 115, 64, 0.05), transparent);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.15);
    border-bottom-color: var(--secondary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 115, 64, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--secondary-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--secondary);
    background: rgba(139, 115, 64, 0.08);
}

.service-card:hover .service-icon i {
    color: var(--secondary);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--primary);
    min-height: 50px;
    display: flex;
    align-items: center;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.calculator-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.calculator-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary);
}

.calc-row {
    margin-bottom: 2rem;
}

.calc-label {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.9rem;
}

.calc-value {
    color: var(--secondary);
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.calc-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--secondary) 0%, rgba(139, 115, 64, 0.2) 0%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 115, 64, 0.4);
    border: 3px solid #fff;
}

.calc-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139, 115, 64, 0.4);
    border: 3px solid #fff;
}

.calc-checkboxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.calc-checkbox {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.calc-checkbox input {
    display: none;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid rgba(139, 115, 64, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition);
}

.calc-checkbox input:checked + .calc-checkbox-label {
    border-color: var(--secondary);
    background: rgba(139, 115, 64, 0.08);
    color: var(--secondary-dark);
}

.calc-checkbox-label i {
    color: var(--secondary-dark);
}

.calc-results {
    background: var(--bg-ivory);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 115, 64, 0.1);
}

.calc-result-item:last-child {
    border-bottom: none;
}

.calc-result-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.calc-result-value {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
}

.calc-result-gold {
    color: var(--secondary-dark);
}

.calc-result-highlight {
    color: var(--secondary);
    font-size: 1.3rem;
}

.calc-savings {
    background: rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem !important;
    margin-top: 0.5rem;
}

.calc-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

.process-section {
    background: var(--bg-ivory);
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(139, 115, 64, 0.2);
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
    padding: 0 10px;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #fff;
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 115, 64, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    max-width: 220px;
    margin: 0 auto;
}

.timeline-icon {
    margin-bottom: 0.8rem;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--secondary-dark);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.fade-in-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-step:nth-child(2) { transition-delay: 0.1s; }
.fade-in-step:nth-child(3) { transition-delay: 0.2s; }
.fade-in-step:nth-child(4) { transition-delay: 0.3s; }
.fade-in-step:nth-child(5) { transition-delay: 0.4s; }

.guarantees-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-card:hover::before {
    opacity: 1;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.guarantee-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.guarantee-card:hover .guarantee-icon {
    border-color: var(--secondary);
    background: rgba(201, 168, 76, 0.1);
}

.guarantee-title {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.guarantee-description {
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-section {
    background: var(--bg-ivory);
    padding: 100px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image-wrapper {
    overflow: hidden;
    height: 320px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-image {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.05);
}

.team-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.8rem;
}

.team-name {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.team-position {
    color: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
}

.team-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonials-section {
    background: var(--gradient-dark);
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-quote-icon {
    color: rgba(201, 168, 76, 0.2);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(3deg);
    border-color: var(--secondary);
}

.testimonial-name {
    color: var(--text-light);
    font-size: 1rem;
    display: block;
    margin-bottom: 2px;
}

.testimonial-position {
    color: rgba(201, 168, 76, 0.7);
    font-size: 0.8rem;
}

.faq-section {
    background: var(--bg-ivory);
    padding: 100px 0;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: rgba(201, 168, 76, 0.03);
}

.faq-item.active .faq-question {
    border-left-color: var(--secondary);
    background: rgba(201, 168, 76, 0.03);
}

.faq-icon {
    color: var(--secondary-dark);
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-question-text {
    flex-grow: 1;
}

.faq-toggle {
    color: var(--secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.2rem 4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-section {
    background: var(--gradient-dark);
    padding: 100px 0 80px;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.8rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: rgba(245, 240, 232, 0.75);
    font-size: 0.95rem;
    display: block;
}

.contact-item a:hover {
    color: var(--secondary-light);
}

.contact-note {
    font-size: 0.8rem !important;
    color: rgba(201, 168, 76, 0.6) !important;
    margin-top: 2px;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.required-star {
    color: var(--accent);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(27, 42, 74, 0.2);
    border-radius: var(--radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 115, 64, 0.12);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.site-footer {
    background: var(--primary-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.3rem;
}

.footer-logo .logo-text {
    font-size: 1.3rem;
}

.footer-description {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    color: var(--secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.footer-nav ul li {
    margin-bottom: 0.6rem;
}

.footer-nav ul li a {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-contacts p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-contacts p i {
    color: var(--secondary);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-contacts p a {
    color: rgba(245, 240, 232, 0.6);
}

.footer-contacts p a:hover {
    color: var(--secondary-light);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.85rem;
    font-family: 'Roboto Slab', serif;
    letter-spacing: 0.04em;
}

.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-modal.active {
    display: flex;
}

.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.exit-modal-content {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-top: 4px solid var(--secondary);
    z-index: 1;
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.exit-modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.exit-modal-icon {
    margin-bottom: 1rem;
}

.exit-modal-icon i {
    font-size: 3rem;
    color: var(--secondary);
}

.exit-modal-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.exit-modal-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-modal-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(27, 42, 74, 0.2);
    border-radius: var(--radius-sm);
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.exit-modal-form input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 115, 64, 0.12);
    outline: none;
}

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(107, 29, 42, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-ring 2s infinite;
}

.floating-call-btn:hover {
    background: var(--accent-light);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 29, 42, 0.5);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 15, 26, 0.4), 0 4px 15px rgba(107, 29, 42, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(107, 15, 26, 0), 0 4px 15px rgba(107, 29, 42, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 15, 26, 0), 0 4px 15px rgba(107, 29, 42, 0.4);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid rgba(196, 169, 90, 0.4);
    color: var(--secondary-light);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 115, 64, 0.4);
}

@media (max-width: 1024px) {
    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        color: var(--secondary-light);
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    }

    .nav-link::after {
        display: none;
    }

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

    .about-image-wrapper {
        max-height: 350px;
    }

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

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(196, 169, 90, 0.15);
    }

    .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(196, 169, 90, 0.15);
    }

    .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

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

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

    .guarantees-grid .guarantee-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .team-grid .team-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
        padding-left: 40px;
    }

    .timeline-line {
        top: 0;
        bottom: 0;
        left: 54px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .timeline-step {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0;
        flex-shrink: 0;
    }

    .timeline-content {
        max-width: none;
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 65px;
    }

    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .services-grid,
    .guarantees-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .guarantees-grid .guarantee-card:last-child,
    .team-grid .team-card:last-child,
    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .calculator-card {
        padding: 2rem 1.5rem;
    }

    .calc-checkboxes {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .stat-number {
        min-width: 100px;
    }

    .floating-call-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(196, 169, 90, 0.15);
        padding: 1.5rem 1rem;
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .service-card,
    .guarantee-card {
        padding: 1.5rem;
    }

    .team-image-wrapper {
        height: 260px;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1rem 2.5rem;
    }

    .exit-modal-content {
        padding: 2rem 1.5rem;
    }

    .hero-accent strong {
        font-size: 1.2rem;
    }

    .geography-badges {
        gap: 8px;
    }

    .geo-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 10;
    pointer-events: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: auto;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-divider::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent var(--primary) transparent transparent;
    left: 10px;
}

.comparison-divider::after {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent var(--primary);
    right: 10px;
}

@media (max-width: 768px) {
    .comparison-slider {
        max-width: 100%;
        border-radius: var(--radius-sm);
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }
}