        :root{
            --bg:#eef8fa;
            --surface:#ffffff;
            --text:#0d3b4f;
            --muted:#5c8494;
            --accent:#23a6c9;
            --accent-dark:#146a85;
            --accent-deep:#0b3f52;
            --accent-light:#d7f1f6;
            --border:#cfe9ee;
        }
        *{box-sizing:border-box;}
        html,body{margin:0;padding:0;}
        body{
            background:var(--bg);
            color:var(--text);
            font-family:'Manrope', sans-serif;
            line-height:1.6;
            -webkit-font-smoothing:antialiased;
            overflow-x:hidden;
        }
        h1,h2,h3{
            font-family:'Poppins', sans-serif;
            color:var(--accent-deep);
            margin:0 0 12px;
            font-weight:800;
            line-height:1.2;
        }
        p{margin:0 0 12px; color:var(--muted);}
        a{color:inherit; text-decoration:none;}
        .container{max-width:1200px; margin:0 auto; padding:0 24px;}

        /* reveal animation */
        .reveal{opacity:0; transform:translateY(36px); transition:opacity .8s ease, transform .8s ease;}
        .reveal.visible{opacity:1; transform:translateY(0);}
        .reveal-item{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;}
        .reveal-item.visible{opacity:1; transform:translateY(0);}

        /* HEADER */
        header.site-header{
            background:var(--surface);
            border-bottom:1px solid var(--border);
            position:relative;
            z-index:20;
        }
        .header-top{
            display:flex; align-items:center; justify-content:space-between;
            flex-wrap:wrap; gap:16px;
            padding:16px 0;
        }
        .brand{
            display:flex; align-items:center; gap:12px;
        }

        .brand-text h1{
            font-size:19px; margin:0; line-height:1.2; font-weight:800;
        }
        .brand-text span{
            font-size:11.5px; color:var(--muted); letter-spacing:.06em; text-transform:uppercase; font-weight:600;
        }
        .header-right{
            display:flex; align-items:center; gap:22px;
            flex-wrap:wrap;
        }
        .phone-block{
            display:flex; flex-direction:column; align-items:flex-end; line-height:1.3;
        }
        .phone-number{
            font-size:22px; font-weight:800; color:var(--accent-deep);
            transition:color .2s;
        }
        .phone-number:hover{color:var(--accent);}
        .phone-sub{
            font-size:11px; color:var(--muted); font-weight:600;
        }
        .badges{
            display:flex; gap:10px; flex-wrap:wrap;
        }
        .badge{
            display:flex; align-items:center; gap:8px;
            background:var(--accent-light);
            border:1px solid var(--border);
            border-radius:999px;
            padding:9px 16px;
            font-size:13px;
            font-weight:700;
            color:var(--accent-dark);
        }
        .badge svg{width:14px; height:14px; flex-shrink:0;}
        .menu-toggle{
            display:none; background:none; border:none; font-size:22px;
            color:var(--accent-deep); cursor:pointer; padding:4px 6px;
        }
        .nav-overlay{
            position:fixed; inset:0;
            opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease;
            z-index:99;
        }
        .nav-overlay.active{opacity:1; visibility:visible;}

        /* меню второй строкой */
        .nav-row{
            background:var(--accent);
            padding:0;
        }
        .main-nav{
            display:flex; align-items:center; justify-content:center;
            gap:32px;
            padding:10px 0;
            flex-wrap:wrap;
        }
        .main-nav a{
            font-size:14px; font-weight:600; color:#fff;
            transition:color .2s;
            white-space:nowrap;
        }
        .main-nav a:hover{color:var(--accent-deep);}
        .nav-close{display:none;}


.brand .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
/* HERO BLOCK — с картинкой и текстом поверх */
.hero-block {
    background: #d7f1f6 url(/images/fon1.png) right bottom no-repeat;
    min-height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0 90px;
}

.hero-block .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-row {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.hero-image-wrapper {
    max-width: 900px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 380px;
    text-align: left;
    padding-right: 20px;
}

.hero-overlay-content h2 {
    color: #0d3b4f;
    font-size: 34px;
    margin: 0 0 12px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-overlay-content h2 span {
    color: #0d3b4f;
}

.hero-overlay-content p {
color: #0d3b4f;
    font-size: 22px;
    line-height: 1.6;
    margin: 24px 0 24px;
    max-width: 300px;
    font-weight: 600;
}

.hero-overlay-content .cta-btn {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 32px rgba(35, 166, 201, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.hero-overlay-content .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(35, 166, 201, 0.5);
    background: var(--accent-dark);
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--accent-deep);
    color: #eafbff;
    text-align: center;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .hero-block {
        padding: 20px 0 60px;
        min-height: auto;
    }
    
    .hero-overlay-content {
        left: 16px;
        max-width: 85%;
        padding-right: 12px;
    }
    
    .hero-overlay-content h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .hero-overlay-content p {
        font-size: 13px;
        margin-bottom: 16px;
        max-width: 100%;
    }
    
    .hero-overlay-content .cta-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .hero-top-row {
        flex-direction: column;
        gap: 8px;
        align-items: center !important;
        margin-bottom: 12px;
    }
    
    .hero-image-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-overlay-content {
        left: 12px;
        max-width: 50%;
    }
 .container {
      padding: 0 10px;
}
.hero-block {    
    background-size: cover;
}
.hero-overlay-content p {margin: 10px 0 24px;}
.protect-block {         background-size: auto !important;        background-position: bottom left !important;}

    .hero-overlay-content h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .hero-overlay-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .hero-overlay-content .cta-btn {
        font-size: 11px;
        padding: 8px 16px;
        gap: 6px;
    }
}



/* PROTECT BLOCK — с фоном и статистикой слева */
.protect-block {
    background: var(--accent-deep);
    padding: 60px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}



.protect-block .container {
    position: relative;
    z-index: 1;
}

.protect-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Левая часть — статистика */
.protect-stats {
    flex: 0 0 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(4px);
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Правая часть — текст */
.protect-content {
 
}

.protect-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
}

.protect-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
}

.protect-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 560px;
}

.protect-content p strong {
    color: #fff;
}

.protect-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.covid-badge {
    background: #e74c3c;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.url {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

@media (max-width: 992px) {
    .protect-wrap {
        flex-direction: column;
        gap: 40px;
    }
    
    .protect-stats {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        order: 1;
    }
    
    .protect-content {
        flex: 1 1 100%;
        text-align: center;
        order: 2;
    }
    
    .protect-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .protect-logo {
        justify-content: center;
    }
    
    .protect-footer {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .protect-content h2 {
        font-size: 28px;
    }
    
    .protect-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 14px 12px;
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}





        /* GENERIC SECTION */
        .section{padding:90px 0;}
        .section-head{
            text-align:center; max-width:640px; margin:0 auto 50px;
        }
        .eyebrow{
            display:inline-flex; align-items:center; gap:8px;
            color:var(--accent-dark); font-weight:700; font-size:12.5px;
            letter-spacing:.08em; text-transform:uppercase; margin-bottom:14px;
        }
        .eyebrow::before{content:''; width:8px; height:8px; border-radius:50%; background:var(--accent);}
        .section-head h2{font-size:32px;}

        /* SERVICES GRID */
        .services-grid{
            display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
        }
        .service-card{
            background:var(--surface);
            border:1px solid var(--border);
            border-radius:18px;
            padding:30px 24px;
            text-align:left;
            transition:transform .3s ease, box-shadow .3s ease;
        }
        .service-card:hover{
            transform:translateY(-6px);
            box-shadow:0 20px 40px -20px rgba(20,106,133,.3);
        }
        .service-icon{
            width:56px; height:56px; border-radius:16px;
            background:var(--accent-light);
            display:flex; align-items:center; justify-content:center;
            margin-bottom:18px;
        }
        .service-icon svg{width:28px; height:28px; color:var(--accent-dark);}
        .service-card h3{font-size:17px; margin-bottom:8px;}
        .service-card p{font-size:13.8px; margin:0;}

        /* HOW WE WORK - TIMELINE WITH LINE */
        .works-wrap{
            max-width:760px; margin:0 auto;
            position:relative;
        }
        .works-timeline{
            list-style:none; margin:0; padding:0;
            position:relative;
            padding-left:86px;
        }
        .works-timeline::before{
            content:'';
            position:absolute;
            left:33px; top:6px; bottom:6px;
            width:3px;
            background:repeating-linear-gradient(to bottom, var(--accent) 0 10px, transparent 10px 18px);
            border-radius:3px;
        }
        .work-step{
            position:relative;
            display:flex; align-items:flex-start; gap:20px;
            padding-bottom:44px;
        }
        .work-step:last-child{padding-bottom:0;}
        .step-icon{
            position:absolute; left:-86px; top:0;
            width:68px; height:68px; border-radius:50%;
            background:#fff;
            border:3px solid var(--accent);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0; z-index:2;
        }
        .step-icon svg{width:28px; height:28px; color:var(--accent-dark);}
        .step-body{
            background:var(--surface);
            border:1px solid var(--border);
            border-radius:14px;
            padding:18px 22px;
            margin-left:0;
            flex:1;
        }
        .step-num{
            font-size:11.5px; font-weight:800; color:var(--accent); letter-spacing:.06em; text-transform:uppercase; margin-bottom:4px; display:block;
        }
        .step-body h4{margin:0 0 4px; font-size:15.5px; color:var(--accent-deep); font-weight:700;}
        .step-body p{margin:0; font-size:13.5px;}

        /* PROCESS TIMELINE */
        .process-track{
            display:grid; grid-template-columns:repeat(6,1fr); gap:18px;
            position:relative;
        }
        .process-track::before{
            content:'';
            position:absolute; top:28px; left:5%; right:5%;
            height:2px;
            background:repeating-linear-gradient(to right, var(--accent) 0 8px, transparent 8px 14px);
            z-index:0;
        }
        .process-step{
            position:relative; z-index:1;
            text-align:center;
        }
        .process-num{
            width:56px; height:56px; border-radius:50%;
            background:var(--accent);
            color:#fff; font-weight:800; font-size:20px;
            display:flex; align-items:center; justify-content:center;
            margin:0 auto 18px;
            font-family:'Poppins', sans-serif;
            border:4px solid var(--surface);
            box-shadow:0 0 0 2px var(--accent);
        }
        .process-step h4{
            font-size:15px; margin-bottom:8px; color:var(--accent-deep); font-weight:700;
        }
        .process-step p{font-size:13px; margin:0;}

        @media (max-width:900px){
            .process-track{grid-template-columns:repeat(3,1fr); row-gap:40px;}
            .process-track::before{display:none;}
        }
        @media (max-width:560px){
            .process-track{grid-template-columns:1fr;}
        }

        /* PHOTO SLIDER */
        .photo-slider{
            position:relative;
            border-radius:22px;
            overflow:hidden;
            height:440px;
            background:var(--accent-deep);
            box-shadow:0 24px 50px -24px rgba(11,63,82,.5);
        }
        .slide{
            position:absolute; inset:0;
            opacity:0; visibility:hidden;
            transition:opacity .9s ease;
            display:flex; flex-direction:column;
            align-items:center; justify-content:center;
            text-align:center; padding:40px;
        }
        .slide.active{opacity:1; visibility:visible;}
        .slide-icon{
            width:104px; height:104px; border-radius:50%;
            background:rgba(255,255,255,.16);
            border:2px solid rgba(255,255,255,.35);
            display:flex; align-items:center; justify-content:center;
            margin-bottom:26px;
        }
        .slide-icon i{font-size:42px; color:#ffffff;}
        .slide-caption{
            font-size:24px; font-weight:800; color:#ffffff;
            margin:0; max-width:520px; font-family:'Poppins', sans-serif;
        }
        .slide-sub{
            font-size:13.5px; color:rgba(255,255,255,.8);
            letter-spacing:.06em; text-transform:uppercase; font-weight:700;
            margin-bottom:10px;
        }
        .slider-dots{
            display:flex; justify-content:center; gap:10px; margin-top:24px;
        }
        .slider-dot{
            width:10px; height:10px; border-radius:50%;
            background:var(--border);
            border:none; cursor:pointer; padding:0;
            transition:.3s;
        }
        .slider-dot.active{background:var(--accent); width:28px; border-radius:6px;}
        @media (max-width:600px){
            .photo-slider{height:400px;}
            .slide-caption{font-size:19px;}
        }

        /* FAQ ACCORDION */
        .faq-list{max-width:760px; margin:0 auto;}
        .faq-item{
            border-bottom:1px solid var(--border);
        }
        .faq-question{
            display:flex; justify-content:space-between; align-items:center; gap:16px;
            padding:22px 4px;
            cursor:pointer;
            font-weight:700; color:var(--accent-deep); font-size:15.5px;
            font-family:'Manrope', sans-serif;
            -webkit-tap-highlight-color:transparent;
        }
        .faq-question .fa-icon-wrap{
            width:30px; height:30px; border-radius:50%;
            background:var(--accent-light);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
            transition:transform .3s ease, background .3s ease;
        }
        .faq-question .fa-icon-wrap i{color:var(--accent-dark); font-size:13px; transition:transform .3s ease;}
        .faq-item.active .fa-icon-wrap{background:var(--accent);}
        .faq-item.active .fa-icon-wrap i{color:#fff; transform:rotate(45deg);}
        .faq-answer{
            max-height:0; overflow:hidden;
            transition:max-height .35s ease;
        }
        .faq-answer p{
            padding:0 40px 22px 4px; font-size:14px; margin:0;
        }

        /* CONTACTS */
        .contact-wrap{
            display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
        }
        .contact-card{
            background:var(--surface);
            border:1px solid var(--border);
            border-radius:18px;
            padding:30px;
        }
        .contact-row{
            display:flex; align-items:flex-start; gap:14px;
            margin-bottom:20px;
            font-size:14.5px;
        }
        .contact-row:last-child{margin-bottom:0;}
        .contact-row .ic{
            width:42px; height:42px; border-radius:12px;
            background:var(--accent-light);
            display:flex; align-items:center; justify-content:center;
            flex-shrink:0;
        }
        .contact-row .ic svg{width:19px; height:19px; color:var(--accent-dark);}
        .contact-row div{color:var(--text); line-height:1.5;}
        .contact-row span{display:block; font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; margin-bottom:3px; font-weight:700;}
        .contact-visual{
            display:flex; justify-content:center;
        }
        .contact-visual svg{width:100%; max-width:320px; height:auto;}

        /* CTA STRIP */
        .cta-strip{
            background:linear-gradient(120deg, var(--accent-deep), var(--accent-dark));
            border-radius:24px;
            padding:56px 40px;
            text-align:center;
            color:#eafbff;
        }
        .cta-strip h2{color:#fff; font-size:30px; margin-bottom:12px;}
        .cta-strip p{color:#c9edf4; max-width:520px; margin:0 auto 26px;}

        /* FOOTER */
        footer{
            background:var(--accent-deep);
            padding:30px 0;
            text-align:center;
        }
        footer p{margin:0; font-size:13px; color:#bfe6ee;}

        @media (max-width:900px){
            .services-grid{grid-template-columns:repeat(2,1fr);}
            .contact-wrap{grid-template-columns:1fr;}
            .hero-main h2, .protect-block h2{font-size:32px;}
            .main-nav{
                position:fixed; top:0; left:0; bottom:0; width:280px;
                background:var(--surface);
                flex-direction:column; align-items:flex-start;
                padding:90px 30px 30px; gap:4px;
                transform:translateX(-100%);
                transition:transform .35s ease;
                z-index:100;
                box-shadow:20px 0 50px -20px rgba(11,63,82,.35);
                justify-content:flex-start;
            }
            .main-nav.active{transform:translateX(0);}
            .main-nav a{
                width:100%; padding:14px 0; font-size:15.5px;
                border-bottom:1px solid var(--border);
                color:var(--text);
            }
            .main-nav a:hover{color:var(--accent);}
            .nav-close{
                display:block; position:absolute; top:22px; right:22px;
                background:none; border:none; font-size:20px;
                color:var(--accent-deep); cursor:pointer;
            }
            .menu-toggle{display:block;}
            .phone-sub{display:none;}
            .nav-row .main-nav{display:none;}
            .nav-row .main-nav.active{display:flex;}
        }
        @media (max-width:600px){
            .header-top{flex-direction:column; align-items:flex-start;}
            .services-grid{grid-template-columns:1fr;}
            .works-timeline{padding-left:70px;}
            .step-icon{width:54px; height:54px; left:-70px;}
            .step-icon svg{width:22px; height:22px;}
            .phone-block{margin: 0 auto;}
            .protect-block .container{flex-direction:column; text-align:center;}
            .protect-content p{max-width:100%;}
            .protect-visual{flex:0 0 auto;}

            .badges {display: none;}
        }
		
/* ADVANTAGES GRID — преимущества */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(20, 106, 133, 0.25);
    border-color: var(--accent);
}

.advantage-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-deep);
    margin: 0 0 10px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
		
        /* PHOTO SLIDER — с реальными фото */
.photo-slider {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 440px;
    background: var(--accent-deep);
    box-shadow: 0 24px 50px -24px rgba(11, 63, 82, .5);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    display: block;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 63, 82, 0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.slide-icon {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 2px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
}

.slide-icon i {
    font-size: 42px;
    color: #ffffff;
}

.slide-sub {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.slide-caption {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    max-width: 520px;
    font-family: 'Poppins', sans-serif;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .3s;
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .photo-slider {
        height: 400px;
    }
    .slide-caption {
        font-size: 19px;
    }
    .slide-icon {
        width: 80px;
        height: 80px;
    }
    .slide-icon i {
        font-size: 32px;
    }
}