/* ==========================================================
   SUBKONTO LANDING
   Premium Style v1
========================================================== */

/* ---------- Переменные ---------- */

:root {

    --primary: #173F73;
    --primary-dark: #0E2C52;

    --accent: #17B7A5;
    --accent-hover: #119989;

    --gold: #F2B441;

    --bg: #F7FAFD;
    --white: #ffffff;

    --text: #24364B;
    --text-light: #6E7D91;

    --border: #E5ECF3;

    --shadow:
        0 20px 60px rgba(18,55,96,.08);

    --radius:18px;

    --transition:.35s ease;

}


/* ---------- Сброс ---------- */

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Manrope',sans-serif;

    color:var(--text);

    background:var(--bg);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* ---------- Кнопки ---------- */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    background:linear-gradient(135deg,var(--accent),#26d4bf);

    color:#fff;

    border-radius:60px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:0 18px 40px rgba(23,183,165,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 55px rgba(23,183,165,.38);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:60px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/* ---------- HEADER ---------- */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.88);

    border-bottom:1px solid rgba(0,0,0,.05);

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:88px;

}

.logo-title{

    font-size:28px;

    font-weight:800;

    color:var(--primary);

}

.logo-subtitle{

    font-size:13px;

    color:var(--text-light);

}

nav ul{

    display:flex;

    gap:38px;

}

nav a{

    font-weight:600;

    transition:.25s;

}

nav a:hover{

    color:var(--accent);

}

.header-phone{

    font-weight:800;

    color:var(--primary);

}

.header-button{

    margin-left:18px;

    padding:14px 24px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    transition:var(--transition);

}

.header-button:hover{

    background:var(--accent);

}

.mobile-menu{

    display:none;

    font-size:34px;

    cursor:pointer;

}

/* ---------- HERO ---------- */

.hero{

    position:relative;

    padding-top:150px;

    padding-bottom:120px;

    overflow:hidden;

    background:

        radial-gradient(circle at left top,#d9f5f0 0%,transparent 45%),

        radial-gradient(circle at right bottom,#dce9ff 0%,transparent 42%),

        #ffffff;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-300px;

    top:-250px;

    background:#d8efff;

    border-radius:50%;

    opacity:.35;

}

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:30px;

    background:#e8fbf8;

    color:var(--accent);

    font-weight:700;

    margin-bottom:30px;

}

.hero h1{

    font-size:64px;

    line-height:1.05;

    color:var(--primary);

    font-weight:800;

    margin-bottom:28px;

}

.hero p{

    font-size:20px;

    color:var(--text-light);

    margin-bottom:40px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:45px;

}

.hero-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;
}

.feature > div:last-child {
    min-width: 0;
    flex: 1;
}

.feature-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;

    flex: 0 0 44px !important;
    flex-shrink: 0 !important;

    border-radius: 50% !important;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, var(--accent), #43d6c5);

    color: #fff;
    font-size: 18px;
    font-weight: 700;

    box-sizing: border-box;
}


.hero-photo{

    position:relative;

}

.hero-photo img{

    width:100%;

    border-radius:28px;

    box-shadow:
        0 35px 80px rgba(0,0,0,.16);

    position:relative;

    z-index:2;

}



.hero-wave{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    height:120px;

    background:linear-gradient(to bottom,transparent,var(--bg));

}

/* ---------- СТАТИСТИКА ---------- */

.statistics{

    margin-top:-45px;

    position:relative;

    z-index:10;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:36px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h2{

    font-size:44px;

    color:var(--accent);

    margin-bottom:12px;

}

.stat-card p{

    color:var(--text-light);

    font-weight:600;

}

/* ---------- Общие заголовки ---------- */

section{

    padding:110px 0;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-subtitle{

    display:inline-block;

    padding:10px 18px;

    background:#EAFBF8;

    border-radius:50px;

    color:var(--accent);

    font-weight:700;

    margin-bottom:18px;

}

.section-header h2{

    font-size:46px;

    color:var(--primary);

    margin-bottom:22px;

}

.section-header p{

    max-width:760px;

    margin:auto;

    color:var(--text-light);

    font-size:19px;

}
/* ==========================================================
   ABOUT
========================================================== */

.about{
    background:#fff;
    position:relative;
}

.about::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(23,183,165,.05);

    right:-180px;

    top:40px;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.about-card{

    background:#fff;

    border-radius:24px;

    padding:45px 35px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid #edf2f7;

}

.about-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 65px rgba(23,63,115,.12);

}

.about-number{

    font-size:56px;

    font-weight:800;

    color:var(--accent);

    margin-bottom:18px;

}

.about-card h3{

    font-size:26px;

    color:var(--primary);

    margin-bottom:18px;

}

.about-card p{

    color:var(--text-light);

    font-size:17px;

    line-height:1.8;

}


/* ==========================================================
   ADVANTAGES
========================================================== */

.advantages{

    background:linear-gradient(180deg,#f7fbff 0%,#eef7fd 100%);

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.advantage-card{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:40px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.65);

    box-shadow:0 20px 45px rgba(0,0,0,.05);

}

.advantage-card:hover{

    transform:translateY(-10px);

    background:#fff;

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.advantage-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    background:linear-gradient(135deg,var(--primary),var(--accent));

    color:#fff;

    margin-bottom:30px;

}

.advantage-card h3{

    font-size:25px;

    color:var(--primary);

    margin-bottom:16px;

}

.advantage-card p{

    color:var(--text-light);

    line-height:1.8;

    font-size:17px;

}


/* ==========================================================
   SERVICES
========================================================== */

.services{

    background:#fff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:24px;

    padding:42px;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:linear-gradient(var(--accent),var(--primary));

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 65px rgba(0,0,0,.08);

}

.service-card h3{

    color:var(--primary);

    font-size:26px;

    margin-bottom:20px;

    line-height:1.3;

}

.service-card p{

    color:var(--text-light);

    font-size:17px;

    line-height:1.8;

}

.service-card::after{

    content:"→";

    position:absolute;

    right:28px;

    bottom:24px;

    font-size:30px;

    color:var(--accent);

    transition:.35s;

}

.service-card:hover::after{

    transform:translateX(8px);

}


/* ==========================================================
   Decorative background
========================================================== */

.services{

    position:relative;

}

.services::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(23,183,165,.05);

    left:-220px;

    bottom:-220px;

}


/* ==========================================================
   Hover animation
========================================================== */

.about-card,
.advantage-card,
.service-card{

    will-change:transform;

}


/* ==========================================================
   Tablet
========================================================== */

@media(max-width:1100px){

.about-grid,
.advantages-grid,
.services-grid{

grid-template-columns:repeat(2,1fr);

}

}


/* ==========================================================
   Mobile
========================================================== */

@media(max-width:768px){

.about-grid,
.advantages-grid,
.services-grid{

grid-template-columns:1fr;

}

.about-card,
.advantage-card,
.service-card{

padding:32px;

}

.about-number{

font-size:46px;

}

.section-header h2{

font-size:34px;

}

.service-card h3{

font-size:22px;

}

.advantage-card h3{

font-size:22px;

}

}
/* ==========================================================
   PRICING
========================================================== */

.pricing{
    background:linear-gradient(180deg,#f8fbff 0%,#eef6fc 100%);
    position:relative;
}

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

.price-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:45px 40px;
    box-shadow:0 20px 55px rgba(0,0,0,.06);
    transition:.35s;
    overflow:hidden;
}

.price-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 80px rgba(23,63,115,.15);
}

.price-card.featured{
    background:linear-gradient(135deg,var(--primary),#285b9d);
    color:#fff;
    transform:scale(1.04);
}

.price-label{
    position:absolute;
    right:25px;
    top:25px;
    background:var(--gold);
    color:#222;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.price-title{
    font-size:30px;
    font-weight:800;
    margin-bottom:15px;
}

.price-value{
    font-size:46px;
    font-weight:800;
    margin-bottom:30px;
}

.price-card ul{
    margin-bottom:35px;
}

.price-card li{
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.price-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--accent);
    font-weight:bold;
}

.price-card.featured li::before{
    color:#fff;
}

.price-button{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:18px;
    border-radius:50px;
    background:var(--accent);
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.price-button:hover{
    background:var(--accent-hover);
}

.price-card.featured .price-button{
    background:#fff;
    color:var(--primary);
}


/* ==========================================================
   STEPS
========================================================== */

.steps{
    background:#fff;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.step{
    text-align:center;
    position:relative;
}

.step-number{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--accent),#49dccc);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:800;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(23,183,165,.25);

}

.step h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:24px;

}

.step p{

    color:var(--text-light);

}


/* ==========================================================
   REVIEWS
========================================================== */

.reviews{

    background:linear-gradient(180deg,#eef6fc,#ffffff);

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 18px 50px rgba(0,0,0,.06);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-stars{

    color:#F5B400;

    font-size:24px;

    margin-bottom:20px;

}

.review-card p{

    color:var(--text-light);

    margin-bottom:25px;

    line-height:1.9;

    font-style:italic;

}

.review-card strong{

    color:var(--primary);

}


/* ==========================================================
   FAQ
========================================================== */

.faq{

    background:#fff;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:28px 35px;

    margin-bottom:20px;

    transition:.35s;

}

.faq-item:hover{

    box-shadow:0 18px 45px rgba(0,0,0,.06);

    transform:translateY(-4px);

}

.faq-item h3{

    color:var(--primary);

    margin-bottom:15px;

    font-size:22px;

}

.faq-item p{

    color:var(--text-light);

    line-height:1.8;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

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

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

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

.price-card.featured{
transform:none;
}

}

@media(max-width:768px){

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

.price-card{

padding:35px 28px;

}

.price-value{

font-size:38px;

}

.step-number{

width:75px;
height:75px;
font-size:26px;

}

.review-card{

padding:30px;

}

.faq-item{

padding:24px;

}

}
/* ==========================================================
   CTA
========================================================== */

.cta{

    background:linear-gradient(135deg,var(--primary),#24528e);

    color:#fff;

    padding:120px 0;

}

.cta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.cta-content h2{

    font-size:48px;

    line-height:1.2;

    margin:20px 0;

}

.cta-content p{

    font-size:19px;

    opacity:.9;

    max-width:700px;

}

.cta .section-subtitle{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.cta-buttons{

    display:flex;

    flex-direction:column;

    gap:20px;

    min-width:280px;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:var(--gold);

    color:#222;

}

.cta .btn-secondary{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

}

.cta .btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}


/* ==========================================================
   CALLBACK
========================================================== */

.callback{

    background:#fff;

}

.callback-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.callback-list{

    margin-top:30px;

}

.callback-list li{

    margin-bottom:16px;

    color:var(--text-light);

    font-weight:600;

}

.callback-form{

    background:#fff;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.callback-form input,
.callback-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid var(--border);

    border-radius:14px;

    margin-bottom:18px;

    font-family:inherit;

    font-size:16px;

    transition:.3s;

}

.callback-form input:focus,
.callback-form textarea:focus{

    outline:none;

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(23,183,165,.12);

}

.callback-form textarea{

    resize:vertical;

    min-height:140px;

}

.callback-form button{

    width:100%;

    border:none;

    cursor:pointer;

}


/* ==========================================================
   CONTACTS
========================================================== */

.contacts{

    background:linear-gradient(180deg,#f7fbff,#eef6fc);

}

.contacts-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-icon{

    width:72px;

    height:72px;

    margin:auto auto 25px;

    border-radius:18px;

    background:linear-gradient(135deg,var(--accent),var(--primary));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

}

.contact-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.contact-card p{

    color:var(--text-light);

}

.contact-card a{

    color:var(--primary);

    font-weight:700;

}


/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:#0d2340;

    color:#fff;

    padding:70px 0 35px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    font-size:34px;

    font-weight:800;

    margin-bottom:20px;

}

.footer-left p{

    opacity:.75;

    max-width:420px;

}

.footer-center ul li{

    margin-bottom:14px;

}

.footer-center a{

    opacity:.8;

    transition:.3s;

}

.footer-center a:hover{

    color:var(--gold);

}

.footer-right h4{

    margin-bottom:18px;

}

.footer-right p{

    margin-bottom:10px;

    opacity:.8;

}


/* ==========================================================
   SCROLL ANIMATION
========================================================== */

.fade-up{

    opacity:0;

    transform:translateY(45px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}


/* ==========================================================
   MOBILE MENU
========================================================== */

@media(max-width:992px){

nav{

display:none;

}

.mobile-menu{

display:block;

}

.header-phone,
.header-button{

display:none;

}

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-photo{

max-width:500px;

margin:auto;

}

.callback-wrapper{

grid-template-columns:1fr;

}

.cta-box{

flex-direction:column;

text-align:center;

}

.contacts-grid{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

}


/* ==========================================================
   PHONE
========================================================== */

@media(max-width:576px){

.hero{

padding-top:130px;

}

.hero h1{

font-size:38px;

}

.section-header h2{

font-size:32px;

}

.btn-primary,
.btn-secondary{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.callback-form{

padding:30px;

}

.contact-card{

padding:30px;

}

.footer-logo{

font-size:28px;

}

}


/* ==========================================================
   CUSTOM SCROLLBAR
========================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--accent);

border-radius:10px;

}

::-webkit-scrollbar-track{

background:#eef4f8;

}


/* ==========================================================
   SELECTION
========================================================== */

::selection{

background:var(--accent);

color:#fff;

}

/* ===== ИСПРАВЛЕНИЕ ИКОНОК В HERO ===== */

.hero-features .feature {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 12px !important;
}

.hero-features .feature-icon {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;
    min-height: 44px !important;

    max-width: 44px !important;
    max-height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    flex: none !important;
}

.hero-features .feature > div:last-child {
    min-width: 0 !important;
    width: auto !important;
}
/* Убираем декоративную рамку вокруг фотографии */

.hero-photo{
    border:none !important;
    box-shadow:none !important;
    outline:none !important;
}
/* Убираем декоративную рамку вокруг фото */
.hero-photo,
.hero-photo::before,
.hero-photo::after,
.hero-photo img {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-photo::before,
.hero-photo::after {
    content: none !important;
    display: none !important;
}