:root{
    --primary:#071B4D;
    --secondary:#0E5BFF;
    --accent:#19B8FF;
    --white:#fff;
    --text:#1b2430;
    --muted:#6b7280;
    --border:#e6edf5;
    --bg:#f7f9fc;
    --shadow:0 20px 60px rgba(0,0,0,.08);
    --radius:20px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box
}
body{
    font-family:Inter,sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}
body.menu-open{
    overflow:hidden;
}
a{
    text-decoration:none;
    color:inherit
}
img{
    display:block;
    max-width:100%
}
.container{
    width:min(1320px,calc(100% - 48px));
    margin:auto
}

.sl-topbar{
    height:42px;
    background:var(--primary);
    color:#fff;
    font-size:14px;
}
.sl-topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:100%;
}
.sl-topbar-left,.sl-topbar-right{
    display:flex;
    align-items:center;
    gap:24px;
}
.sl-top-item{
    display:flex;
    align-items:center;
    gap:8px;
    opacity:.85;
    transition:var(--transition);
}
.sl-top-item:hover{
    opacity:1;
    color:var(--accent);
}
.sl-topbar-right a{
    width:30px;
    height:30px;
    border-radius:50%;
    display:grid;
    place-items:center;
    transition:var(--transition);
}
.sl-topbar-right a:hover{
    background:var(--accent);
}

.sl-header{
    position:relative;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all .35s ease;
}
.sl-header > .container{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.35s;
}
.sl-logo{
    width:210px;
}
.sl-nav{
    position:relative;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    border-radius:60px;
    box-shadow:var(--shadow);
    padding:0 14px;
    transition:.45s ease;
}
.sl-nav>ul{
    position:static;
    display:flex;
    list-style:none;
}
.sl-nav>ul>li{
    position:relative;
}
.sl-nav>ul>li>a{
    height:72px;
    padding:0 22px;
    display:flex;
    align-items:center;
    gap:8px;
    font:600 15px "Plus Jakarta Sans",sans-serif;
    position:relative;
    transition:var(--transition);
}
.sl-nav>ul>li>a:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:18px;
    width:0;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--accent),var(--secondary));
    transform:translateX(-50%);
    transition:var(--transition);
}
.sl-nav>ul>li:hover>a{
    color:var(--secondary);
}
.sl-nav>ul>li:hover>a:after,.sl-nav>ul>li.active>a:after{
    width:28px;
}
.sl-mega-panel{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    opacity:0;
    visibility:hidden;
    transform:none;
    transition:.35s ease;
    z-index:99999;
    pointer-events:none;
}
.sl-mega-panel::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:-20px;
    height:20px;
}
.sl-mega-panel.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}
.sl-mega-container{
    width:min(1320px,calc(100vw - 40px));
    margin:auto;
}
.sl-mega-content{
    background:#fff;
    border-radius:24px;
    box-shadow:0 25px 80px rgba(0,0,0,.12);
    padding:35px;
}
.mega-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:40px;
    align-items:flex-start;
}
.mega-column{
    min-width:0;
}
.mega-column h5{
    font:700 16px "Plus Jakarta Sans",sans-serif;
    color:var(--primary);
    margin:0 0 18px;
    padding-bottom:10px;
    border-bottom:1px solid var(--border);
}
.mega-column a{
    display:block;
    padding:10px 0;
    color:#475569;
    font-size:14px;
    line-height:1.45;
    transition:all .25s ease;
    position:relative;
}
.mega-column a:hover{
    color:var(--secondary);
    padding-left:10px;
}
.mega-column a::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:0;
    height:2px;
    background:var(--secondary);
    transform:translateY(-50%);
    transition:.25s ease;
}
.mega-column a:hover::before{
    width:6px;
}
.mega-column h5:not(:first-child){
    margin-top:30px;
}
.badge{
    position:absolute;
    top:16px;
    left:16px;
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
}
.featured-content{
    padding:20px;
}
.featured-content h4{
    margin:8px 0;
}
.featured-content h3{
    color:var(--secondary);
    margin-bottom:8px;
}
.explore-btn{
    display:inline-flex;
    margin-top:16px;
    font-weight:600;
    color:var(--secondary);
}
.sl-actions{
    display:flex;
    align-items:center;
    gap:14px;
}
.icon-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow);
    cursor:pointer;
    transition:var(--transition);
}
.icon-btn:hover{
    background:var(--secondary);
    color:#fff;
    transform:translateY(-3px);
}
.list-btn{
    height:54px;
    padding:0 28px;
    border-radius:60px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    background:linear-gradient(135deg,var(--accent),var(--secondary),var(--primary));
    box-shadow:0 15px 40px rgba(14,91,255,.35);
    transition:var(--transition);
}
.list-btn:hover{
    transform:translateY(-4px);
}
.list-btn i{
    transition:var(--transition);
}
.list-btn:hover i{
    transform:translateX(4px);
}
.sl-header.sticky{
    background:#ffffff;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    position:fixed;
    top:15px;
    animation:drop .35s;
}
.sl-header.sticky > .container{
    min-height:82px;
}
.mobile-toggle{
    width:48px;
    height:48px;
    border:none;
    background:#F4F8FC;
    border-radius:14px;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    transition:.35s;
}
.mobile-toggle span{
    width:22px;
    height:2px;
    background:#071B4D;
    border-radius:2px;
    transition:.35s;
}
.mobile-toggle:hover{
    background:#0E5BFF;
}
.mobile-toggle:hover span{
    background:#fff;
}
.mobile-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2){
    opacity:0;
}
.mobile-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}
.mobile-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2){
    opacity:0;
}
.mobile-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}
.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(7,27,77,.55);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9998;
}
.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}
body.menu-open{
    overflow:hidden;
}
.mobile-panels{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}
.mobile-panel{
    position:absolute;
    inset:0;
    background:#fff;
    transform:translateX(100%);
    transition:.35s ease;
    overflow-y:auto;
}
.mobile-panel.active{
    transform:translateX(0);
}
.mobile-header{
    padding:22px;
    border-bottom:1px solid var(--border);
}
.mobile-header img{
    width:170px;
}
.mobile-subheader{
    display:flex;
    align-items:center;
    gap:14px;
}
.mobile-back{
    width:36px;
    height:36px;
    border:none;
    background:#F4F8FC;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
}
.mobile-back:hover{
    background:#0E5BFF;
    color:#fff;
}
.mobile-menu{
    display:flex;
    flex-direction:column;
}
.mobile-menu a,
.mobile-link{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    border:none;
    background:none;
    border-bottom:1px solid #eef2f6;
    font-size:16px;
    cursor:pointer;
}
.mobile-link span{
    display:flex;
    align-items:center;
    gap:14px;
}
.mobile-footer{
    padding:22px;
}
@keyframes drop{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:none;
    }
}
@media(max-width:1200px){
    .container{
        width:min(100%,calc(100% - 32px));
    }
    .sl-nav>ul>li>a{
        padding:0 16px;font-size:14px;
    }
}
@media(max-width:992px){
    .sl-topbar{
        display:none;
    }
    .sl-header{
        top:0;
    }
    .sl-nav{
        position:fixed;
        top:0;
        left:-360px;
        width:340px;
        height:100vh;
        background:#fff;
        overflow-y:auto;
        overflow-x:hidden;
        z-index:9999;
        padding:90px 25px 40px;
        transition:left .35s ease;
        display:block;
        border-radius:0;
        box-shadow:20px 0 60px rgba(0,0,0,.15);
    }
    .sl-nav.active{
        left:0;
    }
    .sl-header>.container{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }
    .sl-logo{
        order:1;
    }
    .mega-grid{
        display:block;
    }
    .mega-column{
        margin-bottom:28px;
    }
    .mega-column:last-child{
        margin-bottom:0;
    }
    .mobile-toggle{
        order:2;
        display:flex;
    }
    .sl-nav ul{
        display:none;
    }
    .sl-nav li{
        width:100%;
        margin:0;
        border-bottom:1px solid #EEF2F6;
    }
    .sl-nav li>a{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:18px 0;
        font-size:17px;
        font-weight:600;
    }
    .mega-featured{
        display:none;
    }
    .mobile-toggle{
        display:flex;
    }
    .sl-actions .list-btn{
        display:none;
    }
    .mobile-toggle{
        display:flex;
    }
}
@media(max-width:768px){
    .sl-header .container{
        height:74px;
    }
    .sl-logo{
        width:170px;
    }
    .icon-btn{
        width:42px;
        height:42px;
    }
}
@media(max-width:576px){
    .container{
        width:calc(100% - 24px);
    }
    .sl-actions{
        gap:8px;
    }
}

.hero{
    position:relative;
    overflow:hidden;
    padding:40px 0px;
    background:
        radial-gradient(circle at top left,
        rgba(25,184,255,.12),
        transparent 35%),
        radial-gradient(circle at bottom right,
        rgba(14,91,255,.08),
        transparent 40%),
        #F7FAFD;
}
.hero-grid{
    display:grid;
    grid-template-columns:46% 54%;
    align-items:center;
    gap:70px;
}
.hero-left{
    position:relative;
    z-index:5;
}
.hero-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:60px;
    background:#fff;
    border:1px solid #E6EEF7;
    color:#0E5BFF;
    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}
.hero-label i{
    font-size:20px;
}
.hero-left h1{
    margin:30px 0 25px;
    font-size:72px;
    line-height:1.05;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-weight:800;
    color:#071B4D;
}
.hero-left h1 span{
    background:linear-gradient(135deg,#19B8FF,#0E5BFF);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero-left p{
    max-width:560px;
    font-size:19px;
    line-height:1.9;
    color:#64748B;
}
.hero-actions{
    display:flex;
    align-items:center;
    gap:18px;
    margin:40px 0 50px;
}
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:60px;
    background:linear-gradient(135deg,#19B8FF,#0E5BFF);
    color:#fff;
    font-weight:700;
    transition:.35s;
    box-shadow:0 18px 40px rgba(14,91,255,.25);
}
.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 25px 50px rgba(14,91,255,.35);
}
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:60px;
    background:#fff;
    border:1px solid #E6EEF7;
    color:#071B4D;
    font-weight:700;
    transition:.35s;
}
.btn-secondary:hover{
    border-color:#19B8FF;
    color:#0E5BFF;
    transform:translateY(-5px);
}
.popular-searches{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:28px;
    flex-wrap:wrap;
}
.popular-searches > span{
    font-size:14px;
    font-weight:700;
    color:var(--secondary);
    white-space:nowrap;
}
.search-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.highlight-item{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:50px;
    transition:.3s ease;
}
.highlight-item i{
    color:var(--secondary);
    font-size:14px;
}
.highlight-item p{
    margin:0;
    font-size:13px;
    font-weight:600;
    color:var(--text);
}
.highlight-item:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(0,0,0,.08);
}
.hero-right{
    position:relative;
    min-height:720px;
}
.hero-image{
    position:absolute;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 35px 80px rgba(15,23,42,.12);
}
.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}
.hero-image:hover img{
    transform:scale(1.08);
}
.image-1{
    width:420px;
    height:560px;
    right:20px;
    top:0;
}
.image-2{
    width:260px;
    height:220px;
    left:0;
    bottom:120px;
}
.image-3{
    width:250px;
    height:180px;
    right:0;
    bottom:20px;
}
.glass-card{
    position:absolute;
    padding:18px 24px;
    border-radius:20px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    box-shadow:0 20px 50px rgba(15,23,42,.10);
    animation:floatCard 5s ease-in-out infinite;
}
.price-card{
    left:40px;
    top:90px;
}
.price-card small{
    display:block;
    color:#94A3B8;
    margin-bottom:6px;
}
.price-card h3{
    color:#0E5BFF;
    font-size:34px;
}
.rating-card{
    right:-10px;
    top:180px;
    font-weight:700;
}
.verified-card{
    left:-10px;
    bottom:70px;
    font-weight:700;
}
.hero-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    z-index:0;
}
.hero-shape-1{
    width:420px;
    height:420px;
    background:rgba(25,184,255,.12);
    left:-120px;
    top:-80px;
}
.hero-shape-2{
    width:360px;
    height:360px;
    background:rgba(14,91,255,.08);
    right:-100px;
    bottom:-80px;
}
@keyframes floatCard{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
.hero-stats{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.hero-stat{
    background:#fff;
    padding:28px;
    border-radius:22px;
    border:1px solid #E6EEF7;
    box-shadow:0 15px 35px rgba(15,23,42,.05);
    transition:.35s;
}
.hero-stat:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(15,23,42,.10);
}
.hero-stat h2{
    color:#071B4D;
    font-size:42px;
    margin-bottom:8px;
    font-family:"Plus Jakarta Sans",sans-serif;
}
.hero-stat p{
    color:#64748B;
}
@media(max-width:1400px){
    .hero-grid{
        grid-template-columns:48% 52%;
        gap:50px;
    }
    .hero-left h1{
        font-size:64px;
    }
    .image-1{
        width:380px;
        height:520px;
    }
}
@media(max-width:1200px){
    .hero{
        padding:160px 0 80px;
    }
    .hero-grid{
        grid-template-columns:1fr;
    }
    .hero-left{
        max-width:800px;
        margin:auto;
        text-align:center;
    }
    .hero-left p{
        margin:auto;
    }
    .hero-actions{
        justify-content:center;
    }
    .hero-right{
        margin-top:70px;
        min-height:650px;
    }
    .hero-search{
        margin-top:45px;
    }
    .hero-search form{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        padding:25px;
    }
    .field{
        border:none;
        padding:0;
    }
    .search-button{
        width:100%;
        height:60px;
        grid-column:span 2;
        border-radius:16px;
    }
}
@media(max-width:992px){
    .hero{
        padding:140px 0 70px;
    }
    .hero-left h1{
        font-size:52px;
    }
    .hero-left p{
        font-size:17px;
    }
    .hero-right{
        min-height:550px;
    }
    .image-1{
        position:relative;
        margin:auto;
        right:auto;
    }
    .image-2{
        display:none;
    }
    .image-3{
        display:none;
    }
    .price-card{
        left:10px;
        top:20px;
    }
    .rating-card{
        right:10px;
        top:120px;
    }
    .verified-card{
        left:20px;
        bottom:20px;
    }
}
@media(max-width:768px){
    .hero{
        padding:120px 0 60px;
    }
    .hero-left h1{
        font-size:42px;
        line-height:1.15;
    }
    .hero-actions{
        flex-direction:column;
    }
    .btn-primary,
    .btn-secondary{
        width:100%;
    }
    .search-tabs{
        overflow:auto;
    }
    .search-tabs button{
        flex:none;
        padding:0 30px;
    }
    .hero-search form{
        display:block;
        padding:20px;
    }
    .field{
        margin-bottom:18px;
        padding:18px;
        border:1px solid #EDF2F7;
        border-radius:14px;
        background:#fff;
    }
    .search-button{
        width:100%;
        height:58px;
        border-radius:14px;
    }
    .popular-searches{
        justify-content:center;
    }
    .hero-right{
        min-height:420px;
    }
    .image-1{
        width:100%;
        height:420px;
    }
    .glass-card{
        padding:14px 18px;
        font-size:14px;
    }
}
@media(max-width:576px){
    .hero{
        padding:100px 0 50px;
    }
    .hero-left h1{
        font-size:34px;
    }
    .hero-label{
        font-size:13px;
    }
    .hero-left p{
        font-size:15px;
    }
    .hero-search{
        border-radius:20px;
    }
    .image-1{
        height:320px;
    }
    .price-card h3{
        font-size:24px;
    }
    .glass-card{
        display:none;
    }
    .popular-searches{
        gap:8px;
    }
    .popular-searches a{
        font-size:13px;
        padding:8px 14px;
    }
}

.property-search{
    position:relative;
    padding:20px 0px;
    background:
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
    overflow:hidden;
}
.property-search::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(rgba(25,184,255,.12), transparent 70%);
    pointer-events:none;
}
.property-search::after{
    content:"";
    position:absolute;
    bottom:-220px;
    left:-150px;
    width:550px;
    height:550px;
    border-radius:50%;
    background:
    radial-gradient(rgba(14,91,255,.08), transparent 70%);
    pointer-events:none;
}
.property-search .container{
    position:relative;
    z-index:2;
}
.search-header{
    text-align:center;
    margin-bottom:55px;
}
.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:50px;
    background:#EAF6FF;
    color:#0E5BFF;
    font-weight:700;
    font-size:15px;
    margin-bottom:20px;
}
.search-header h2{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#071B4D;
    margin-bottom:18px;
    letter-spacing:-1px;
}
.search-header p{
    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#64748B;
}
.search-box{
    background:#fff;
    border-radius:34px;
    padding:40px;
    border:1px solid #E8EEF6;
    box-shadow:0 30px 80px rgba(15,23,42,.08), 0 10px 25px rgba(15,23,42,.04);
    position:relative;
}
.search-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:34px;
    padding:1px;
    background:
    linear-gradient(135deg, rgba(25,184,255,.20), rgba(14,91,255,.08));
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}
.search-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-bottom:40px;
}
.search-tabs button{
    position:relative;
    height:58px;
    padding:0 34px;
    border:none;
    border-radius:60px;
    background:#F4F7FB;
    color:#64748B;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:all .35s ease;
    white-space:nowrap;
}
.search-tabs button:hover{
    background:#EDF6FF;
    color:#0E5BFF;
    transform:translateY(-2px);
}
.search-tabs button.active{
    background:linear-gradient(135deg, #19B8FF, #0E5BFF);
    color:#fff;
    box-shadow:0 15px 35px rgba(14,91,255,.28);
}
.search-tabs button.active::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:8px;
    height:8px;
    border-radius:50%;
    background:#19B8FF;
}
.property-search-form{
    display:grid;
    grid-template-columns: 2.0fr 1.5fr 1.5fr 1.5fr 1.5fr 150px;
    gap:20px;
    align-items:stretch;
}
.search-field{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    min-height:92px;
    padding:18px 22px;
    border-radius:24px;
    background:#F8FBFE;
    border:1px solid #E7EEF7;
    transition:all .35s ease;
}
.search-field:hover{
    background:#fff;
    border-color:#19B8FF;
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.search-field.active{
    background:#fff;
    border-color:#0E5BFF;
    box-shadow:0 0 0 4px rgba(25,184,255,.10);
}
.search-field::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    opacity:0;
    transition:.35s;
    background:
    linear-gradient(135deg, rgba(25,184,255,.06), rgba(14,91,255,.03));
}
.search-field:hover::after{
    opacity:1;
}
.field-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, #EEF8FF, #E4F3FF);
    color:#0E5BFF;
    transition:all .35s ease;
    position:relative;
    z-index:2;
}
.field-icon i{
    font-size:24px;
    line-height:1;
}
.search-field:hover .field-icon{
    transform:scale(1.08);
    background:linear-gradient(135deg, #19B8FF, #0E5BFF);
    color:#fff;
    box-shadow:0 12px 30px rgba(14,91,255,.22);
}
.field-content{
    position:relative;
    z-index:2;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.field-content label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
    color:#94A3B8;
    text-transform:uppercase;
    letter-spacing:.6px;
}
.field-content input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:0;
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#071B4D;
    font-family:inherit;
}
.field-content input::placeholder{
    color:#94A3B8;
    font-weight:500;
}
.field-content input:focus{
    color:#0E5BFF;
}
.field-content select{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    cursor:pointer;
    padding:0;
    margin:0;
    font-size:15px;
    font-weight:600;
    color:#071B4D;
    font-family:inherit;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%2364748B' viewBox='0 0 256 256'%3E%3Cpath d='M208.49 104.49a8 8 0 0 1-11.31 11.31L128 46.63 58.83 115.8a8 8 0 0 1-11.32-11.31l74.83-74.83a8 8 0 0 1 11.32 0ZM47.51 151.51a8 8 0 0 1 11.32 0L128 220.69l69.17-69.18a8 8 0 1 1 11.32 11.32l-74.83 74.82a8 8 0 0 1-11.32 0L47.51 162.83a8 8 0 0 1 0-11.32Z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right center;
    padding-right:28px;
}
.field-content select:focus{
    color:#0E5BFF;
}
.search-field:focus-within{
    border-color:#0E5BFF;
    background:#fff;
    box-shadow:
    0 0 0 4px rgba(25,184,255,.12),
    0 20px 45px rgba(15,23,42,.08);
}
.search-field:focus-within .field-icon{
    background:linear-gradient(
        135deg,
        #19B8FF,
        #0E5BFF
    );
    color:#fff;
}
.field-content input::-webkit-input-placeholder{
    color:#94A3B8;
}
.field-content input::-moz-placeholder{
    color:#94A3B8;
}
.field-content input:-ms-input-placeholder{
    color:#94A3B8;
}
.field-content input:-webkit-autofill{
    -webkit-box-shadow:0 0 0 1000px transparent inset;
    -webkit-text-fill-color:#071B4D;
    transition:background-color 9999s ease-in-out 0s;
}
.search-btn{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:92px;
    border:none;
    border-radius:24px;
    cursor:pointer;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #19B8FF 0%,
        #0E5BFF 100%
    );
    color:#fff;
    font-size:17px;
    font-weight:700;
    letter-spacing:.3px;
    transition:all .35s ease;
    box-shadow:
    0 18px 40px rgba(14,91,255,.28);
}
.search-btn i{
    font-size:22px;
    transition:.35s;
}
.search-btn span{
    position:relative;
    z-index:2;
}
.search-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        #31C8FF,
        #256DFF
    );
    opacity:0;
    transition:.35s;
}
.search-btn:hover{
    transform:translateY(-5px);
    box-shadow:
    0 28px 60px rgba(14,91,255,.35);
}
.search-btn:hover::before{
    opacity:1;
}
.search-btn:hover i{
    transform:translateX(5px);
}
.search-btn:active{
    transform:scale(.98);
}
.popular-tags{
    margin-top:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
}
.popular-tags span{
    color:#071B4D;
    font-weight:700;
    font-size:15px;
}
.popular-tags a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 18px;
    border-radius:40px;
    background:#fff;
    border:1px solid #E7EEF7;
    color:#64748B;
    font-size:14px;
    font-weight:600;
    transition:all .35s ease;
}
.popular-tags a:hover{
    background:#0E5BFF;
    border-color:#0E5BFF;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:
    0 12px 30px rgba(14,91,255,.18);
}
.popular-tags a i{
    margin-right:8px;
    font-size:16px;
}
.search-box{
    transition:.4s;
}
.search-box:hover{
    box-shadow:
    0 40px 90px rgba(15,23,42,.10),
    0 20px 40px rgba(15,23,42,.05);
}
.search-header h2{
    transition:.35s;
}
.property-search:hover .search-header h2{
    letter-spacing:-1.5px;
}
.section-tag{
    transition:.35s;
}
.section-tag:hover{
    transform:translateY(-3px);
    background:#0E5BFF;
    color:#fff;
}
.search-field{
    overflow:hidden;
}
.search-field::before{
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:80px;
    height:100%;
    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    transform:skewX(-20deg);
}
.search-field:hover::before{
    animation:shine .9s linear;
}
@keyframes shine{
    from{
        left:-120%;
    }
    to{
        left:130%;
    }
}
@media (max-width:1400px){
    .search-box{
        padding:35px;
    }
    .property-search-form{
        grid-template-columns:
        2fr
        1.4fr
        1fr
        1.3fr
        170px;
        gap:16px;
    }
}
@media (max-width:1200px){
    .property-search{
        padding:80px 0;
    }
    .search-header{
        margin-bottom:40px;
    }
    .search-header h2{
        font-size:44px;
    }
    .property-search-form{
        grid-template-columns:
        repeat(2,1fr);
    }
    .search-btn{
        min-height:70px;
        grid-column:span 2;
    }
}
@media (max-width:992px){
    .search-box{
        padding:28px;
        border-radius:26px;
    }
    .search-tabs{
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:8px;
        scrollbar-width:none;
    }
    .search-tabs::-webkit-scrollbar{
        display:none;
    }
    .search-tabs button{
        flex:none;
        white-space:nowrap;
        padding:0 26px;
    }
    .property-search-form{
        grid-template-columns:1fr;
        gap:18px;
    }
    .search-btn{
        grid-column:auto;
        min-height:68px;
    }
}
@media (max-width:768px){
    .property-search{
        padding:70px 0;
    }
    .search-header h2{
        font-size:34px;
        line-height:1.2;
    }
    .search-header p{
        font-size:16px;
    }
    .section-tag{
        font-size:13px;
        padding:10px 18px;
    }
    .search-box{
        padding:22px;
    }
    .search-field{
        min-height:78px;
        padding:16px 18px;
        border-radius:18px;
    }
    .field-icon{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:14px;
    }
    .field-icon i{
        font-size:20px;
    }
    .field-content label{
        font-size:12px;
    }
    .field-content input,
    .field-content select{
        font-size:15px;
    }
    .search-btn{
        min-height:60px;
        border-radius:18px;
        font-size:15px;
    }
    .popular-tags{
        justify-content:flex-start;
    }
}
@media (max-width:576px){
    .property-search{
        padding:60px 0;
    }
    .search-box{
        padding:18px;
        border-radius:22px;
    }
    .search-header{
        margin-bottom:30px;
    }
    .search-header h2{
        font-size:28px;
    }
    .search-header p{
        font-size:15px;
    }
    .search-tabs{
        gap:10px;
    }
    .search-tabs button{
        height:46px;
        padding:0 18px;
        font-size:14px;
    }
    .search-field{
        min-height:72px;
    }
    .field-icon{
        width:46px;
        height:46px;
        min-width:46px;
    }
    .field-icon i{
        font-size:18px;
    }
    .popular-tags{
        margin-top:25px;
        gap:10px;
    }
    .popular-tags span{
        width:100%;
    }
    .popular-tags a{
        font-size:13px;
        padding:8px 15px;
    }
}
.property-search-container{
    padding: 5px 30px;
}
.search-box,
.search-field,
.search-btn,
.search-tabs button,
.popular-tags a{
    transition:all .35s ease;
}
.search-btn:focus-visible,
.search-tabs button:focus-visible,
.search-field input:focus-visible,
.search-field select:focus-visible{
    outline:2px solid #19B8FF;
    outline-offset:2px;
}

.sl-featured-showcase{
    position:relative;
    padding:40px 0;
    background:
        radial-gradient(circle at top right,
            rgba(25,184,255,.12),
            transparent 35%),
        radial-gradient(circle at bottom left,
            rgba(14,91,255,.15),
            transparent 40%),
        var(--primary);
}
.sl-featured-showcase::before{
    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(25,184,255,.08);
    filter:blur(80px);
    pointer-events:none;
}
.sl-featured-showcase::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(14,91,255,.12);
    filter:blur(90px);
    pointer-events:none;
}
.featured-scroll{
    position:relative;
    width:100%;
    overflow:hidden;
}
.featured-track{
    display:flex;
    align-items:stretch;
    flex-wrap:nowrap;
    will-change:transform;
}
.featured-slide{
    flex:0 0 92vw;
    margin-right:4vw;
    width:100vw;
    min-height:720px;
    display:grid;
    grid-template-columns:40% 60%;
    align-items:center;
    gap:70px;
    padding:70px;
}
.sl-featured-showcase .sl-section-title{
    max-width:760px;
    margin:0 auto 25px;
    text-align:center;
}
.sl-featured-showcase .sl-section-title h2{
    margin:22px 0 18px;
    font-size:56px;
    line-height:1.08;
    font-weight:800;
    color: white;
}
.sl-featured-showcase .sl-section-title p{
    max-width:620px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    color:white;
}
.featured-content{
    max-width:480px;
}
.featured-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 20px;
    border-radius:40px;
    background:#EEF4FF;
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.featured-content h2{
    margin:25px 0 15px;
    font-size:54px;
    line-height:1.08;
    font-weight:800;
    color: white;
}
.featured-price{
    font-size:42px;
    font-weight:800;
    color: white;
    margin-bottom:30px;
}
.featured-specs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    list-style:none;
    margin:0 0 28px;
    padding:0;
}
.featured-specs li{
    padding:11px 18px;
    border-radius:50px;
    background:#fff;
    border:1px solid #E5EAF2;
    font-size:14px;
    font-weight:600;
    color:#4B5565;
}
.featured-content p{
    font-size:17px;
    line-height:1.9;
    color: white;
    margin-bottom:35px;
}
.featured-image{
    position:relative;
    height:620px;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.14);
}
.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s ease;
}
.featured-slide:hover .featured-image img{
    transform:scale(1.05);
}
.property-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
    font-weight:700;
    transition:.35s;
}
.property-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(14,91,255,.25);
}
.featured-progress{
    position:fixed;
    left:50%;
    bottom:40px;
    transform:translateX(-50%);
    width:260px;
    height:6px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    overflow:hidden;
    z-index:20;
    opacity:0;
    transition:.35s;
}
.featured-progress.active{
    opacity:1;
}
.featured-progress-bar{
    display:block;
    width:0%;
    height:100%;
    background:linear-gradient(
        90deg,
        var(--accent),
        var(--secondary)
    );
}
@media(max-width:1200px){
    .featured-slide{
        gap:50px;
        padding:50px;
    }
    .featured-content h2{
        font-size:44px;
    }
    .featured-image{
        height:520px;
    }
}
@media(max-width:991px){
    .sl-featured-showcase{
        padding:90px 0;
    }
    .sl-featured-showcase .sl-section-title{
        margin-bottom:60px;
    }
    .sl-featured-showcase .sl-section-title h2{
        font-size:42px;
    }
    .sl-featured-showcase .sl-section-title p{
        font-size:17px;
    }
    .featured-track{
        display:block;
    }
    .featured-slide{
        width:100%;
        min-height:auto;
        display:block;
        padding:25px 20px 70px;
    }
    .featured-content{
        max-width:100%;
        margin-bottom:35px;
    }
    .featured-content h2{
        font-size:34px;
    }
    .featured-price{
        font-size:30px;
    }
    .featured-image{
        height:360px;
    }
    .featured-progress{
        display:none;
    }
}
@media(max-width:576px){
    .sl-featured-showcase .sl-section-title{
        margin-bottom:45px;
    }
    .sl-featured-showcase .sl-section-title span{
        font-size:12px;
        padding:8px 18px;
    }
    .sl-featured-showcase .sl-section-title h2{
        font-size:30px;
        line-height:1.2;
    }
    .sl-featured-showcase .sl-section-title p{
        font-size:15px;
        line-height:1.7;
    }
    .featured-content h2{
        font-size:28px;
    }
    .featured-specs{
        gap:8px;
    }
    .featured-specs li{
        font-size:13px;
        padding:9px 14px;
    }
    .featured-image{
        height:280px;
        border-radius:18px;
    }
    .property-btn{
        width:100%;
    }
}

.sl-about{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}
.sl-about-header{
    text-align:center;
    margin:0 auto 80px;
}
.sl-about-header span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
}
.sl-about-header h2{
    margin:22px 0;
    font-size:58px;
    line-height:1.08;
    font-weight:800;
    color:var(--primary);
}
.sl-about-header p{
    font-size:18px;
    color:var(--muted);
    line-height:1.9;
}
.sl-about-grid{
    display:grid;
    grid-template-columns:48% 52%;
    gap:80px;
    align-items:center;
}
.sl-about-image{
    position:relative;
}
.sl-about-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:28px;
    display:block;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}
.about-badge{
    position:absolute;
    bottom:40px;
    left:40px;
    background:#fff;
    padding:24px 30px;
    border-radius:20px;
    box-shadow:var(--shadow);
}
.about-badge small{
    display:block;
    color:var(--muted);
    margin-bottom:6px;
}
.about-badge strong{
    font-size:26px;
    color:var(--primary);
}
.about-item{
    position:relative;
    padding:45px 0;
    border-bottom:1px solid var(--border);
    overflow:hidden;
    transition:.45s;
}
.about-item:hover{
    padding-left:18px;
}
.about-bg-text{
    position:absolute;
    left:-10px;
    top:-10px;
    font-size:92px;
    font-weight:900;
    line-height:1;
    color:#F4F7FB;
    letter-spacing:.08em;
    pointer-events:none;
    user-select:none;
    z-index:0;
    transition:.45s;
}
.about-item:hover .about-bg-text{
    color:rgba(14,91,255,.06);
    transform:translateX(12px);
}
.about-item h3{
    position:relative;
    z-index:2;
    font-size:30px;
    color:var(--primary);
    margin-bottom:15px;
}
.about-item p{
    position:relative;
    z-index:2;
    max-width:480px;
    font-size:17px;
    line-height:1.9;
    color:var(--muted);
}
.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 34px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
    font-weight:700;
    transition:.35s;
}
.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(14,91,255,.20);
}
.about-btn i{
    transition:.35s;
}
.about-btn:hover i{
    transform:translateX(5px);
}
@media(max-width:991px){
    .sl-about{
        padding:90px 0;
    }
    .sl-about-header{
        margin-bottom:60px;
    }
    .sl-about-header h2{
        font-size:42px;
    }
    .sl-about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
    .sl-about-image img{
        height:520px;
    }
}
@media(max-width:576px){
    .sl-about-header h2{
        font-size:30px;
    }
    .sl-about-header p{
        font-size:16px;
    }
    .sl-about-image img{
        height:360px;
    }
    .about-badge{
        left:20px;
        bottom:20px;
        padding:18px;
    }
    .about-item{
        grid-template-columns:60px 1fr;
        gap:18px;
    }
    .about-item span{
        font-size:32px;
    }
    .about-item h3{
        font-size:22px;
    }
    .about-item p{
        font-size:15px;
    }
    .about-btn{
        width:100%;
        justify-content:center;
    }
}

.sl-compare{
    padding:40px 0;
    background:var(--bg);
    position:relative;
    overflow:hidden;
}
.sl-compare::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(25,184,255,.06);
    filter:blur(90px);
}
.sl-compare::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(14,91,255,.08);
    filter:blur(100px);
}
.sl-compare .sl-section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}
.sl-compare .sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.14em;
}
.sl-compare .sl-section-title h2{
    margin:22px 0 18px;
    font-size:54px;
    line-height:1.12;
    font-weight:800;
    color:var(--primary);
    letter-spacing:-0.02em;
}
.sl-compare .sl-section-title p{
    max-width:640px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.compare-table{
    margin-top:70px;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}
.compare-head{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--primary);
    color:#fff;
}
.compare-head div{
    padding:28px 40px;
    font-size:20px;
    font-weight:700;
}
.compare-head .compare-old{
    border-right:1px solid rgba(255,255,255,.08);
}
.compare-row{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    min-height:96px;
    border-bottom:1px solid var(--border);
    overflow:hidden;
    transition:all .35s ease;
}
.compare-row:last-child{
    border-bottom:none;
}
.compare-row::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:3px;
    background:linear-gradient(
        90deg,
        var(--accent),
        var(--secondary)
    );
    transition:.45s;
}
.compare-row:hover::before{
    width:100%;
}
.compare-left,
.compare-right{
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px 40px;
    font-size:18px;
    font-weight:600;
    transition:.35s;
}
.compare-left{
    color:var(--muted);
    border-right:1px solid var(--border);
}
.compare-right{
    color:var(--primary);
}
.compare-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.35s;
}
.compare-icon.old{
    background:#EEF2F7;
    color:#94A3B8;
}
.compare-icon.new{
    background:linear-gradient(
        135deg,
        var(--accent),
        var(--secondary)
    );
    color:#fff;
}
.compare-row:hover{
    background:var(--primary);
    transform:translateX(8px);
}
.compare-row:hover .compare-left{
    color:rgba(255,255,255,.45);
    border-color:rgba(255,255,255,.08);
}
.compare-row:hover .compare-right{
    color:#fff;
}
.compare-row:hover .compare-icon.old{
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.45);
}
.compare-row:hover .compare-icon.new{
    transform:scale(1.12);
    box-shadow:0 10px 30px rgba(25,184,255,.45);
}
.compare-footer{
    text-align:center;
    margin-top:70px;
}
.compare-footer h3{
    font-size:44px;
    color:var(--primary);
    font-weight:800;
    margin-bottom:30px;
    line-height:1.2;
}
.compare-footer h3 span{
    color:var(--secondary);
}
.compare-footer .about-btn{
    margin:auto;
}
@media(max-width:991px){
    .sl-compare{
        padding:100px 0;
    }
    .compare-head{
        display:none;
    }
    .compare-row{
        grid-template-columns:1fr;
    }
    .compare-left{
        border-right:none;
        border-bottom:1px dashed var(--border);
    }
    .compare-left,
    .compare-right{
        padding:24px;
    }
    .compare-footer h3{
        font-size:34px;
    }
    .sl-compare .sl-section-title{
        margin-bottom:55px;
    }
    .sl-compare .sl-section-title h2{
        font-size:42px;
    }
}
@media(max-width:576px){
    .sl-compare{
        padding:80px 0;
    }
    .compare-table{
        border-radius:18px;
    }
    .compare-left,
    .compare-right{
        font-size:16px;
        gap:14px;
        padding:20px;
    }
    .compare-icon{
        width:36px;
        height:36px;
        font-size:14px;
    }
    .compare-footer{
        margin-top:45px;
    }
    .compare-footer h3{
        font-size:26px;
        margin-bottom:25px;
    }
    .compare-row:hover{
        transform:none;
    }
    .sl-compare .sl-section-title{
        margin-bottom:40px;
    }
    .sl-compare .sl-section-title span{
        padding:8px 18px;
        font-size:12px;
    }
    .sl-compare .sl-section-title h2{
        font-size:30px;
        line-height:1.25;
        margin:16px 0;
    }
    .sl-compare .sl-section-title p{
        font-size:16px;
        line-height:1.8;
    }
}


.sl-categories{
    padding:40px 0;
    background:#fff;
}
.sl-categories .sl-section-title{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}
.sl-categories .sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.sl-categories .sl-section-title h2{
    margin:20px 0 18px;
    font-size:52px;
    line-height:1.15;
    color:var(--primary);
    font-weight:800;
}
.sl-categories .sl-section-title p{
    max-width:650px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.category-card{
    position:relative;
    overflow:hidden;
    display:block;
    height:520px;
    border-radius:26px;
    color:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}
.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}
.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(7,27,77,.90) 5%,
        rgba(7,27,77,.35) 45%,
        rgba(7,27,77,.05) 100%
    );
    transition:.45s;
}
.category-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    z-index:5;
}
.category-content small{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}
.category-content h3{
    margin-bottom:18px;
    font-size:42px;
    line-height:1;
    font-weight:800;
    color:#fff;
}
.category-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    font-weight:700;
    color:#fff;
}
.category-link i{
    transition:.35s;
}
.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(0,0,0,.18);
}
.category-card:hover img{
    transform:scale(1.08);
}
.category-card:hover .category-overlay{
    background:linear-gradient(
        to top,
        rgba(14,91,255,.92),
        rgba(7,27,77,.45),
        rgba(7,27,77,.10)
    );
}
.category-card:hover .category-link i{
    transform:translateX(8px);
}
@media (max-width:991px){
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .category-card{
        height:460px;
    }
    .sl-categories .sl-section-title h2{
        font-size:42px;
    }
}
@media (max-width:767px){
    .sl-categories{
        padding:60px 0;
    }
    .category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .category-card{
        height:320px;
        border-radius:20px;
    }
    .category-content{
        left:22px;
        right:22px;
        bottom:22px;
    }
    .category-content small{
        margin-bottom:12px;
        font-size:12px;
    }
    .category-content h3{
        font-size:30px;
        margin-bottom:12px;
    }
    .category-link{
        font-size:15px;
    }
    .sl-categories .sl-section-title{
        margin-bottom:40px;
    }
    .sl-categories .sl-section-title h2{
        font-size:30px;
    }
    .sl-categories .sl-section-title p{
        font-size:16px;
    }
}

.sl-journey{
    padding:40px 0;
    background:var(--bg);
    overflow:hidden;
}
.sl-journey .sl-section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}
.sl-journey .sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.sl-journey .sl-section-title h2{
    margin:22px 0 18px;
    font-size:54px;
    line-height:1.12;
    font-weight:800;
    color:var(--primary);
}
.sl-journey .sl-section-title p{
    max-width:650px;
    margin:auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}
.journey-wrapper{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:40px;
    align-items:stretch;
}
.journey-nav{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}
.journey-step{
    display:flex;
    gap:18px;
    align-items:center;
    padding:28px;
    cursor:pointer;
    transition:.35s;
    border-bottom:1px solid var(--border);
    position:relative;
}
.journey-step:last-child{
    border-bottom:none;
}
.journey-step::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:var(--secondary);
    transform:scaleY(0);
    transition:.35s;
    transform-origin:center;
}
.journey-step.active{
    background:#F4F8FF;
}
.journey-step.active::before{
    transform:scaleY(1);
}
.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EEF5FF;
    color:var(--secondary);
    font-size:20px;
    font-weight:700;
    transition:.35s;
    flex-shrink:0;
}
.journey-step.active .step-number{
    background:var(--secondary);
    color:#fff;
}
.step-text h4{
    font-size:22px;
    color:var(--primary);
    margin-bottom:6px;
}
.step-text span{
    font-size:15px;
    color:var(--muted);
    line-height:1.6;
}
.journey-preview{
    position:relative;
    min-height:640px;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.15);
}
.journey-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:.55s;
}
.journey-slide.active{
    opacity:1;
    visibility:visible;
}
.journey-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:7s linear;
    transform:scale(1.1);
}
.journey-slide.active img{
    transform:scale(1);
}
.journey-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(7,27,77,.15),
        rgba(7,27,77,.85)
    );
}
.journey-content{
    position:absolute;
    left:60px;
    right:60px;
    bottom:60px;
    color:#fff;
    max-width:520px;
}
.journey-content span{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
    margin-bottom:18px;
}
.journey-content h3{
    font-size:52px;
    line-height:1.1;
    margin-bottom:18px;
}
.journey-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:35px;
    color:rgba(255,255,255,.92);
}
.journey-step:hover{
    background:#F8FAFD;
}
.journey-step:hover .step-number{
    transform:scale(1.08);
}
.property-btn{
    transition:.35s;
}
.property-btn:hover{
    transform:translateY(-3px);
}
.journey-content>*{
    opacity:0;
    transform:translateY(25px);
    transition:.45s ease;
}
.journey-slide.active .journey-content>*{
    opacity:1;
    transform:translateY(0);
}
.journey-slide.active .journey-content span{
    transition-delay:.10s;
}
.journey-slide.active .journey-content h3{
    transition-delay:.18s;
}
.journey-slide.active .journey-content p{
    transition-delay:.28s;
}
.journey-slide.active .journey-content .property-btn{
    transition-delay:.38s;
}
@media(max-width:991px){
    .journey-wrapper{
        grid-template-columns:1fr;
    }
    .journey-preview{
        min-height:520px;
    }
    .sl-journey .sl-section-title h2{
        font-size:42px;
    }
}
@media(max-width:576px){
    .sl-journey{
        padding:80px 0;
    }
    .journey-step{
        padding:20px;
    }
    .step-number{
        width:50px;
        height:50px;
        font-size:18px;
    }
    .step-text h4{
        font-size:18px;
    }
    .step-text span{
        font-size:14px;
    }
    .journey-preview{
        min-height:420px;
        border-radius:22px;
    }
    .journey-content{
        left:25px;
        right:25px;
        bottom:25px;
    }
    .journey-content h3{
        font-size:32px;
    }
    .journey-content p{
        font-size:15px;
        margin-bottom:22px;
    }
    .sl-journey .sl-section-title h2{
        font-size:30px;
    }
    .sl-journey .sl-section-title p{
        font-size:16px;
    }
}

.sl-trust{
    padding:40px 0;
    background:#fff;
    overflow:hidden;
}
.sl-trust .sl-section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}
.sl-trust .sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
}
.sl-trust .sl-section-title h2{
    margin:22px 0 18px;
    font-size:54px;
    line-height:1.12;
    font-weight:800;
    color:var(--primary);
}
.sl-trust .sl-section-title p{
    max-width:650px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.trust-grid{
    display:grid;
    grid-template-columns:1.15fr 1fr;
    grid-template-rows:300px 220px 220px;
    gap:24px;
}
.trust-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:42px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    overflow:hidden;
    transition:.35s;
    box-shadow:var(--shadow);
}
.trust-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:var(--secondary);
    transition:.45s;
}
.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}
.trust-card:hover::before{
    height:100%;
}
.trust-label{
    display:inline-flex;
    align-items:center;
    width:max-content;
    padding:8px 16px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.trust-card h3{
    font-size:72px;
    line-height:1;
    font-weight:800;
    color:var(--primary);
    margin-bottom:18px;
    transition:.35s;
}
.trust-card:hover h3{
    color:var(--secondary);
}
.trust-card p{
    max-width:420px;
    font-size:17px;
    line-height:1.8;
    color:var(--muted);
}
.trust-large{
    grid-column:1;
    grid-row:1;
}
.trust-image{
    grid-column:2;
    grid-row:1 / span 3;
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:var(--shadow);
}
.trust-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1.2s;
}
.trust-image:hover img{
    transform:scale(1.08);
}
.trust-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(7,27,77,.08),
        rgba(7,27,77,.25)
    );
}
.trust-grid>.trust-card:nth-child(3){
    grid-column:1;
    grid-row:2;
}
.trust-grid>.trust-card:nth-child(4){
    grid-column:1;
    grid-row:3;
}
.trust-wide{
    display:none;
}
.trust-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
    right:-70px;
    top:-70px;
    transition:.4s;
}
.trust-card:hover::after{
    transform:scale(1.15);
}
@media(max-width:991px){
    .sl-trust{
        padding:100px 0;
    }
    .sl-trust .sl-section-title{
        margin-bottom:55px;
    }
    .sl-trust .sl-section-title h2{
        font-size:42px;
    }
    .trust-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }
    .trust-large,
    .trust-image,
    .trust-grid>.trust-card:nth-child(3),
    .trust-grid>.trust-card:nth-child(4),
    .trust-wide{
        grid-column:auto;
        grid-row:auto;
    }
    .trust-image{
        height:520px;
    }
    .trust-card{
        min-height:260px;
    }
    .trust-card h3{
        font-size:58px;
    }
}
@media(max-width:576px){
    .sl-trust{
        padding:80px 0;
    }
    .sl-trust .sl-section-title{
        margin-bottom:40px;
    }
    .sl-trust .sl-section-title h2{
        font-size:30px;
        line-height:1.25;
    }
    .sl-trust .sl-section-title p{
        font-size:16px;
    }
    .trust-grid{
        gap:18px;
    }
    .trust-image{
        height:340px;
        border-radius:20px;
    }
    .trust-card{
        padding:28px;
        border-radius:20px;
        min-height:220px;
    }
    .trust-card h3{
        font-size:42px;
    }
    .trust-card p{
        font-size:15px;
        line-height:1.7;
    }
    .trust-label{
        font-size:12px;
        padding:7px 14px;
        margin-bottom:16px;
    }
}

.sl-testimonials{
    padding:40px 0;
    background:var(--bg);
}
.sl-testimonials .sl-section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}
.sl-testimonials .sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
}
.sl-testimonials .sl-section-title h2{
    margin:22px 0 18px;
    font-size:54px;
    color:var(--primary);
    line-height:1.12;
}
.sl-testimonials .sl-section-title p{
    max-width:650px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border-left:4px solid var(--secondary);
    box-shadow:var(--shadow);
    transition:var(--transition);
}
.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}
.testimonial-rating{
    font-size:22px;
    color:#FFC107;
    margin-bottom:24px;
    letter-spacing:2px;
}
.testimonial-card blockquote{
    font-size:18px;
    line-height:1.9;
    color:var(--text);
    margin:0 0 35px;
    font-style:normal;
}
.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
}
.author-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    transition:var(--transition);
}
.testimonial-card:hover .author-avatar{
    transform:scale(1.08);
}
.author-info h4{
    margin:0 0 6px;
    color:var(--primary);
    font-size:20px;
}
.author-info span{
    color:var(--muted);
    font-size:15px;
}
.testimonial-footer{
    margin-top:60px;
    text-align:center;
}
.testimonial-footer p{
    font-size:18px;
    color:var(--muted);
    margin-bottom:24px;
}
.testimonial-footer strong{
    color:var(--primary);
}
@media(max-width:991px){
    .sl-testimonials{
        padding:100px 0;
    }
    .testimonial-grid{
        grid-template-columns:1fr;
    }
    .sl-testimonials .sl-section-title h2{
        font-size:42px;
    }
}
@media(max-width:576px){
    .sl-testimonials{
        padding:80px 0;
    }
    .testimonial-card{
        padding:28px;
        border-radius:20px;
    }
    .testimonial-card blockquote{
        font-size:16px;
    }
    .author-avatar{
        width:52px;
        height:52px;
        font-size:16px;
    }
    .author-info h4{
        font-size:18px;
    }
    .sl-testimonials .sl-section-title h2{
        font-size:30px;
    }
    .sl-testimonials .sl-section-title p{
        font-size:16px;
    }
}

.sl-manifesto{
    padding:40px 0;
    background:#fff;
}
.sl-manifesto .sl-section-title{
    max-width:900px;
    margin:0 auto 100px;
    text-align:center;
}
.sl-manifesto .sl-section-title span{
    display:inline-block;
    margin-bottom:18px;
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
}
.sl-manifesto .sl-section-title h2{
    font-size:62px;
    line-height:1.12;
    font-weight:800;
    color:var(--primary);
    margin:0;
}
.manifesto{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:80px;
    align-items:start;
}
.manifesto-side{
    position:sticky;
    top:140px;
}
.manifesto-side span{
    display:block;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}
.manifesto-side span::after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    margin-top:20px;
    background:var(--secondary);
}
.manifesto-content{
    display:flex;
    flex-direction:column;
}
.manifesto-item{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:60px 0;
    border-top:1px solid var(--border);
    position:relative;
    transition:.4s ease;
}
.manifesto-item:last-child{
    border-bottom:1px solid var(--border);
}
.manifesto-item::before{
    content:"";
    position:absolute;
    left:0;
    top:-1px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.45s ease;
}
.manifesto-item:hover::before{
    width:100%;
}
.manifesto-title h3{
    margin:0;
    font-size:64px;
    line-height:.95;
    font-weight:800;
    color:var(--primary);
    transition:.35s ease;
    letter-spacing:-2px;
}
.manifesto-item:hover .manifesto-title h3{
    transform:translateX(12px);
    color:var(--secondary);
}
.manifesto-desc{
    display:flex;
    align-items:center;
}
.manifesto-desc p{
    margin:0;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
    transition:.35s;
}
.manifesto-item:hover .manifesto-desc p{
    color:var(--text);
}
.manifesto-item{
    opacity:.45;
    transition:.5s ease;
}
.manifesto-item.active{
    opacity:1;
}
.manifesto-item.active .manifesto-title h3{
    color:var(--secondary);
    transform:translateX(12px);
}
.manifesto-item.active::before{
    width:100%;
}
.manifesto-item.active .manifesto-desc p{
    color:var(--text);
}
@media(max-width:991px){
    .sl-manifesto{
        padding:100px 0;
    }
    .sl-manifesto .sl-section-title{
        margin-bottom:70px;
    }
    .sl-manifesto .sl-section-title h2{
        font-size:46px;
    }
    .manifesto{
        grid-template-columns:1fr;
        gap:40px;
    }
    .manifesto-side{
        position:relative;
        top:auto;
    }
    .manifesto-side span::after{
        margin-top:14px;
    }
    .manifesto-item{
        grid-template-columns:1fr;
        gap:30px;
        padding:45px 0;
    }
    .manifesto-title h3{
        font-size:50px;
    }
}
@media(max-width:576px){
    .sl-manifesto{
        padding:80px 0;
    }
    .sl-manifesto .sl-section-title{
        margin-bottom:45px;
    }
    .sl-manifesto .sl-section-title h2{
        font-size:32px;
        line-height:1.25;
    }
    .manifesto{
        gap:25px;
    }
    .manifesto-item{
        padding:35px 0;
        gap:18px;
    }
    .manifesto-title h3{
        font-size:36px;
        letter-spacing:-1px;
    }
    .manifesto-desc p{
        font-size:15px;
        line-height:1.8;
    }
    .manifesto-side span{
        font-size:12px;
    }
}

.sl-final-cta{
    position:relative;
    overflow:hidden;
    min-height:900px;
    display:flex;
    align-items:center;
    color:#fff;
}
.sl-final-bg{
    position:absolute;
    inset:0;
    z-index:1;
}
.sl-final-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:slZoom 18s linear infinite alternate;
}
@keyframes slZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}
.sl-final-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
        linear-gradient(
            90deg,
            rgba(7,27,77,.92) 0%,
            rgba(7,27,77,.82) 40%,
            rgba(7,27,77,.65) 100%
        );
}
.sl-final-cta .container{
    position:relative;
    z-index:3;
}
.sl-final-content{
    max-width:680px;
}
.sl-final-content span{
    display:inline-block;
    color:rgba(255,255,255,.8);
    letter-spacing:.18em;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:20px;
}
.sl-final-content h2{
    font-size:72px;
    line-height:1.05;
    margin-bottom:30px;
    font-weight:800;
    color:#fff;
}
.sl-final-content p{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.82);
    margin-bottom:45px;
}
.sl-final-buttons{
    display:flex;
    gap:20px;
    margin-bottom:70px;
    flex-wrap:wrap;
}
.outline-light-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 38px;
    border:2px solid rgba(255,255,255,.5);
    border-radius:50px;
    color:#fff;
    font-weight:600;
    transition:.35s;
}
.outline-light-btn:hover{
    background:#fff;
    color:var(--primary);
}
.sl-final-trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    padding-top:40px;
    border-top:1px solid rgba(255,255,255,.2);
}
.sl-final-trust li{
    list-style:none;
}
.sl-final-trust strong{
    display:block;
    font-size:46px;
    line-height:1;
    margin-bottom:12px;
    color:#fff;
}
.sl-final-trust{
    color:rgba(255,255,255,.75);
    font-size:15px;
    letter-spacing:.05em;
}
@media(max-width:991px){
    .sl-final-cta{
        min-height:760px;
        padding:120px 0;
    }
    .sl-final-content{
        max-width:100%;
    }
    .sl-final-content h2{
        font-size:52px;
    }
    .sl-final-content p{
        font-size:18px;
    }
    .sl-final-trust{
        grid-template-columns:repeat(3,1fr);
        gap:25px;
    }
    .sl-final-trust strong{
        font-size:36px;
    }
}
@media(max-width:576px){
    .sl-final-cta{
        padding:90px 0;
        min-height:auto;
    }
    .sl-final-overlay{
        background:rgba(7,27,77,.90);
    }
    .sl-final-content h2{
        font-size:36px;
    }
    .sl-final-content p{
        font-size:16px;
        margin-bottom:35px;
    }
    .sl-final-buttons{
        flex-direction:column;
        margin-bottom:50px;
    }
    .sl-final-buttons a{
        width:100%;
    }
    .sl-final-trust{
        grid-template-columns:1fr;
        gap:28px;
    }
    .sl-final-trust strong{
        font-size:34px;
    }
}

.sl-footer{
    background:#fff;
    padding:100px 0 40px;
    border-top:1px solid var(--border);
}
.footer-brand{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}
.footer-logo{
    display:inline-block;
    margin-bottom:30px;
}
.footer-logo img{
    height:100px;
    width:auto;
}
.footer-brand p{
    font-size:20px;
    line-height:1.9;
    color:var(--muted);
    max-width:620px;
    margin:auto;
}
.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1.2fr;
    gap:60px;
    padding:70px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}
.footer-column h4{
    margin:0 0 28px;
    color:var(--primary);
    font-size:20px;
    font-weight:700;
}
.footer-column ul{
    list-style:none;
    margin:0;
    padding:0;
}
.footer-column li{
    margin-bottom:18px;
    color:var(--muted);
    font-size:16px;
    line-height:1.6;
}
.footer-column a{
    color:inherit;
    transition:.35s;
}
.footer-column a:hover{
    color:var(--secondary);
    padding-left:6px;
}
.footer-social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    padding:45px 0;
    border-bottom:1px solid var(--border);
}
.footer-social a{
    position:relative;
    color:var(--primary);
    font-size:16px;
    font-weight:600;
    transition:.35s;
}
.footer-social a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.35s;
}
.footer-social a:hover{
    color:var(--secondary);
}
.footer-social a:hover::after{
    width:100%;
}
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:35px;
}
.footer-bottom p{
    margin:0;
    font-size:15px;
    color:var(--muted);
}
.footer-bottom a{
    color:var(--secondary);
    font-weight:600;
}
.footer-bottom a:hover{
    text-decoration:underline;
}
@media(max-width:991px){
    .sl-footer{
        padding:90px 0 35px;
    }
    .footer-brand{
        margin-bottom:60px;
    }
    .footer-brand p{
        font-size:18px;
    }
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:45px;
        padding:50px 0;
    }
    .footer-social{
        gap:30px;
        flex-wrap:wrap;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}
@media(max-width:576px){
    .sl-footer{
        padding:70px 0 30px;
    }
    .footer-brand{
        margin-bottom:45px;
    }
    .footer-logo img{
        height:42px;
    }
    .footer-brand p{
        font-size:16px;
        line-height:1.8;
    }
    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        padding:40px 0;
    }
    .footer-column h4{
        margin-bottom:18px;
        font-size:18px;
    }
    .footer-column li{
        margin-bottom:12px;
        font-size:15px;
    }
    .footer-social{
        flex-direction:column;
        gap:18px;
        padding:35px 0;
    }
    .footer-bottom{
        padding-top:25px;
    }
    .footer-bottom p{
        font-size:14px;
    }
}

.property-hero{
    padding:50px 0px;
    background:
        radial-gradient(circle at top left,
        rgba(25,184,255,.08),
        transparent 40%),
        radial-gradient(circle at bottom right,
        rgba(14,91,255,.08),
        transparent 45%),
        #F8FBFE;
    position:relative;
    overflow:hidden;
}
.property-breadcrumb{
    display:flex;
    gap:12px;
    margin-bottom:30px;
    font-size:14px;
    color:#64748B;
}
.property-breadcrumb a{
    color:#64748B;
}
.property-hero-content{
    max-width:780px;
}
.property-hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.08;
    color:var(--primary);
    margin-bottom:20px;
}
.property-hero p{
    font-size:18px;
    color:var(--muted);
    line-height:1.8;
    max-width:700px;
}
.hero-search{
    margin-top:45px;
    background:#fff;
    border-radius:70px;
    display:flex;
    align-items:center;
    padding:10px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.hero-search i{
    width:60px;
    text-align:center;
    color:#94A3B8;
}
.hero-search input{
    flex:1;
    border:none;
    outline:none;
    font-size:16px;
    background:none;
}
.hero-search button{
    height:58px;
    padding:0 32px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#19B8FF,#0E5BFF);
    color:#fff;
    font-weight:700;
}

.property-filter-bar{
    position:sticky;
    top:75px;
    z-index:90;
    background:#fff;
    border-top:1px solid rgba(0,0,0,.04);
    border-bottom:1px solid rgba(0,0,0,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.filter-wrapper{
    display:grid;
    grid-template-columns:
        repeat(6,1fr)
        68px;
    gap:18px;
    padding:26px 0;
}
.filter-select{
    background:#F7FAFD;
    border-radius:18px;
    padding:14px 18px;
    transition:.3s;
}
.filter-select:hover{
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.filter-select label{
    display:block;
    font-size:12px;
    font-weight:700;
    color:#94A3B8;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.filter-select select, .filter-select input{
    width:100%;
    border:none;
    background:none;
    outline:none;
    font-size:15px;
    font-weight:600;
    color:var(--primary);
    cursor:pointer;
}
.filter-search-btn{
    border:none;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #19B8FF,
        #0E5BFF
    );
    color:#fff;
    font-size:22px;
    cursor:pointer;
    transition:.35s;
}
.filter-search-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(14,91,255,.25);
}
.quick-filters{
    display:flex;
    gap:12px;
    overflow:auto;
    padding-bottom:22px;
    scrollbar-width:none;
}
.quick-filters::-webkit-scrollbar{
    display:none;
}
.quick-filters button{
    flex:none;
    padding:12px 22px;
    border-radius:50px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    font-size:14px;
    font-weight:600;
    color:#64748B;
    cursor:pointer;
    transition:.35s;
}
.quick-filters button:hover{
    border-color:var(--secondary);
    color:var(--secondary);
}
.quick-filters button.active{
    background:linear-gradient(
        135deg,
        #19B8FF,
        #0E5BFF
    );
    color:#fff;
    border-color:transparent;
}
@media(max-width:1200px){
    .filter-wrapper{
        grid-template-columns:repeat(3,1fr);
    }
    .filter-search-btn{
        height:58px;
        grid-column:span 3;
    }
}
@media(max-width:768px){
    .property-filter-bar{
        top:68px;
    }
    .filter-wrapper{
        display:flex;
        overflow-x:auto;
        gap:14px;
        padding:20px 0;
        scrollbar-width:none;
    }
    .filter-wrapper::-webkit-scrollbar{
        display:none;
    }
    .filter-select{
        min-width:180px;
    }
    .filter-search-btn{
        min-width:60px;
        height:60px;
        flex:none;
    }
    .quick-filters{
        padding-bottom:18px;
    }
    .quick-filters button{
        padding:10px 18px;
        font-size:13px;
    }
}

.property-results-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:30px 0;
    border-bottom:1px solid var(--border);
    margin-bottom:40px;
}
.results-left{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.results-count{
    font-size:18px;
    color:var(--muted);
}
.results-count strong{
    color:var(--primary);
    font-weight:800;
}
.results-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.results-tags span{
    padding:8px 18px;
    border-radius:50px;
    background:#F4F8FD;
    border:1px solid var(--border);
    font-size:13px;
    font-weight:700;
    color:var(--secondary);
}
.results-right{
    display:flex;
    align-items:center;
    gap:20px;
}
.view-toggle{
    display:flex;
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}
.view-toggle button{
    width:52px;
    height:52px;
    border:none;
    background:#fff;
    cursor:pointer;
    transition:.35s;
}
.view-toggle button i{
    font-size:18px;
    color:#94A3B8;
}
.view-toggle button.active{
    background:var(--secondary);
}
.view-toggle button.active i{
    color:#fff;
}
.view-toggle button:hover{
    background:#F4F8FD;
}
.sort-box{
    display:flex;
    align-items:center;
    gap:12px;
}
.sort-box label{
    font-size:14px;
    font-weight:700;
    color:var(--primary);
}
.sort-box select{
    height:52px;
    padding:0 18px;
    border-radius:14px;
    border:1px solid var(--border);
    background:#fff;
    font-weight:600;
    min-width:220px;
}
@media(max-width:991px){
    .property-results-toolbar{
        flex-direction:column;
        align-items:flex-start;
    }
    .results-right{
        width:100%;
        justify-content:space-between;
    }
    .sort-box{
        flex:1;
        justify-content:flex-end;
    }
    .sort-box select{
        width:100%;
        max-width:220px;
    }
}
@media(max-width:576px){
    .results-tags{
        display:none;
    }
    .results-right{
        width:100%;
    }
    .view-toggle button{
        width:46px;
        height:46px;
    }
    .sort-box{
        flex:1;
    }
    .sort-box select{
        min-width:auto;
        width:100%;
        height:46px;
    }
}

.properties-section{
    margin-bottom: 50px;
}
.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.property-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.35s;
    box-shadow:0 12px 40px rgba(0,0,0,.05);
}
.property-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.12);
}
.property-image{
    position:relative;
    display:block;
    height:280px;
    overflow:hidden;
}
.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}
.property-card:hover img{
    transform:scale(1.08);
}
.property-status{
    position:absolute;
    left:20px;
    top:20px;
    padding:8px 16px;
    border-radius:50px;
    background:#16A34A;
    color:#fff;
    font-size:12px;
    font-weight:700;
    z-index:3;
}
.wishlist-btn{
    position:absolute;
    right:20px;
    top:20px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    cursor:pointer;
    transition:.35s;
}
.wishlist-btn:hover{
    background:#fff;
    transform:scale(1.08);
}
.property-price{
    position:absolute;
    left:20px;
    bottom:20px;
    padding:12px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.95);
    font-size:22px;
    font-weight:800;
    color:var(--secondary);
}
.property-body{
    padding:28px;
}
.property-category{
    display:inline-flex;
    padding:7px 14px;
    background:#EEF7FF;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:18px;
}
.property-body h3{
    font-size:26px;
    margin-bottom:12px;
    line-height:1.2;
}
.property-body h3 a{
    color:var(--primary);
}
.property-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
    margin-bottom:22px;
}
.property-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:22px;
}
.property-features span{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:600;
    color:var(--text);
}
.property-features i{
    color:var(--secondary);
}
.property-body p{
    line-height:1.8;
    color:var(--muted);
    margin-bottom:25px;
}
.property-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:22px;
    border-top:1px solid var(--border);
}
.builder{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
}
.builder img{
    width:36px;
    height:36px;
    border-radius:50%;
}
.property-btn{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color: white;
    transition:.3s;
}
.property-btn:hover{
    gap:16px;
}
@media(max-width:1200px){
    .property-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .property-grid{
        grid-template-columns:1fr;
    }
    .property-image{
        height:240px;
    }
    .property-body{
        padding:22px;
    }
    .property-body h3{
        font-size:22px;
    }
}

.listing-pagination{
    margin-top:70px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:28px;
}
.pagination-results{
    color:var(--muted);
    font-size:15px;
}
.pagination-results strong{
    color:var(--primary);
}
.property-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}
.pagination-number,
.pagination-arrow{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}
.pagination-number:hover,
.pagination-arrow:hover{
    background:var(--secondary);
    color:#fff;
    border-color:var(--secondary);
    transform:translateY(-4px);
}
.pagination-number.active{
    background:var(--secondary);
    border-color:var(--secondary);
    color:#fff;
    box-shadow:0 15px 35px rgba(14,91,255,.25);
}
.pagination-arrow.disabled{
    opacity:.35;
    pointer-events:none;
}
.pagination-dots{
    color:var(--muted);
    padding:0 8px;
    font-size:18px;
}
@media(max-width:768px){
    .listing-pagination{
        gap:22px;
    }
    .pagination-number,
    .pagination-arrow{
        width:40px;
        height:40px;
        font-size:14px;
    }
}

.pagination-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    margin-top:10px;
}
.pagination-nav{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border:1px solid var(--border);
    border-radius:14px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
    transition:.35s ease;
}
.pagination-nav i{
    transition:.35s ease;
}
.pagination-prev:hover{
    transform:translateX(-4px);
    border-color:var(--secondary);
    color:var(--secondary);
    box-shadow:0 15px 35px rgba(14,91,255,.08);
}
.pagination-next:hover{
    transform:translateX(4px);
    border-color:var(--secondary);
    color:var(--secondary);
    box-shadow:0 15px 35px rgba(14,91,255,.08);
}
.pagination-prev:hover i{
    transform:translateX(-4px);
}
.pagination-next:hover i{
    transform:translateX(4px);
}
@media(max-width:576px){
    .pagination-nav span{
        display:none;
    }
    .pagination-nav{
        width:48px;
        height:48px;
        justify-content:center;
        padding:0;
        border-radius:50%;
    }
}

.sl-localities{
    padding:50px 0;
    background:#fff;
}
.popular-localities{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:60px 0;
}
.locality-pill{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:24px 28px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.04);
    transition:.35s ease;
}
.locality-pill strong{
    display:block;
    color:var(--primary);
    font-size:22px;
    margin-bottom:6px;
}
.locality-pill small{
    color:var(--muted);
}
.locality-pill i{
    color:var(--secondary);
    transition:.35s;
}
.locality-pill:hover{
    transform:translateY(-6px);
    border-color:var(--secondary);
    box-shadow:0 20px 45px rgba(14,91,255,.12);
}
.locality-pill:hover i{
    transform:translateX(8px);
}
.alphabet-filter{
    /* display:flex; */
    display:none;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:60px;
}
.alphabet-filter button{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    font-weight:700;
    transition:.3s;
}
.alphabet-filter button.active,
.alphabet-filter button:hover{
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
    border:none;
}
.locality-directory{
    /* display:grid; */
    display:none;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}
.directory-group h3{
    font-size:40px;
    margin-bottom:25px;
    color:var(--secondary);
}
.directory-links{
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
}
.directory-links a{
    display:grid;
    grid-template-columns:1fr auto auto;
    gap:20px;
    align-items:center;
    padding:20px 24px;
    border-bottom:1px solid var(--border);
    transition:.3s;
}
.directory-links a:last-child{
    border-bottom:none;
}
.directory-links span{
    font-weight:600;
    color:var(--primary);
}
.directory-links small{
    color:var(--muted);
    font-weight:600;
}
.directory-links i{
    color:var(--secondary);
    opacity:0;
    transform:translateX(-8px);
    transition:.3s;
}
.directory-links a:hover{
    background:#F8FBFF;
}
.directory-links a:hover i{
    opacity:1;
    transform:translateX(0);
}
.directory-footer{
    text-align:center;
    margin-top:60px;
}
.view-all-localities{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:60px;
    background:linear-gradient(135deg,var(--accent),var(--secondary));
    color:#fff;
    font-weight:700;
    transition:.35s;
}
.view-all-localities:hover{
    transform:translateY(-5px);
}
@media(max-width:992px){
    .popular-localities{
        grid-template-columns:repeat(2,1fr);
    }
    .locality-directory{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .popular-localities{
        grid-template-columns:1fr;
    }
    .directory-group h3{
        font-size:30px;
    }
    .directory-links a{
        padding:18px;
    }
}

.sl-faq{
    padding:50px 0;
    background:#fff;
}
.faq-wrapper{
    display:grid;
    grid-template-columns:42% 58%;
    gap:70px;
    align-items:center;
}
.faq-image{
    position:relative;
}
.faq-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:28px;
    display:block;
}
.faq-image-card{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.faq-image-card span{
    display:inline-block;
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:12px;
}
.faq-image-card h3{
    font-size:30px;
    margin-bottom:14px;
    color:var(--primary);
}
.faq-image-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:25px;
}
.faq-content{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.pro-faq-item{
    border-bottom:1px solid #E8EEF5;
    padding-bottom:18px;
}
.pro-faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    cursor:pointer;
    padding:12px 0;
    font-size:20px;
    font-weight:700;
    color:var(--primary);
    text-align:left;
}
.pro-faq-question i{
    color:var(--secondary);
    font-size:18px;
    transition:.3s;
}
.pro-faq-answer{
    display:none;
    padding:5px 0 12px;
}
.pro-faq-answer p{
    color:var(--muted);
    line-height:1.9;
    font-size:16px;
    max-width:90%;
}
.pro-faq-item.active .pro-faq-answer{
    display:block;
}
.pro-faq-item.active .pro-faq-question i{
    transform:rotate(180deg);
}
@media(max-width:991px){
    .faq-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }
    .faq-image img{
        height:520px;
    }
}
@media(max-width:576px){
    .sl-faq{
        padding:80px 0;
    }
    .faq-image img{
        height:420px;
    }
    .faq-image-card{
        position:relative;
        left:0;
        right:0;
        bottom:auto;
        margin-top:-80px;
        width:90%;
        margin-left:auto;
        margin-right:auto;
    }
    .pro-faq-question{
        font-size:17px;
    }
    .pro-faq-answer p{
        max-width:100%;
    }
}

.sl-section-title{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}
.sl-section-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.sl-section-title h2{
    margin:20px 0 18px;
    font-size:54px;
    line-height:1.12;
    color:var(--primary);
    font-weight:800;
}
.sl-section-title p{
    max-width:680px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}
@media(max-width:991px){
    .sl-section-title{
        margin-bottom:55px;
    }
    .sl-section-title h2{
        font-size:42px;
    }
    .sl-section-title p{
        font-size:17px;
    }
}
@media(max-width:576px){
    .sl-section-title{
        margin-bottom:40px;
    }
    .sl-section-title span{
        padding:8px 18px;
        font-size:12px;
    }
    .sl-section-title h2{
        font-size:32px;
        line-height:1.25;
    }
    .sl-section-title p{
        font-size:15px;
        line-height:1.8;
    }
}

.property-hero{
    padding:50px 0px;
    background:#fff;
}
.property-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:35px;
    font-size:14px;
    color:var(--muted);
}
.property-breadcrumb a{
    color:var(--muted);
}
.property-breadcrumb span{
    color:var(--secondary);
    font-weight:600;
}
.property-hero-grid{
    display:grid;
    grid-template-columns:64% 36%;
    gap:40px;
    align-items:start;
}
.property-gallery{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.gallery-main{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}
.gallery-main img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;
}
.gallery-badges{
    position:absolute;
    top:20px;
    left:20px;
    display:flex;
    gap:10px;
}
.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 16px;
    border-radius:40px;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.9);
    font-size:13px;
    font-weight:700;
}
.badge.featured{
    color:#fff;
    background:linear-gradient(135deg,var(--secondary),var(--accent));
}
.badge.verified{
    color:#0E5BFF;
}
.gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}
.gallery-thumbs img, .gallery-thumbs video{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    transition:.35s;
    position:relative;
    z-index:1;
}
.gallery-thumbs img:hover, .gallery-thumbs video:hover{
    transform:translateY(-4px);
}
.property-summary{
    position:sticky;
    top:110px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:35px;
    box-shadow:var(--shadow);
}
.property-summary .property-top-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}
.property-summary .property-category, .property-summary .property-status{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    line-height:1;
}
.property-summary .property-category{
    margin-top: 15px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
}
.property-summary .property-status{
    background:#ECFDF3;
    color:#16A34A;
}
.property-summary h1{
    margin:22px 0;
    font-size:38px;
    line-height:1.2;
    color:var(--primary);
}
.property-summary .property-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
    margin-bottom:25px;
}
.property-summary .property-price{
    font-size:44px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:18px;
}
.property-actions{
    display:flex;
    flex-direction:column;
    gap:15px;
}
.property-actions a{
    width:100%;
}
.property-icons{
    display:flex;
    gap:12px;
    margin-top:28px;
}
.property-icons button{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#F8FAFC;
    transition:.35s;
}
.property-icons button:hover{
    background:var(--secondary);
    color:#fff;
}
.gallery-expand{
    position:absolute;
    right:20px;
    top:20px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(15px);
    z-index:999;
    cursor:pointer;
    pointer-events:auto;
    transition:.3s;
}
.gallery-expand:hover{
    transform:scale(1.08);
}
.gallery-main img,
.gallery-main video{
    width:100%;
    display:block;
    border-radius:24px;
    aspect-ratio:16/10;
    object-fit:cover;
}
.gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:18px;
}
.gallery-thumb{
    cursor:pointer;
    border-radius:16px;
    overflow:hidden;
    transition:.35s;
    border:3px solid transparent;
}
.gallery-thumb.active{
    border-color:var(--secondary);
}
.gallery-thumb:hover{
    transform:translateY(-3px);
}
.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}
.gallery-lightbox.show{
    opacity:1;
    visibility:visible;
}
.gallery-lightbox img,
.gallery-lightbox video{
    max-width:92vw;
    max-height:90vh;
    border-radius:18px;
}
.gallery-close{
    position:absolute;
    right:35px;
    top:35px;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    font-size:22px;
}
@media(max-width:991px){
    .property-hero-grid{
        grid-template-columns:1fr;
    }
    .property-summary{
        position:relative;
        top:auto;
    }
    .gallery-thumbs{
        grid-template-columns:repeat(2,1fr);
    }
}

.property-highlights{
    padding:40px 0;
    background:#fff;
}
.highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.highlight-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:24px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}
.highlight-card:hover{
    transform:translateY(-6px);
    border-color:var(--secondary);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}
.highlight-card i{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:22px;
    flex-shrink:0;
}
.highlight-card strong{
    display:block;
    font-size:18px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:4px;
}
.highlight-card span{
    display:block;
    font-size:13px;
    color:var(--muted);
}
@media(max-width:1200px){
    .highlights-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .highlights-grid{
        grid-template-columns:1fr;
    }
    .highlight-card{
        padding:20px;
    }
    .highlight-card i{
        width:50px;
        height:50px;
        font-size:18px;
    }
    .highlight-card strong{
        font-size:17px;
    }
}

.property-description{
    padding:50px 0;
    background:#fff;
}
.description-grid{
    display:grid;
    grid-template-columns:1.8fr .9fr;
    gap:70px;
    align-items:start;
}
.description-intro{
    font-size:21px;
    line-height:1.9;
    color:var(--primary);
    font-weight:500;
    margin-bottom:30px;
}
.description-left p{
    color:var(--muted);
    line-height:2;
    margin-bottom:22px;
}
.description-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:45px;
}
.feature-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:24px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    transition:.35s;
}
.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}
.feature-box i{
    width:56px;
    height:56px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:22px;
    flex-shrink:0;
}
.feature-box h4{
    margin-bottom:8px;
    color:var(--primary);
    font-size:18px;
    font-weight:700;
}
.feature-box p{
    margin:0;
    line-height:1.7;
    font-size:15px;
}
.description-card{
    position:sticky;
    top:110px;
    padding:35px;
    border-radius:28px;
    background:#F8FBFF;
    border:1px solid var(--border);
}
.description-card h3{
    margin-bottom:30px;
    color:var(--primary);
    font-size:28px;
    font-weight:800;
}
.description-card ul{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.description-card li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    color:var(--text);
    line-height:1.7;
    font-weight:500;
}
.description-card li i{
    color:#16A34A;
    margin-top:4px;
    font-size:18px;
}
@media(max-width:991px){
    .description-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .description-card{
        position:relative;
        top:auto;
    }
    .description-features{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .property-description{
        padding:70px 0;
    }
    .description-intro{
        font-size:18px;
    }
    .description-card{
        padding:28px;
    }
    .description-card h3{
        font-size:24px;
    }
}

.property-floorplans{
    padding:50px 0;
    background:#F8FBFF;
}
.floorplan-tabs{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:45px;
}
.floorplan-tab{
    padding:14px 26px;
    border:none;
    border-radius:50px;
    background:#fff;
    border:1px solid var(--border);
    cursor:pointer;
    font-weight:600;
    transition:.35s;
}
.floorplan-tab.active{
    background:var(--secondary);
    color:#fff;
    border-color:var(--secondary);
}
.floorplan-wrapper{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
}
.floorplan-panel{
    display:none;
    grid-template-columns:65% 35%;
}
.floorplan-panel.active{
    display:grid;
}
.floorplan-image{
    padding:40px;
    background:#FAFCFE;
}
.floorplan-image img{
    width:100%;
    border-radius:18px;
}
.floorplan-info{
    padding:45px;
    border-left:1px solid var(--border);
}
.plan-label{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
}
.floorplan-info h3{
    margin:25px 0 35px;
    font-size:34px;
    color:var(--primary);
}
.floorplan-info ul{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:40px;
}
.floorplan-info li{
    display:flex;
    justify-content:space-between;
    padding-bottom:18px;
    border-bottom:1px solid var(--border);
}
.floorplan-info strong{
    color:var(--primary);
}
.floorplan-info span{
    color:var(--muted);
}
@media(max-width:991px){
    .floorplan-panel{
        grid-template-columns:1fr;
    }
    .floorplan-info{
        border-left:none;
        border-top:1px solid var(--border);
    }
}

.property-amenities{
    padding:50px 0;
    background:#F8FBFF;
}
.amenities-grid{
    display:grid;
    gap:60px;
    align-items:center;
}
.amenities-image{
    position:relative;
}
.amenities-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:var(--shadow);
}
.amenity-floating{
    position:absolute;
    left:30px;
    bottom:30px;
    padding:24px 28px;
    border-radius:22px;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}
.amenity-floating h3{
    margin-bottom:6px;
    font-size:40px;
    color:var(--secondary);
    font-weight:800;
}
.amenity-floating span{
    color:var(--muted);
    font-size:15px;
}
.amenity-group{
    margin-bottom:40px;
}
.amenity-group:last-child{
    margin-bottom:0;
}
.amenity-group h4{
    margin-bottom:18px;
    font-size:24px;
    color:var(--primary);
    font-weight:800;
}
.amenity-items{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}
.amenity-item{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 20px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    transition:.35s;
}
.amenity-item:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-color:rgba(14,91,255,.18);
}
.amenity-item i{
    width:52px;
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:22px;
    flex-shrink:0;
}
.amenity-item span{
    color:var(--text);
    font-weight:600;
    line-height:1.5;
}
@media(max-width:991px){
    .property-amenities{
        padding:80px 0;
    }
    .amenity-items{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .amenity-group h4{
        font-size:22px;
    }
    .amenity-floating{
        left:18px;
        right:18px;
        bottom:18px;
        padding:18px;
    }
    .amenity-floating h3{
        font-size:30px;
    }
}

.property-location{
    padding:50px 0;
    background:#fff;
}
.location-grid{
    display:grid;
    grid-template-columns:55% 45%;
    gap:60px;
    align-items:center;
}
.location-map{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    box-shadow:var(--shadow);
}
.location-map img{
    width:100%;
    display:block;
}
.map-overlay{
    position:absolute;
    left:30px;
    bottom:30px;
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 26px;
    border-radius:20px;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
}
.map-overlay i{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:24px;
}
.map-overlay h4{
    margin-bottom:4px;
    color:var(--primary);
}
.map-overlay span{
    color:var(--muted);
}
.location-content{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.connectivity-card{
    display:grid;
    grid-template-columns:60px 1fr auto;
    align-items:center;
    gap:20px;
    padding:22px 24px;
    border:1px solid var(--border);
    border-radius:20px;
    transition:.35s;
}
.connectivity-card:hover{
    transform:translateX(8px);
    box-shadow:var(--shadow);
}
.connectivity-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(14,91,255,.08);
}
.connectivity-icon i{
    color:var(--secondary);
    font-size:24px;
}
.connectivity-card h4{
    margin-bottom:6px;
    color:var(--primary);
    font-size:18px;
}
.connectivity-card p{
    color:var(--muted);
}
.connectivity-card strong{
    color:var(--secondary);
    font-size:18px;
    font-weight:700;
}
@media(max-width:991px){
    .location-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .property-location{
        padding:70px 0;
    }
    .map-overlay{
        left:18px;
        right:18px;
        bottom:18px;
        padding:16px;
    }
    .connectivity-card{
        grid-template-columns:55px 1fr;
    }
    .connectivity-card strong{
        grid-column:2;
    }
}

.property-invest{
    padding:50px 0;
    background:#fff;
}
.invest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.invest-card{
    position:relative;
    padding:40px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    transition:.35s ease;
    overflow:hidden;
}
.invest-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.invest-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.invest-card:hover::before{
    transform:scaleX(1);
}
.invest-number{
    width:62px;
    height:62px;
    border-radius:18px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:800;
    margin-bottom:30px;
}
.invest-card h3{
    margin-bottom:18px;
    font-size:26px;
    color:var(--primary);
    line-height:1.3;
}
.invest-card p{
    color:var(--muted);
    line-height:1.9;
    font-size:16px;
}
.invest-card.featured{
    background:linear-gradient(
        135deg,
        var(--primary),
        #10347e
    );
    border:none;
}
.invest-card.featured .invest-number{
    background:rgba(255,255,255,.15);
    color:#fff;
}
.invest-card.featured h3{
    color:#fff;
}
.invest-card.featured p{
    color:rgba(255,255,255,.82);
}
@media(max-width:991px){
    .invest-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .property-invest{
        padding:70px 0;
    }
    .invest-grid{
        grid-template-columns:1fr;
    }
    .invest-card{
        padding:30px;
    }
    .invest-card h3{
        font-size:22px;
    }
}

.property-related{
    padding:50px 0;
    background:#F8FBFF;
    overflow:hidden;
}
.property-related .section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:50px;
}
.property-related .section-head span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:18px;
}
.property-related .section-head h2{
    font-size:48px;
    line-height:1.15;
    color:var(--primary);
    font-weight:800;
    margin-bottom:16px;
}
.property-related .section-head p{
    max-width:650px;
    color:var(--muted);
    line-height:1.8;
}
.related-nav{
    display:flex;
    gap:14px;
    flex-shrink:0;
}
.related-nav button{
    width:54px;
    height:54px;
    border:none;
    outline:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.35s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}
.related-nav button:hover{
    background:var(--secondary);
    color:#fff;
}
.related-nav button:disabled{
    opacity:.35;
    cursor:not-allowed;
    transform:none;
}
.related-carousel{
    overflow:hidden;
    position:relative;
}
.related-track{
    display:flex;
    gap:30px;
    transition:transform .45s cubic-bezier(.4,0,.2,1);
    will-change:transform;
}
.related-track .property-card{
    flex:0 0 calc((100% - 60px)/3);
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}
.related-track .property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.property-image{
    position:relative;
    display:block;
    overflow:hidden;

}
.property-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:transform .6s ease;
}
.property-card:hover .property-image img{
    transform:scale(1.08);
}
.property-badge{
    position:absolute;
    top:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    font-size:12px;
    font-weight:700;
    color:var(--primary);
}
.property-content{
    padding:28px;
}
.property-content h3{
    font-size:24px;
    line-height:1.3;
    color:var(--primary);
    margin-bottom:14px;
}
.property-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
    margin-bottom:24px;
}
.property-location i{
    color:var(--secondary);
}
.property-features{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:26px;
}
.property-features span{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:var(--muted);
}
.property-features i{
    color:var(--secondary);
}
.property-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:22px;
    border-top:1px solid var(--border);
}
.property-bottom h4{
    font-size:30px;
    color:var(--secondary);
    font-weight:800;
}
.property-bottom a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:700;
    transition:.3s;
}
.property-bottom a:hover{
    gap:14px;
}
@media(max-width:991px){
    .property-related{
        padding:80px 0;
    }
    .property-related .section-head{
        flex-direction:column;
        align-items:flex-start;
    }
    .property-related .section-head h2{
        font-size:40px;
    }
    .related-track{
        gap:24px;
    }
    .related-track .property-card{
        flex:0 0 calc((100% - 24px)/2);
    }
}
@media(max-width:576px){
    .property-related{
        padding:70px 0;
    }
    .property-related .section-head{
        margin-bottom:35px;
    }
    .property-related .section-head h2{
        font-size:30px;
        line-height:1.25;
    }
    .property-related .section-head p{
        font-size:16px;
    }
    .related-nav{
        width:100%;
        justify-content:flex-end;
    }
    .related-track{
        gap:18px;
    }
    .related-track .property-card{
        flex:0 0 100%;
    }
    .property-image img{
        height:220px;
    }
    .property-content{
        padding:22px;
    }
    .property-content h3{
        font-size:22px;
    }
    .property-bottom h4{
        font-size:24px;
    }
}

.property-cta{
    padding:50px 0;
    background:#071B4D;
}
.cta-wrapper{
    display:grid;
    grid-template-columns:1fr 430px;
    gap:70px;
    align-items:center;
}
.cta-content span{
    display:inline-flex;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:25px;
}
.cta-content h2{
    color:#fff;
    font-size:48px;
    line-height:1.15;
    margin-bottom:25px;
}
.cta-content p{
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
    max-width:620px;
}
.cta-benefits{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
    padding:0;
}
.cta-benefits li{
    list-style:none;
    color:#fff;
    display:flex;
    align-items:center;
    gap:14px;
    font-size:16px;
}
.cta-benefits i{
    color:#19B8FF;
}
.cta-form{
    background:#fff;
    padding:35px;
    border-radius:28px;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}
.cta-form h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:25px;
}
.form-group{
    margin-bottom:16px;
}
.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:15px 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--secondary);
}
.form-group textarea{
    height:110px;
    resize:none;
}
.cta-form button{
    width:100%;
    padding:17px;
    border:none;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}
@media(max-width:991px){
    .cta-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }
    .cta-content h2{
        font-size:38px;
    }
}
@media(max-width:576px){
    .property-cta{
        padding:70px 0;
    }
    .cta-content h2{
        font-size:30px;
    }
    .cta-form{
        padding:25px;
    }
}

.about-hero{
    padding:60px 0;
    background:#fff;
}
.about-hero-grid{
    display:grid;
    grid-template-columns:48% 52%;
    gap:60px;
    align-items:center;
}
.hero-tag{
    display:inline-flex;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:25px;
}
.about-content h1{
    font-size:58px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:30px;
}
.about-content p{
    font-size:18px;
    color:var(--muted);
    line-height:1.9;
    margin-bottom:40px;
    max-width:620px;
}
.about-image{
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.about-image img{
    width:100%;
    display:block;
    aspect-ratio:5/4;
    object-fit:cover;
}
@media(max-width:991px){
    .about-hero-grid{
        grid-template-columns:1fr;
    }
    .about-content h1{
        font-size:42px;
    }
}
@media(max-width:576px){
    .about-hero{
        padding:70px 0;
    }
    .about-content h1{
        font-size:34px;
    }
    .about-content p{
        font-size:16px;
    }
}

.about-who{
    padding:50px 0;
    background:#F8FBFF;
}
.about-who-grid{
    display:grid;
    grid-template-columns:46% 54%;
    gap:70px;
    align-items:center;
}
.about-who-image{
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
}
.about-who-image img{
    width:100%;
    display:block;
    aspect-ratio:4/5;
    object-fit:cover;
}
.about-small-title{
    display:inline-flex;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:24px;
}
.about-who-content h2{
    font-size:48px;
    line-height:1.15;
    color:var(--primary);
    margin-bottom:28px;
}
.about-who-content>p{
    font-size:17px;
    line-height:1.9;
    color:var(--muted);
    margin-bottom:24px;
}
.about-features{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.about-feature{
    display:flex;
    gap:16px;
    align-items:flex-start;
}
.about-feature i{
    font-size:22px;
    color:var(--secondary);
    margin-top:3px;
}
.about-feature h4{
    margin-bottom:8px;
    color:var(--primary);
    font-size:20px;
}
.about-feature p{
    color:var(--muted);
    line-height:1.7;
    font-size:15px;
}
@media(max-width:991px){
    .about-who-grid{
        grid-template-columns:1fr;
        gap:45px;
    }
    .about-who-content h2{
        font-size:38px;
    }
}
@media(max-width:576px){
    .about-who{
        padding:80px 0;
    }
    .about-who-content h2{
        font-size:30px;
    }
    .about-features{
        grid-template-columns:1fr;
        gap:24px;
    }
}

.about-principles{
    padding:50px 0;
    background:#fff;
}
.principles-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:30px;
    margin-top:60px;
}
.principle-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:40px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}
.principle-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.principle-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.principle-card:hover::before{
    transform:scaleX(1);
}
.principle-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:28px;
}
.principle-card h3{
    margin-bottom:18px;
    font-size:28px;
    color:var(--primary);
}
.principle-card p{
    line-height:1.9;
    color:var(--muted);
}
.principle-card ul{
    margin-top:20px;
    padding-left:18px;
}
.principle-card li{
    margin-bottom:14px;
    color:var(--muted);
}
.principle-card.large{
    background:linear-gradient(
        135deg,
        var(--primary),
        #12357d
    );
    border:none;
}
.principle-card.large h3,
.principle-card.large p{
    color:#fff;
}
.principle-card.large .principle-icon{
    background:rgba(255,255,255,.12);
    color:#fff;
}
@media(max-width:991px){
    .principles-grid{
        grid-template-columns:1fr;
    }
}

.about-why{
    padding:50px 0;
    background:#F8FBFF;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}
.why-card{
    position:relative;
    padding:45px;
    border-radius:28px;
    background:#fff;
    border:1px solid var(--border);
    transition:.35s ease;
    overflow:hidden;
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}
.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:linear-gradient(
        180deg,
        var(--secondary),
        var(--accent)
    );
    transform:scaleY(0);
    transition:.35s;
    transform-origin:top;
}
.why-card:hover::before{
    transform:scaleY(1);
}
.why-number{
    display:block;
    font-size:52px;
    line-height:1;
    font-weight:800;
    color:rgba(14,91,255,.12);
    margin-bottom:25px;
}
.why-card h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:18px;
    line-height:1.3;
}
.why-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
@media(max-width:991px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .about-why{
        padding:80px 0;
    }
    .why-grid{
        grid-template-columns:1fr;
    }
    .why-card{
        padding:35px;
    }
    .why-number{
        font-size:44px;
    }
    .why-card h3{
        font-size:22px;
    }
}

.about-process{
    padding:50px 0;
    background:#fff;
}
.process-wrapper{
    position:relative;
    max-width:950px;
    margin:70px auto 0;
}
.process-line{
    position:absolute;
    left:-35px;
    top:0;
    bottom:0;
    width:2px;
    background:linear-gradient(
        180deg,
        var(--secondary),
        var(--accent)
    );
}
.process-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:55px;
}
.process-item:last-child{
    margin-bottom:0;
}
.process-number{
    width:64px;
    height:64px;
    flex-shrink:0;
    border-radius:50%;
    background:#fff;
    border:3px solid var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    color:var(--secondary);
    position:relative;
    z-index:2;
}
.process-content{
    padding:6px 0;
}
.process-content h3{
    font-size:28px;
    margin-bottom:14px;
    color:var(--primary);
}
.process-content p{
    color:var(--muted);
    line-height:1.9;
    max-width:650px;
}
@media(max-width:768px){
    .about-process{
        padding:80px 0;
    }
    .process-item{
        gap:22px;
    }
    .process-number{
        width:56px;
        height:56px;
        font-size:16px;
    }
    .process-line{
        left:28px;
    }
    .process-content h3{
        font-size:22px;
    }
}

.about-team{
    padding:50px 0;
    background:#F8FBFF;
}
.team-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:60px;
}
.team-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}
.team-card:hover{
    transform:translateY(-8px);
}
.team-image{
    overflow:hidden;
}
.team-image img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    transition:.5s;
}
.team-card:hover img{
    transform:scale(1.05);
}
.team-content{
    padding:35px;
}
.team-role{
    display:inline-flex;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}
.team-content h3{
    font-size:32px;
    color:var(--primary);
    margin-bottom:18px;
}
.team-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:25px;
}
.team-speciality{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:30px;
    padding:0;
}
.team-speciality li{
    list-style:none;
    padding:10px 16px;
    border-radius:50px;
    background:#F3F7FD;
    font-size:13px;
}
.team-actions{
    display:flex;
    gap:15px;
}
.team-btn{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    height:50px;
    border-radius:50px;
    background:var(--secondary);
    color:#fff;
    font-weight:600;
}
.team-btn.secondary{
    background:#25D366;
}
@media(max-width:991px){
    .team-grid{
        grid-template-columns:1fr;
    }
}

.about-partners{
    padding:50px 0;
    background:#fff;
}
.partner-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.partner-grid article{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:45px 35px;
    text-align:center;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}
.partner-grid article::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(14,91,255,.04),
        rgba(25,184,255,.02)
    );
    opacity:0;
    transition:.35s;
}
.partner-grid article:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:rgba(14,91,255,.2);
}
.partner-grid article:hover::before{
    opacity:1;
}
.partner-grid article>*{
    position:relative;
    z-index:2;
}
.partner-grid i{
    width:78px;
    height:78px;
    margin:0 auto 25px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:var(--secondary);
    background:rgba(14,91,255,.08);
    transition:.35s;
}
.partner-grid article:hover i{
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color:#fff;
    transform:rotate(-6deg) scale(1.08);
}
.partner-grid h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:16px;
    font-weight:700;
}
.partner-grid p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
.partner-note{
    margin-top:70px;
    text-align:center;
    padding:40px;
    border-radius:28px;
    background:linear-gradient(
        135deg,
        var(--primary),
        #12357d
    );
    color:#fff;
    overflow:hidden;
    position:relative;
}
.partner-note::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}
.partner-note::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    left:-70px;
    bottom:-70px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}
.partner-note>*{
    position:relative;
    z-index:2;
}
.partner-note h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
}
.partner-note p{
    color:rgba(255,255,255,.82);
    font-size:17px;
    max-width:760px;
    margin:auto;
    line-height:1.9;
}
@media(max-width:991px){
    .about-partners{
        padding:90px 0;
    }
    .partner-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }
}
@media(max-width:576px){
    .partner-grid{
        grid-template-columns:1fr;
    }
    .partner-grid article{
        padding:35px 28px;
    }
    .partner-grid h3{
        font-size:22px;
    }
}

.about-final-cta{
    padding:60px 0;
    background:#F8FBFF;
}
.about-cta-wrapper{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    overflow:hidden;
    border-radius:36px;
    background:#fff;
    box-shadow:var(--shadow);
}
.about-cta-image{
    overflow:hidden;
    height:100%;
}
.about-cta-image img{
    width:100%;
    height:100%;
    min-height:560px;
    object-fit:cover;
    display:block;
    transition:.6s;
}
.about-cta-wrapper:hover .about-cta-image img{
    transform:scale(1.04);
}
.about-cta-content{
    padding:70px;
}
.about-cta-content span{
    display:inline-flex;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:25px;
}
.about-cta-content h2{
    font-size:48px;
    line-height:1.15;
    color:var(--primary);
    margin-bottom:25px;
}
.about-cta-content p{
    color:var(--muted);
    font-size:17px;
    line-height:1.9;
    margin-bottom:40px;
}
.about-cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 30px;
    border:2px solid var(--secondary);
    border-radius:50px;
    color:var(--secondary);
    font-weight:600;
    transition:.35s;
}
.outline-btn:hover{
    background:var(--secondary);
    color:#fff;
}
@media(max-width:991px){
    .about-final-cta{
        padding:90px 0;
    }
    .about-cta-wrapper{
        grid-template-columns:1fr;
    }
    .about-cta-image img{
        min-height:380px;
    }
    .about-cta-content{
        padding:50px;
    }
    .about-cta-content h2{
        font-size:38px;
    }
}
@media(max-width:576px){
    .about-cta-content{
        padding:35px 25px;
    }
    .about-cta-content h2{
        font-size:30px;
    }
    .about-cta-buttons{
        flex-direction:column;
    }
    .about-cta-buttons a{
        width:100%;
    }
}

.faq-hero{
    padding:60px 0 90px;
    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #FFFFFF 100%
        );
    position:relative;
    overflow:hidden;
}
.faq-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-180px;
    top:-220px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.faq-hero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    left:-120px;
    bottom:-100px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.faq-hero-content{
    position:relative;
    z-index:2;
    max-width:820px;
    margin:auto;
    text-align:center;
}
.faq-hero .hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:25px;
}
.faq-hero h1{
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:25px;
}
.faq-hero p{
    font-size:19px;
    line-height:1.9;
    color:var(--muted);
    max-width:760px;
    margin:auto;
}
@media(max-width:991px){
    .faq-hero{
        padding:90px 0 70px;
    }
    .faq-hero h1{
        font-size:48px;
    }
    .faq-hero p{
        font-size:17px;
    }
}
@media(max-width:576px){
    .faq-hero{
        padding:70px 0 60px;
    }
    .faq-hero h1{
        font-size:36px;
    }
    .faq-hero p{
        font-size:16px;
        line-height:1.8;
    }
}

.faq-search{
    margin-top:-35px;
    position:relative;
    z-index:5;
}
.faq-search-box{
    max-width:850px;
    margin:auto;
    background:#fff;
    height:78px;
    border-radius:60px;
    display:flex;
    align-items:center;
    padding:0 30px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid rgba(14,91,255,.08);
}
.faq-search-box i{
    font-size:22px;
    color:var(--secondary);
    margin-right:18px;
}
.faq-search-box input{
    width:100%;
    border:none;
    background:none;
    outline:none;
    font-size:18px;
    color:var(--primary);
}
.faq-search-box input::placeholder{
    color:#9AA5B1;
}
@media(max-width:576px){
    .faq-search-box{
        height:64px;
        padding:0 20px;
    }
    .faq-search-box input{
        font-size:16px;
    }
}

.faq-categories{
    padding:50px 0px;
}
.faq-filter-wrapper{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}
.faq-filter{
    height:48px;
    padding:0 24px;
    border-radius:50px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--text);
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all .35s ease;
}
.faq-filter:hover{
    border-color:var(--secondary);
    color:var(--secondary);
    transform:translateY(-2px);
}
.faq-filter.active{
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color:#fff;
    border-color:transparent;
    box-shadow:0 12px 30px rgba(14,91,255,.25);
}
@media(max-width:768px){
    .faq-categories{
        padding:50px 0 25px;
    }
    .faq-filter-wrapper{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:10px;
        scrollbar-width:none;
    }
    .faq-filter-wrapper::-webkit-scrollbar{
        display:none;
    }
    .faq-filter{
        flex:0 0 auto;
    }
}

.faq-list-section{
    padding:30px 0 60px;
}
.faq-grid{
    display:grid;
    grid-template-columns:1fr 340px;
    gap:40px;
    align-items:start;
}
.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
}
.faq-item:hover{
    box-shadow:var(--shadow);
}
.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 30px;
    background:none;
    border:none;
    cursor:pointer;
    font-size:19px;
    font-weight:600;
    color:var(--primary);
    text-align:left;
}
.faq-question i{
    transition:.35s;
    color:var(--secondary);
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}
.faq-answer p{
    padding:0 30px 30px;
    color:var(--muted);
    line-height:1.9;
}
.faq-item.active .faq-answer{
    max-height:400px;
}
.faq-item.active .faq-question i{
    transform:rotate(45deg);
}
.faq-help-card{
    position:sticky;
    top:120px;
    background:linear-gradient(
        135deg,
        var(--primary),
        #12357d
    );
    border-radius:28px;
    padding:40px;
    color:#fff;
}
.faq-help-card h3{
    color:#fff;
    margin-bottom:18px;
    font-size:32px;
}
.faq-help-card p{
    color:rgba(255,255,255,.8);
    margin-bottom:30px;
    line-height:1.8;
}
.faq-help-card .property-btn{
    width:100%;
    margin-bottom:15px;
}
.faq-help-card .outline-btn{
    width:100%;
    border-color:#fff;
    color:#fff;
}
.faq-help-card .outline-btn:hover{
    background:#fff;
    color:var(--primary);
}
@media(max-width:991px){
    .faq-grid{
        grid-template-columns:1fr;
    }
    .faq-help-card{
        position:relative;
        top:auto;
    }
}

.story-hero{
    padding:50px 0;
    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #FFFFFF 100%
        );
    position:relative;
    overflow:hidden;
}
.story-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.story-hero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    bottom:-100px;
    left:-120px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.story-content{
    max-width:860px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.story-content .hero-tag{
    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:25px;
}
.story-content h1{
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:25px;
}
.story-content p{
    max-width:760px;
    margin:auto;
    font-size:19px;
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .story-hero{
        padding:90px 0;
    }
    .story-content h1{
        font-size:46px;
    }
}
@media(max-width:576px){
    .story-content h1{
        font-size:34px;
    }
    .story-content p{
        font-size:16px;
    }
}

.story-intro{
    padding:50px 0;
    background:#fff;
}
.story-intro-grid{
    display:grid;
    grid-template-columns:55% 45%;
    gap:70px;
    align-items:center;
}
.story-image{
    position:relative;
}
.story-image img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    display:block;
    border-radius:36px;
    box-shadow:var(--shadow);
    transition:.6s;
}
.story-image:hover img{
    transform:scale(1.03);
}
.story-text{
    max-width:560px;
}
.story-text .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:25px;
}
.story-text h2{
    font-size:50px;
    line-height:1.15;
    color:var(--primary);
    margin-bottom:30px;
}
.story-text p{
    color:var(--muted);
    font-size:17px;
    line-height:2;
    margin-bottom:24px;
}
.story-text p:last-child{
    margin-bottom:0;
}
@media(max-width:991px){
    .story-intro{
        padding:90px 0;
    }
    .story-intro-grid{
        grid-template-columns:1fr;
        gap:50px;
    }
    .story-text{
        max-width:100%;
    }
    .story-text h2{
        font-size:40px;
    }
}
@media(max-width:576px){
    .story-intro{
        padding:70px 0;
    }
    .story-intro-grid{
        gap:35px;
    }
    .story-image img{
        border-radius:24px;
    }
    .story-text h2{
        font-size:32px;
    }
    .story-text p{
        font-size:16px;
        line-height:1.9;
    }
}

.story-beliefs{
    padding:50px 0;
    background:#F8FBFF;
}
.belief-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.belief-grid article{
    background:#fff;
    border-radius:30px;
    padding:45px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.35s;
    position:relative;
}
.belief-grid article:hover{
    transform:translateY(-8px);
}
.belief-number{
    font-size:64px;
    font-weight:800;
    color:rgba(14,91,255,.08);
    line-height:1;
    margin-bottom:25px;
}
.belief-grid h3{
    font-size:28px;
    color:var(--primary);
    line-height:1.3;
    margin-bottom:20px;
}
.belief-grid p{
    color:var(--muted);
    line-height:1.9;
    font-size:16px;
}
.story-human{
    margin-top:90px;
    text-align:center;
    max-width:900px;
    margin-inline:auto;
}
.story-human blockquote{
    font-size:34px;
    line-height:1.7;
    color:var(--primary);
    font-weight:300;
    margin-bottom:25px;
}
.story-human small{
    display:block;
    color:var(--secondary);
    font-size:15px;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-weight:700;
}
@media(max-width:991px){
    .belief-grid{
        grid-template-columns:1fr;
    }
    .story-human blockquote{
        font-size:28px;
    }
}
@media(max-width:576px){
    .story-beliefs{
        padding:80px 0;
    }
    .belief-grid article{
        padding:35px;
    }
    .belief-grid h3{
        font-size:24px;
    }
    .story-human blockquote{
        font-size:22px;
        line-height:1.8;
    }
}

.story-team{
    padding:120px 0;
    background:#fff;
}
.team-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.team-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.35s;
}
.team-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.team-image{
    overflow:hidden;
}
.team-image img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    display:block;
    transition:.45s;
}
.team-card:hover img{
    transform:scale(1.06);
}
.team-content{
    padding:30px;
}
.team-content h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:8px;
}
.team-content span{
    display:block;
    color:var(--secondary);
    font-weight:600;
    margin-bottom:18px;
}
.team-content p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .story-team{
        padding:80px 0;
    }
    .team-grid{
        grid-template-columns:1fr;
    }
}

.story-ending{
    padding:50px 0;
    background:#F8FBFF;
}
.story-ending-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    background:#fff;
    overflow:hidden;
    border-radius:36px;
    box-shadow:var(--shadow);
}
.story-ending-image img{
    width:100%;
    height:100%;
    min-height:560px;
    object-fit:cover;
    display:block;
    transition:.5s;
}
.story-ending-grid:hover img{
    transform:scale(1.04);
}
.story-ending-content{
    padding:70px;
}
.story-ending-content span{
    display:inline-flex;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:24px;
}
.story-ending-content h2{
    font-size:50px;
    line-height:1.15;
    color:var(--primary);
    margin-bottom:28px;
}
.story-ending-content p{
    color:var(--muted);
    font-size:17px;
    line-height:2;
    margin-bottom:40px;
}
.story-ending-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
@media(max-width:991px){
    .story-ending-grid{
        grid-template-columns:1fr;
    }
    .story-ending-content{
        padding:50px;
    }
    .story-ending-content h2{
        font-size:38px;
    }
    .story-ending-image img{
        min-height:380px;
    }
}
@media(max-width:576px){
    .story-ending{
        padding:80px 0;
    }
    .story-ending-content{
        padding:35px 25px;
    }
    .story-ending-content h2{
        font-size:30px;
    }
    .story-ending-buttons{
        flex-direction:column;
    }
    .story-ending-buttons a{
        width:100%;
    }
}

.testimonial-hero{
    padding:50px 0;
    background:
        linear-gradient(
            180deg,
            #F8FBFF 0%,
            #FFFFFF 100%
        );
    position:relative;
    overflow:hidden;
}
.testimonial-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-180px;
    top:-220px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.testimonial-hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    left:-120px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.testimonial-hero-content{
    position:relative;
    z-index:2;
    max-width:860px;
    margin:auto;
    text-align:center;
}
.testimonial-hero .hero-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:24px;
}
.testimonial-hero h1{
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:28px;
}
.testimonial-hero p{
    max-width:760px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:991px){
    .testimonial-hero{
        padding:90px 0;
    }
    .testimonial-hero h1{
        font-size:46px;
    }
    .testimonial-hero p{
        font-size:17px;
    }
}
@media(max-width:576px){
    .testimonial-hero{
        padding:70px 0;
    }
    .testimonial-hero h1{
        font-size:34px;
    }
    .testimonial-hero p{
        font-size:16px;
        line-height:1.8;
    }
}

.legal-hero{
    padding:50px 0;
    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );
    position:relative;
    overflow:hidden;
}
.legal-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.legal-hero::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    bottom:-120px;
    left:-120px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.legal-hero-content{
    max-width:860px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.legal-hero-content span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:24px;
}
.legal-hero-content h1{
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:24px;
}
.legal-hero-content p{
    max-width:760px;
    margin:auto;
    font-size:19px;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:991px){
    .legal-hero{
        padding:90px 0;
    }
    .legal-hero-content h1{
        font-size:46px;
    }
    .legal-hero-content p{
        font-size:17px;
    }
}
@media(max-width:576px){
    .legal-hero{
        padding:70px 0;
    }
    .legal-hero-content h1{
        font-size:34px;
    }
    .legal-hero-content p{
        font-size:16px;
        line-height:1.8;
    }
}

.legal-page{
    padding:50px 0;
}
.legal-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:70px;
}
.legal-sidebar{
    position:sticky;
    top:120px;
    align-self:start;
}
.legal-nav{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
    box-shadow:var(--shadow);
}
.legal-nav h4{
    margin-bottom:25px;
    color:var(--primary);
}
.legal-nav a{
    display:block;
    padding:12px 0;
    color:var(--muted);
    transition:.3s;
}
.legal-nav a:hover{
    color:var(--secondary);
    padding-left:8px;
}
.legal-content{
    max-width:900px;
}
.legal-updated{
    display:inline-flex;
    gap:10px;
    padding:12px 22px;
    background:#F8FBFF;
    border-radius:50px;
    margin-bottom:45px;
    color:var(--muted);
}
.legal-content section{
    margin-bottom:60px;
}
.legal-content h2{
    margin-bottom:20px;
    font-size:36px;
    color:var(--primary);
}
.legal-content h3{
    margin:35px 0 15px;
    color:var(--primary);
}
.legal-content p{
    line-height:2;
    color:var(--muted);
    margin-bottom:18px;
}
.legal-content ul{
    margin:20px 0;
    padding-left:20px;
}
.legal-content li{
    margin-bottom:12px;
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .legal-layout{
        grid-template-columns:1fr;
    }
    .legal-sidebar{
        display:none;
    }
}

.calculator-hero{
    padding:50px 0;
    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );
    position:relative;
    overflow:hidden;
}
.calculator-hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.calculator-hero::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-120px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.calculator-hero-content{
    max-width:860px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.calculator-hero-content span{
    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:24px;
}
.calculator-hero-content h1{
    font-size:62px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:24px;
}
.calculator-hero-content p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.9;
}
@media(max-width:991px){
    .calculator-hero{
        padding:90px 0;
    }
    .calculator-hero-content h1{
        font-size:46px;
    }
}
@media(max-width:576px){
    .calculator-hero{
        padding:70px 0;
    }
    .calculator-hero-content h1{
        font-size:34px;
    }
    .calculator-hero-content p{
        font-size:16px;
    }
}

.area-converter{
    margin-top: 30px;
    position:relative;
    z-index:10;
    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );
}
.converter-card{
    border-radius:30px;
    padding:45px;
    box-shadow:var(--shadow);
}
.converter-grid{
    display:grid;
    grid-template-columns:1fr 1fr auto 1fr;
    gap:20px;
    align-items:end;
}
.converter-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:600;
    color:var(--primary);
}
.converter-group input,
.converter-group select{
    width:100%;
    height:60px;
    border:1px solid var(--border);
    border-radius:18px;
    padding:0 20px;
    font-size:16px;
}
.swap-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    cursor:pointer;
    transition:.35s;
}
.swap-btn:hover{
    transform:rotate(180deg);
}
.converter-result{
    margin-top:40px;
    text-align:center;
    padding-top:35px;
    border-top:1px solid var(--border);
}
.converter-result small{
    display:block;
    color:var(--muted);
    margin-bottom:12px;
}
.converter-result h2{
    font-size:48px;
    color:var(--secondary);
}
@media(max-width:991px){
    .converter-grid{
        grid-template-columns:1fr;
    }
    .swap-btn{
        margin:auto;
        transform:rotate(90deg);
    }
}

.popular-conversions{
    padding:50px 0;
    background:#fff;
}
.conversion-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.conversion-card{
    position:relative;
    padding:35px;
    background:#F8FBFF;
    border-radius:24px;
    border:1px solid var(--border);
    transition:.35s;
    cursor: pointer;
    overflow:hidden;
}
.conversion-card:hover{
    transform:translateY(-8px);
    background:#fff;
    box-shadow:var(--shadow);
}
.conversion-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--secondary);
    transform:scaleY(0);
    transition:.35s;
}
.conversion-card:hover::before{
    transform:scaleY(1);
}
.conversion-card h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:10px;
}
.conversion-card span{
    display:block;
    color:var(--muted);
    margin-bottom:25px;
    font-size:15px;
}
.conversion-card i{
    color:var(--secondary);
    font-size:18px;
    transition:.35s;
}
.conversion-card:hover i{
    transform:translateX(8px);
}
@media(max-width:991px){
    .conversion-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .popular-conversions{
        padding:80px 0;
    }
    .conversion-grid{
        grid-template-columns:1fr;
    }
}

.career-hero{
    padding:50px 0;
    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );
    position:relative;
    overflow:hidden;
}
.career-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-180px;
    top:-180px;
    border-radius:50%;
    background:rgba(14,91,255,.05);
}
.career-hero::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-100px;
    bottom:-100px;
    border-radius:50%;
    background:rgba(25,184,255,.05);
}
.career-hero-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}
.career-hero-content span{
    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:24px;
}
.career-hero-content h1{
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
    margin-bottom:24px;
}
.career-hero-content p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.9;
}
.career-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:45px;
    flex-wrap:wrap;
}
@media(max-width:768px){
    .career-hero{
        padding:80px 0;
    }
    .career-hero-content h1{
        font-size:40px;
    }
}

.career-benefits{
    padding:50px 0;
    background:#fff;
}
.career-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:70px;
}
.career-benefit-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:40px;
    transition:.35s;
    position:relative;
    overflow:hidden;
}
.career-benefit-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--secondary);
    transform:scaleY(0);
    transition:.35s;
}
.career-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.career-benefit-card:hover::before{
    transform:scaleY(1);
}
.career-benefit-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:28px;
    margin-bottom:28px;
}
.career-benefit-card h3{
    font-size:26px;
    color:var(--primary);
    margin-bottom:18px;
}
.career-benefit-card p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .career-benefits-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .career-benefits{
        padding:80px 0;
    }
    .career-benefit-card{
        padding:30px;
    }
}

.career-life{
    padding:50px 0;
    background:#F8FBFF;
}
.career-life-timeline{
    max-width:900px;
    margin:70px auto 0;
    position:relative;
}
.career-life-timeline::before{
    content:"";
    position:absolute;
    left:34px;
    top:0;
    bottom:0;
    width:2px;
    background:var(--border);
}
.career-life-item{
    display:flex;
    gap:30px;
    position:relative;
    margin-bottom:55px;
}
.career-life-item:last-child{
    margin-bottom:0;
}
.career-life-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    border:2px solid var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:26px;
    flex-shrink:0;
    position:relative;
    z-index:2;
}
.career-life-content{
    background:#fff;
    border-radius:24px;
    padding:30px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.35s;
}
.career-life-item:hover .career-life-content{
    transform:translateY(-6px);
}
.career-life-content h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
}
.career-life-content p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:768px){
    .career-life{
        padding:80px 0;
    }
    .career-life-item{
        flex-direction:column;
    }
    .career-life-timeline::before{
        display:none;
    }
}

.career-openings{
    padding:50px 0;
    background:#fff;
}
.career-jobs{
    max-width:950px;
    margin:70px auto 0;
    display:flex;
    flex-direction:column;
    gap:24px;
}
.career-job{
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    transition:.35s;
}
.career-job:hover{
    box-shadow:var(--shadow);
}
.career-job-header{
    width:100%;
    background:none;
    border:none;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
}
.career-job-header h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:12px;
}
.career-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.career-meta span{
    padding:8px 14px;
    border-radius:30px;
    background:#F8FBFF;
    color:var(--secondary);
    font-size:13px;
    font-weight:600;
}
.career-job-header i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#F8FBFF;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}
.career-job.active .career-job-header i{
    transform:rotate(45deg);
    background:var(--secondary);
    color:#fff;
}
.career-job-body{
    display:none;
    padding:0 35px 35px;
}
.career-job.active .career-job-body{
    display:block;
}
.career-job-body h4{
    margin:25px 0 12px;
    color:var(--primary);
}
.career-job-body ul{
    padding-left:20px;
}
.career-job-body li{
    margin-bottom:10px;
    color:var(--muted);
    line-height:1.8;
}
.career-job-footer{
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}
.career-job-footer span{
    color:var(--muted);
    font-weight:600;
}
@media(max-width:768px){
    .career-openings{
        padding:80px 0;
    }
    .career-job-header{
        padding:25px;
    }
    .career-job-header h3{
        font-size:22px;
    }
    .career-job-body{
        padding:0 25px 25px;
    }
    .career-job-footer{
        flex-direction:column;
        align-items:flex-start;
    }
}

.career-empty{
    max-width:760px;
    margin:80px auto 0;
    padding:60px;
    text-align:center;
    background:#F8FBFF;
    border:1px solid var(--border);
    border-radius:28px;
}
.career-empty-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}
.career-empty h3{
    font-size:34px;
    color:var(--primary);
    margin-bottom:20px;
}
.career-empty p{
    max-width:560px;
    margin:0 auto 35px;
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:768px){
    .career-empty{
        padding:40px 25px;
    }
    .career-empty h3{
        font-size:28px;
    }
}

.services-hero{
    padding:50px 0;
    background:#fff;
}
.services-hero-grid{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:60px;
}
.services-hero-content span{
    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:24px;
}
.services-hero-content h1{
    font-size:64px;
    color:var(--primary);
    line-height:1.1;
    margin-bottom:25px;
}
.services-hero-content p{
    font-size:19px;
    color:var(--muted);
    line-height:1.9;
    max-width:650px;
}
.services-hero-stats{
    display:flex;
    gap:50px;
    margin-top:50px;
}
.services-hero-stats article{
    display:flex;
    flex-direction:column;
}
.services-hero-stats strong{
    font-size:42px;
    color:var(--secondary);
}
.services-hero-stats span{
    margin:0;
    background:none;
    padding:0;
    text-transform:none;
    color:var(--muted);
    font-size:15px;
    font-weight:500;
}
.services-hero-visual img{
    width:100%;
    display:block;
}
@media(max-width:991px){
    .services-hero-grid{
        grid-template-columns:1fr;
    }
    .services-hero-content{
        text-align:center;
    }
    .services-hero-content p{
        margin:auto;
    }
    .services-hero-stats{
        justify-content:center;
    }
}
@media(max-width:768px){
    .services-hero{
        padding:80px 0;
    }
    .services-hero-content h1{
        font-size:42px;
    }
    .services-hero-stats{
        gap:25px;
    }
    .services-hero-stats strong{
        font-size:32px;
    }
}

.services-catalog{
    padding:50px 0;
    background:#fff;
}
.service-group-block{
    margin-bottom:90px;
}
.service-group-block:last-child{
    margin-bottom:0;
}
.service-group-header{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:40px;
}
.service-group-icon{
    width:90px;
    height:90px;
    border-radius:28px;
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#fff;
    font-size:34px;
}
.service-group-content span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    color:var(--secondary);
    text-transform:uppercase;
    margin-bottom:12px;
}
.service-group-content h2{
    font-size:46px;
    color:var(--primary);
    margin-bottom:12px;
}
.service-group-content p{
    color:var(--muted);
    max-width:700px;
    line-height:1.8;
}
.service-list{
    border-top:1px solid var(--border);
}
.service-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 0;
    border-bottom:1px solid var(--border);
    transition:.35s;
    gap:40px;
}
.service-row:hover{
    padding-left:15px;
}
.service-row-left{
    display:flex;
    align-items:center;
    gap:22px;
    flex:1;
}
.service-row-left img{
    width:64px;
    height:64px;
    object-fit:contain;
    flex-shrink:0;
}
.service-placeholder{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#F5F8FC;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:22px;
}
.service-row-left h3{
    font-size:26px;
    color:var(--primary);
    margin-bottom:8px;
}
.service-row-left p{
    color:var(--muted);
    line-height:1.7;
    max-width:650px;
}
.service-row-right{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--secondary);
    font-weight:700;
    white-space:nowrap;
}
.service-row-right i{
    transition:.35s;
}
.service-row:hover .service-row-right i{
    transform:translateX(6px);
}
@media(max-width:991px){
    .service-group-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .service-row{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
    .service-row-right{
        margin-left:86px;
    }
    .service-group-content h2{
        font-size:36px;
    }
}
@media(max-width:768px){
    .services-catalog{
    padding:70px 0;
    }
    .service-group-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }
    .service-row-left{
        align-items:flex-start;
    }
    .service-row-left h3{
        font-size:22px;
    }
    .service-row-right{
        margin-left:0;
    }
}

.service-hero{
    position:relative;
    overflow:hidden;
    min-height:620px;
    display:flex;
    align-items:center;
    color:#fff;
}
.service-hero-image{
    position:absolute;
    inset:0;
}
.service-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.service-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,27,77,.88),
        rgba(7,27,77,.55),
        rgba(7,27,77,.25)
    );
}
.service-hero .container{
    position:relative;
    z-index:2;
}
.service-breadcrumb{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:35px;
    font-size:14px;
}
.service-breadcrumb a{
    color:rgba(255,255,255,.75);
}
.service-breadcrumb span{
    color:#fff;
}
.service-hero-content{
    max-width:760px;
}
.service-hero-content>span{
    display:inline-flex;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}
.service-hero-content h1{
    font-size:68px;
    line-height:1.8;
    margin-bottom:24px;
}
.service-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.88);
    max-width:650px;
}
.service-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:40px 0;
}
.service-highlights div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);
}
.service-highlights i{
    color:#6EE7B7;
}
.service-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
@media(max-width:991px){
    .service-hero{
        min-height:560px;
    }
    .service-hero-content h1{
        font-size:48px;
    }
}
@media(max-width:768px){
    .service-hero{
        padding:90px 0;
        min-height:auto;
    }
    .service-hero-content h1{
        font-size:38px;
    }
    .service-hero-content p{
        font-size:17px;
    }
}

.service-hero{
    position:relative;
    min-height:650px;
    padding: 25px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
}
.service-hero-image{
    position:absolute;
    inset:0;
}
.service-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.service-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,27,77,.92) 0%,
        rgba(7,27,77,.70) 45%,
        rgba(7,27,77,.35) 100%
    );
}
.service-hero .container{
    position:relative;
    z-index:2;
}
.service-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:35px;
    font-size:14px;
}
.service-breadcrumb a{
    color:rgba(255,255,255,.75);
    transition:.3s;
}
.service-breadcrumb a:hover{
    color:#fff;
}
.service-breadcrumb span{
    color:#fff;
}
.service-hero-content{
    max-width:760px;
}
.service-hero-content > span{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:24px;
}
.service-hero-content h1{
    font-size:64px;
    line-height:1.08;
    margin-bottom:25px;
}
.service-hero-content p{
    font-size:20px;
    color:rgba(255,255,255,.88);
    line-height:1.9;
    max-width:680px;
}
.service-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:40px 0;
}
.service-highlights div{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    font-weight:500;
}
.service-highlights i{
    color:#7EF0B3;
}
.service-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}
.service-actions .btn-primary{
    padding:16px 34px;
    border-radius:16px;
    background:#fff;
    color:var(--primary);
    font-weight:700;
}
.service-actions .btn-primary:hover{
    background:var(--secondary);
    color:#fff;
}
.service-actions .btn-secondary{
    padding:16px 34px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.3);
    color:#fff;
    backdrop-filter:blur(12px);
}
.service-actions .btn-secondary:hover{
    background:#fff;
    color:var(--primary);
}

.service-overview{
    padding:50px 0;
    background:#fff;
}
.service-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:70px;
    align-items:start;
}
.section-heading{
    margin-bottom:35px;
}
.section-heading span{
    display:inline-flex;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}
.section-heading h2{
    font-size:46px;
    color:var(--primary);
    line-height:1.2;
}
.service-description{
    color:var(--muted);
    font-size:17px;
    line-height:2;
}
.service-description h3,
.service-description h4{
    color:var(--primary);
    margin:40px 0 18px;
}
.service-description p{
    margin-bottom:24px;
}
.service-description ul{
    margin:20px 0;
    padding-left:22px;
}
.service-description li{
    margin-bottom:12px;
}
.service-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:50px;
}
.service-benefits article{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 22px;
    border-radius:18px;
    background:#F8FBFF;
    border:1px solid var(--border);
    transition:.3s;
}
.service-benefits article:hover{
    transform:translateY(-4px);
    border-color:var(--secondary);
}
.service-benefits i{
    color:var(--secondary);
    font-size:18px;
}
.service-benefits span{
    color:var(--primary);
    font-weight:600;
}
.service-sidebar{
    position:sticky;
    top:120px;
}
.sidebar-contact{
    padding:35px;
    border-radius:26px;
    background:linear-gradient(
        135deg,
        var(--primary),
        #12367F
    );
    color:#fff;
    margin-bottom:35px;
}
.sidebar-contact h3{
    font-size:28px;
    margin-bottom:12px;
}
.sidebar-contact p{
    color:rgba(255,255,255,.8);
    line-height:1.8;
    margin-bottom:28px;
}
.sidebar-btn{
    display:block;
    text-align:center;
    padding:15px;
    border-radius:14px;
    font-weight:700;
    margin-bottom:12px;
    transition:.3s;
}
.sidebar-btn:last-child{
    margin-bottom:0;
}
.sidebar-btn:not(.secondary){
    background:#fff;
    color:var(--primary);
}
.sidebar-btn:not(.secondary):hover{
    background:var(--secondary);
    color:#fff;
}
.sidebar-btn.secondary{
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}
.sidebar-btn.secondary:hover{
    background:rgba(255,255,255,.1);
}
.sidebar-services{
    background:#fff;
    border:1px solid var(--border);
    border-radius:26px;
    padding:30px;
}
.sidebar-services>h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:28px;
}
.sidebar-group{
    margin-bottom:28px;
}
.sidebar-group:last-child{
    margin-bottom:0;
}
.sidebar-group h4{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--primary);
    font-size:18px;
    margin-bottom:14px;
}
.sidebar-group h4 i{
    color:var(--secondary);
}
.sidebar-group ul{
    list-style:none;
    margin:0;
    padding:0;
}
.sidebar-group li{
    margin-bottom:8px;
}
.sidebar-group li:last-child{
    margin-bottom:0;
}
.sidebar-group a{
    display:block;
    padding:10px 15px;
    border-radius:10px;
    color:var(--muted);
    transition:.3s;
}
.sidebar-group a:hover{
    background:#F5F8FC;
    color:var(--secondary);
    padding-left:20px;
}
.sidebar-group a.active{
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-weight:700;
    position:relative;
}
.sidebar-group a.active::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    bottom:8px;
    width:4px;
    border-radius:10px;
    background:var(--secondary);
}
@media(max-width:1200px){
    .service-layout{
        grid-template-columns:1fr 320px;
        gap:50px;
    }
}
@media(max-width:991px){
    .service-hero{
        min-height:560px;
        padding:90px 0;
    }
    .service-hero-content h1{
        font-size:46px;
    }
    .service-layout{
        grid-template-columns:1fr;
    }
    .service-sidebar{
        position:static;
        margin-top:60px;
    }
}
@media(max-width:768px){
    .service-hero{
        min-height:auto;
    }
    .service-hero-content h1{
        font-size:38px;
    }
    .service-hero-content p{
        font-size:17px;
    }
    .service-highlights{
        flex-direction:column;
    }
    .service-actions{
        flex-direction:column;
    }
    .service-actions a{
        width:100%;
        text-align:center;
    }
    .section-heading h2{
        font-size:34px;
    }
    .service-benefits{
        grid-template-columns:1fr;
    }
    .sidebar-contact{
        padding:28px;
    }
    .sidebar-services{
        padding:24px;
    }
}
.service-features{
    margin-top:90px;
}
.feature-list{
    margin-top:50px;
    border-top:1px solid var(--border);
}
.feature-item{
    display:flex;
    gap:25px;
    padding:28px 0;
    border-bottom:1px solid var(--border);
    transition:.35s;
}
.feature-item:hover{
    padding-left:12px;
}
.feature-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.feature-icon img{
    width:32px;
}
.feature-icon i{
    color:var(--secondary);
    font-size:24px;
}
.feature-content{
    flex:1;
}
.feature-content h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:10px;
}
.feature-content p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:768px){
    .feature-item{
        flex-direction:column;
        gap:18px;
    }
}
.service-process{
    margin-top:90px;
}
.process-timeline{
    position:relative;
    margin-top:55px;
    padding-left:35px;
    border-left:2px solid var(--border);
}
.process-item{
    position:relative;
    padding-bottom:55px;
}
.process-item:last-child{
    padding-bottom:0;
}
.process-number{
    position:absolute;
    left:-54px;
    top:0;
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}
.process-content{
    padding-left:25px;
}
.process-content h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:12px;
}
.process-content p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:768px){
    .process-content h3{
        font-size:22px;
    }
    .process-timeline{
        padding-left:25px;
    }
    .process-number{
        left:-46px;
    }
}

.service-faqs{
    padding:50px 0;
    background:#F8FBFF;
}
.faq-list{
    margin-top:55px;
}
.service-faq-item{
    border-bottom:1px solid var(--border);
}
.service-faq-question{
    width:100%;
    padding:28px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    cursor:pointer;
    background:none;
    border:none;
    text-align:left;
}
.service-faq-question span{
    font-size:22px;
    font-weight:600;
    color:var(--primary);
}
.service-faq-question i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
    flex-shrink:0;
}
.service-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}
.faq-answer-inner{
    padding:0 0 28px;
}
.service-faq-answer p{
    color:var(--muted);
    line-height:1.9;
}
.service-faq-item.active .service-faq-question i{
    transform:rotate(45deg);
    background:var(--secondary);
    color:#fff;
}
.service-faq-item.active .service-faq-answer{
    margin-bottom: 15px;
    max-height:600px;
}
@media(max-width:768px){
    .service-faq-question span{
        font-size:18px;
    }
}

.service-cta{
    position:relative;
    overflow:hidden;
    padding:60px 0;
    color:#fff;
}
.service-cta-bg{
    position:absolute;
    inset:0;
}
.service-cta-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.service-cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,27,77,.92),
        rgba(7,27,77,.75)
    );
}
.service-cta .container{
    position:relative;
    z-index:2;
}
.service-cta-content{
    max-width:760px;
}
.service-cta-content>span{
    display:inline-flex;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:22px;
}
.service-cta h2{
    font-size:54px;
    margin-bottom:25px;
}
.service-cta p{
    font-size:19px;
    line-height:1.9;
    color:rgba(255,255,255,.88);
}
.cta-points{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin:40px 0;
}
.cta-points div{
    display:flex;
    gap:10px;
    align-items:center;
}
.cta-points i{
    color:#6EE7B7;
}
.cta-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.cta-phone{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
}
.cta-phone a{
    color:#fff;
}
@media(max-width:768px){
    .service-cta{
        padding:80px 0;
    }
    .service-cta h2{
        font-size:38px;
    }
    .cta-buttons{
        flex-direction:column;
    }
    .cta-buttons a{
        width:100%;
        text-align:center;
    }
}

.consultation-hero{
    padding:60px 0px;
    background:linear-gradient(
        135deg,
        var(--primary),
        #12367F
    );
    color:#fff;
}
.consultation-hero-content{
    max-width:760px;
}
.hero-badge{
    display:inline-flex;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border-radius:40px;
    margin:25px 0;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}
.consultation-hero h1{
    font-size:64px;
    margin-bottom:20px;
}
.consultation-hero p{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
}

.consultation-benefits{
    padding:50px 0;
    background:#fff;
}
.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.benefit-grid article{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border:1px solid var(--border);
    border-radius:24px;
    transition:all .35s ease;
    overflow:hidden;
}
.benefit-grid article::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.benefit-grid article:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:rgba(14,91,255,.15);
}
.benefit-grid article:hover::before{
    transform:scaleX(1);
}
.benefit-grid i{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:28px;
    margin-bottom:28px;
    transition:.35s;
}
.benefit-grid article:hover i{
    background:var(--secondary);
    color:#fff;
    transform:rotate(-8deg) scale(1.05);
}
.benefit-grid h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
    line-height:1.3;
}
.benefit-grid p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}
@media(max-width:1200px){
    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .consultation-benefits{
        padding:70px 0;
    }
    .benefit-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .benefit-grid article{
        padding:30px 25px;
    }
    .benefit-grid h3{
        font-size:21px;
    }
    .benefit-grid i{
        width:64px;
        height:64px;
        font-size:24px;
        margin-bottom:20px;
    }
}

.consultation-main{
    padding:50px 0;
    background:#F8FBFF;
}
.consultation-layout{
    display:grid;
    grid-template-columns:380px minmax(0,1fr);
    gap:50px;
    align-items:start;
}
.consultation-info{
    position:sticky;
    top:120px;
}
.service-summary{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid var(--border);
    margin-bottom:30px;
}
.summary-label{
    display:inline-flex;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}
.service-summary h2{
    font-size:32px;
    color:var(--primary);
    margin-bottom:18px;
}
.service-summary p{
    color:var(--muted);
    line-height:1.8;
}
.consultation-steps{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px;
    margin-bottom:30px;
}
.consultation-steps h3{
    margin-bottom:30px;
}
.step{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}
.step:last-child{
    margin-bottom:0;
}
.step span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}
.step h4{
    color:var(--primary);
    margin-bottom:8px;
}
.step p{
    color:var(--muted);
    line-height:1.8;
}
.quick-contact{
    background:var(--primary);
    color:#fff;
    padding:35px;
    border-radius:24px;
}
.quick-contact h3{
    margin-bottom:25px;
}
.quick-contact a{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    margin-bottom:18px;
}
.consultation-form-card{
    background:#fff;
    border-radius:24px;
    border:1px solid var(--border);
    padding:45px;
}
.consultation-form-card h2{
    color:var(--primary);
    margin-bottom:12px;
}
.consultation-form-card>p{
    color:var(--muted);
    margin-bottom:35px;
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}
.form-group{
    margin-bottom:25px;
}
.form-group label{
    display:block;
    font-weight:600;
    color:var(--primary);
    margin-bottom:10px;
}
.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid var(--border);
    border-radius:14px;
    transition:.3s;
    background:#fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--secondary);
    outline:none;
    box-shadow:0 0 0 4px rgba(14,91,255,.08);
}
textarea{
    resize:vertical;
}
.consultation-form-card .btn-primary{
    width:100%;
    padding:18px;
    margin-top:10px;
}
.consultation-consent{
    margin:10px 0 30px;
}
.consultation-consent{
    margin:20px 0 35px;
}
.consent-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:20px 22px;
    background:#F8FBFF;
    border:1px solid var(--border);
    border-radius:18px;
    cursor:pointer;
    transition:.3s;
}
.consent-box:hover{
    border-color:rgba(14,91,255,.3);
    background:#F5F9FF;
}
.consent-box input{
    display:none;
}
.consent-check{
    width:28px;
    height:28px;
    border-radius:8px;
    border:2px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:.3s;
    margin-top:2px;
}
.consent-check i{
    opacity:0;
    transform:scale(.6);
    transition:.25s;
    font-size:13px;
    color:#fff;
}
.consent-box input:checked + .consent-check{
    background:var(--secondary);
    border-color:var(--secondary);
}
.consent-box input:checked + .consent-check i{
    opacity:1;
    transform:scale(1);
}
.consent-text{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
.consent-text strong{
    color:var(--primary);
    font-weight:700;
}
@media(max-width:991px){
    .consultation-layout{
        grid-template-columns:1fr;
    }
    .consultation-info{
        position:static;
    }
}
@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }
    .consultation-form-card{
        padding:30px;
    }
    .service-summary,
    .consultation-steps,
    .quick-contact{
        padding:28px;
    }
}

.thank-you-hero{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        var(--primary),
        #12367F
    );
}
.thank-you-card{
    max-width:760px;
    margin:auto;
    background:#fff;
    padding:70px;
    border-radius:30px;
    text-align:center;
    box-shadow:var(--shadow);
}
.success-icon{
    width:110px;
    height:110px;
    margin:auto auto 30px;
    border-radius:50%;
    background:#22C55E;
    display:flex;
    align-items:center;
    justify-content:center;
}
.success-icon i{
    font-size:44px;
    color:#fff;
}
.thank-you-card>span{
    display:inline-flex;
    padding:10px 22px;
    background:rgba(34,197,94,.12);
    color:#16A34A;
    border-radius:40px;
    font-weight:700;
    margin-bottom:20px;
}
.thank-you-card h1{
    font-size:54px;
    color:var(--primary);
    margin-bottom:20px;
}
.thank-you-card p{
    font-size:18px;
    color:var(--muted);
    line-height:1.9;
}

.thank-process{
    padding:110px 0;
    background:#fff;
}
.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}
.process-grid article{
    position:relative;
    padding:45px 35px;
    border:1px solid var(--border);
    border-radius:24px;
    transition:.35s;
    background:#fff;
    overflow:hidden;
}
.process-grid article:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.process-grid article::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );
}
.process-icon{
    width:76px;
    height:76px;
    border-radius:22px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:30px;
    margin-bottom:28px;
}
.process-grid span{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:var(--secondary);
    letter-spacing:1px;
    margin-bottom:12px;
}
.process-grid h3{
    font-size:28px;
    color:var(--primary);
    margin-bottom:15px;
}
.process-grid p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .process-grid{
        grid-template-columns:1fr;
    }
}

.thank-contact{
    padding:0 0 110px;
    background:#fff;
}
.thank-contact-card{
    background:linear-gradient(
        135deg,
        var(--primary),
        #12367F
    );
    border-radius:30px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    color:#fff;
    overflow:hidden;
    position:relative;
}
.thank-contact-card::before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}
.thank-contact-content{
    position:relative;
    z-index:2;
    max-width:700px;
}
.thank-contact-content>span{
    display:inline-flex;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:22px;
}
.thank-contact-content h2{
    font-size:46px;
    margin-bottom:20px;
}
.thank-contact-content p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:35px;
}
.contact-meta{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}
.contact-meta strong{
    display:block;
    margin-bottom:8px;
    font-size:18px;
}
.contact-meta span{
    display:block;
    color:#fff;
    font-weight:600;
}
.contact-meta small{
    color:rgba(255,255,255,.7);
}
.thank-contact-actions{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:18px;
    min-width:240px;
}
.btn-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:16px 24px;
    background:#25D366;
    color:#fff;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
}
.btn-whatsapp:hover{
    background:#20BD5A;
    transform:translateY(-3px);
}
.btn-whatsapp i{
    font-size:20px;
}
@media(max-width:991px){
    .thank-contact-card{
        flex-direction:column;
        align-items:flex-start;
        padding:40px;
        gap:40px;
    }
    .contact-meta{
        gap:30px;
    }
    .thank-contact-actions{
        width:100%;
    }
    .thank-contact-actions a{
        width:100%;
    }
}
@media(max-width:768px){
    .thank-contact{
        padding-bottom:80px;
    }
    .thank-contact-content h2{
        font-size:34px;
    }
    .contact-meta{
        flex-direction:column;
        gap:20px;
    }
}

.listing-empty{
    width:100%;
    max-width:700px;
    padding:50px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    text-align:center;
    box-shadow:var(--shadow);
}
.listing-empty-icon{
    width:90px;
    height:90px;
    margin:0 auto 28px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        rgba(14,91,255,.08),
        rgba(25,184,255,.12)
    );
    display:flex;
    align-items:center;
    justify-content:center;
}
.listing-empty-icon i{
    font-size:42px;
    color:var(--secondary);
}
.listing-empty h3{
    margin:0 0 18px;
    font-size:34px;
    color:var(--primary);
    font-weight:700;
}
.listing-empty p{
    max-width:520px;
    margin:0 auto 35px;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}
.listing-empty-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:var(--secondary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:var(--transition);
    box-shadow:0 15px 35px rgba(14,91,255,.25);
}
.listing-empty-btn:hover{
    transform:translateY(-3px);
    background:var(--primary);
    color:#fff;
}
.listing-empty-btn i{
    transition:.3s;
}
.listing-empty-btn:hover i{
    transform:translateX(5px);
}
@media(max-width:768px){
    .listing-empty{
        padding:45px 25px;
        margin:40px auto;
    }
    .listing-empty h3{
        font-size:28px;
    }
    .listing-empty p{
        font-size:15px;
    }
    .listing-empty-icon{
        width:75px;
        height:75px;
    }
    .listing-empty-icon i{
        font-size:34px;
    }
}

.property-grid.view-list{
    display:flex;
    flex-direction:column;
    gap:30px;
}
.property-grid.view-list .property-card{
    display:grid;
    grid-template-columns:360px 1fr;
    overflow:hidden;
    border-radius:22px;
}
.property-grid.view-list .property-image{
    height:100%;
}
.property-grid.view-list .property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.property-grid.view-list .property-body{
    padding:34px;
    display:flex;
    flex-direction:column;
}
.property-grid.view-list .property-features{
    margin:22px 0;
}
.property-grid.view-list .property-footer{
    margin-top:auto;
}
@media(max-width:992px){
    .property-grid.view-list .property-card{
        grid-template-columns:1fr;
    }
}

.localities-hero{
    padding:50px 0;
    background:linear-gradient(135deg,#071B4D 0%,#0E5BFF 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
}
.localities-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-120px;
    top:-180px;
}
.localities-breadcrumb{
    display:flex;
    gap:10px;
    align-items:center;
    font-size:14px;
    opacity:.8;
    margin-bottom:40px;
}
.localities-breadcrumb a{
    color:#fff;
}
.localities-hero-content{
    max-width:1280px;
}
.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:rgba(255,255,255,.1);
    border-radius:50px;
    margin-bottom:22px;
    font-size:14px;
}
.localities-hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
}
.localities-hero h1 span{
    color:#8FD8FF;
}
.localities-hero p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.88);
    max-width:1080px;
}
.localities-search{
    margin-top:40px;
    max-width:600px;
    background:#fff;
    border-radius:16px;
    display:flex;
    align-items:center;
    padding:0 22px;
    height:66px;
}
.localities-search i{
    color:var(--secondary);
    font-size:18px;
}
.localities-search input{
    flex:1;
    border:none;
    outline:none;
    padding:0 18px;
    font-size:16px;
    background:none;
}
.localities-hero-stats{
    display:flex;
    gap:20px;
    margin-top:55px;
    flex-wrap:wrap;
}
.hero-stat{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.12);
    padding:22px 28px;
    border-radius:18px;
    min-width:170px;
}
.hero-stat strong{
    display:block;
    font-size:34px;
    margin-bottom:8px;
}
.hero-stat span{
    opacity:.85;
}
@media(max-width:768px){
    .localities-hero{
        padding:70px 0;
    }
    .localities-hero h1{
        font-size:38px;
    }
    .localities-search{
        height:58px;
    }
    .hero-stat{
        flex:1;
        min-width:140px;
    }
}

.localities-grid-section{
    padding:40px 0;
}
.localities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:24px;
}
.locality-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:26px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s;
    box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.locality-card:hover{
    transform:translateY(-5px);
    border-color:var(--secondary);
    box-shadow:0 18px 45px rgba(14,91,255,.12);
}
.locality-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(14,91,255,.08);
    display:flex;
    justify-content:center;
    align-items:center;
    color:var(--secondary);
    font-size:22px;
    flex-shrink:0;
}
.locality-content{
    flex:1;
}
.locality-content h3{
    font-size:20px;
    margin-bottom:6px;
    color:var(--primary);
}
.locality-content p{
    color:var(--muted);
    font-size:15px;
}
.locality-card > i{
    color:var(--secondary);
}

.visit-confirmation{
    padding:50px 0;
}
.confirmation-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}
.confirmation-top{
    padding:55px;
    text-align:center;
    border-bottom:1px solid var(--border);
}
.confirmation-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#ECFDF3;
    color:#16A34A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin-bottom:25px;
}
.confirmation-label{
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}
.confirmation-top h2{
    margin:15px 0;
    font-size:42px;
    color:var(--primary);
}
.confirmation-top p{
    max-width:650px;
    margin:auto;
    color:var(--muted);
    line-height:1.8;
}
.confirmation-property{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:35px;
    padding:40px;
    border-bottom:1px solid var(--border);
}
.property-image img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:18px;
}
.property-details span{
    display:inline-flex;
    padding:8px 16px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    border-radius:40px;
    font-size:13px;
    font-weight:700;
}
.property-details h3{
    margin:18px 0 12px;
    color:var(--primary);
    font-size:28px;
}
.property-details p{
    color:var(--muted);
    margin-bottom:25px;
}
.property-details h4{
    color:var(--secondary);
    font-size:34px;
    font-weight:800;
}
.confirmation-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    padding:40px;
}
.detail-item{
    padding:20px;
    border-radius:18px;
    background:#f8fafc;
}
.detail-item span{
    display:block;
    color:var(--muted);
    font-size:13px;
    margin-bottom:8px;
}
.detail-item strong{
    color:var(--primary);
    font-size:17px;
}
.confirmation-note{
    display:flex;
    gap:18px;
    align-items:flex-start;
    background:#EFF6FF;
    color:#1E40AF;
    padding:30px 40px;
}
.confirmation-note i{
    font-size:24px;
    margin-top:4px;
}
.confirmation-note p{
    margin:0;
    line-height:1.7;
}
@media(max-width:768px){
    .confirmation-property{
        grid-template-columns:1fr;
    }
    .confirmation-details{
        grid-template-columns:1fr;
    }
    .confirmation-top{
        padding:40px 25px;
    }
    .confirmation-property,
    .confirmation-details,
    .confirmation-note{
        padding:25px;
    }
}

.projects-hero{
    position:relative;
    overflow:hidden;
    min-height:720px;
    display:flex;
    align-items:center;
    background:#071B4D;
}
.projects-hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}
.projects-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(7,27,77,.92) 0%,
        rgba(7,27,77,.82) 35%,
        rgba(7,27,77,.45) 65%,
        rgba(7,27,77,.15) 100%
    );
    z-index:2;
}
.projects-hero .container{
    position:relative;
    z-index:3;
}
.projects-hero-content{
    max-width:760px;
    color:#fff;
    padding:90px 0;
}
.projects-hero-content .hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    margin-bottom:28px;
    font-size:14px;
    font-weight:700;
}
.projects-hero-content h1{
    font-size:68px;
    line-height:1.08;
    margin-bottom:30px;
    font-weight:800;
    color:#fff;
}
.projects-hero-content h1 span{
    display:block;
    color:#19B8FF;
}
.projects-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    max-width:640px;
    margin-bottom:45px;
}
.hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
@media(max-width:991px){
    .projects-hero{
        min-height:auto;
    }
    .projects-hero-content{
        padding:100px 0 80px;
    }
    .projects-hero-content h1{
        font-size:48px;
    }
}
@media(max-width:768px){
    .projects-hero-content h1{
        font-size:38px;
    }
    .projects-hero-content p{
        font-size:16px;
    }
    .hero-actions{
        flex-direction:column;
    }
    .hero-actions a{
        width:100%;
        justify-content:center;
    }
}

.projects-categories{
    padding:50px 0;
    background:#fff;
}
.project-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}
.project-category-card{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    height:460px;
    display:block;
    transition:.45s ease;
    box-shadow:var(--shadow);
}
.category-image{
    position:absolute;
    inset:0;
}
.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s ease;
}
.category-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.05),
        rgba(0,0,0,.75)
    );
}
.category-content{
    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    color:#fff;
}
.category-content span{
    display:inline-flex;
    padding:8px 16px;
    border-radius:40px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    margin-bottom:18px;
    font-size:13px;
    font-weight:700;
}
.category-content h3{
    font-size:34px;
    margin-bottom:28px;
    color:#fff;
}
.category-arrow{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.35s ease;
}
.project-category-card:hover{
    transform:translateY(-8px);
}
.project-category-card:hover img{
    transform:scale(1.08);
}
.project-category-card:hover .category-arrow{
    transform:translateX(8px);
    background:var(--secondary);
    color:#fff;
}
@media(max-width:1200px){
    .project-category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .projects-categories{
        padding:80px 0;
    }
    .project-category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .project-category-card{
        height:340px;
    }
    .category-content h3{
        font-size:28px;
    }
}

.projects-listing{
    padding:50px 0;
    background:#f8fbff;
}
.project-list-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}
.project-card{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}
.project-card:hover{
    transform:translateY(-8px);
}
.project-image{
    position:relative;
    display:block;
    height:300px;
    overflow:hidden;
}
.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.project-card:hover img{
    transform:scale(1.08);
}
.project-status{
    position:absolute;
    top:22px;
    left:22px;
    background:#fff;
    color:var(--secondary);
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
}
.project-body{
    padding:32px;
}
.project-builder{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
}
.project-builder img{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
}
.project-builder span{
    font-weight:700;
}
.project-body h3{
    font-size:30px;
    margin-bottom:18px;
}
.project-body h3 a{
    color:var(--primary);
}
.project-location{
    color:var(--muted);
    display:flex;
    gap:10px;
    margin-bottom:24px;
}
.project-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}
.project-meta span{
    padding:10px 18px;
    background:#f5f8fd;
    border-radius:40px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}
.project-price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid var(--border);
    padding-top:24px;
}
.project-price-row small{
    color:var(--muted);
}
.project-price-row h4{
    color:var(--secondary);
    font-size:28px;
    margin-top:4px;
}
@media(max-width:991px){
    .project-list-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .projects-listing{
        padding:80px 0;
    }
    .project-image{
        height:240px;
    }
    .project-body{
        padding:25px;
    }
    .project-body h3{
        font-size:24px;
    }
    .project-price-row{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
}

.projects-advantages{
    padding:50px 0;
    background:#fff;
}
.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}
.advantage-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:35px 30px;
    transition:var(--transition);
    position:relative;
    overflow:hidden;
}
.advantage-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}
.advantage-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.advantage-card:hover::before{
    transform:scaleX(1);
}
.advantage-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}
.advantage-card h3{
    font-size:22px;
    margin-bottom:14px;
    color:var(--primary);
}
.advantage-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
@media(max-width:1100px){
    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .projects-advantages{
        padding:70px 0;
    }
    .advantages-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:40px;
    }
}

.projects-cta{
    padding:50px 0;
    background:#f7f9fc;
}
.projects-cta-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:36px;
    padding:70px;
    background:linear-gradient(135deg, var(--primary), #0b2d7d);
    color:#fff;
}
.projects-cta-wrapper::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}
.projects-cta-wrapper::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}
.projects-cta-wrapper>*{
    position:relative;
    z-index:2;
}
.projects-cta-content{
    max-width:760px;
}
.projects-cta-content span{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
    opacity:.8;
}
.projects-cta-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    margin-bottom:24px;
}
.projects-cta-content p{
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.9;
    max-width:650px;
}
.projects-cta-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}
.projects-cta-highlights div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}
.projects-cta-highlights i{
    color:#7fffb6;
}
.projects-cta-actions{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}
.projects-cta .property-btn{
    background:#fff;
    color:var(--primary);
}
.projects-cta .property-btn:hover{
    background:var(--accent);
    color:#fff;
}
.projects-cta .outline-btn{
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}
.projects-cta .outline-btn:hover{
    background:#fff;
    color:var(--primary);
}
@media(max-width:991px){
    .projects-cta-wrapper{
        padding:50px 35px;
    }
    .projects-cta-content h2{
        font-size:38px;
    }
    .projects-cta-highlights{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .projects-cta{
        padding:80px 0;
    }
    .projects-cta-content h2{
        font-size:30px;
    }
    .projects-cta-actions{
        flex-direction:column;
    }
    .projects-cta-actions a{
        width:100%;
        justify-content:center;
    }
}

.project-hero{
    padding:40px 0 70px;
    background:#fff;
}
.project-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
    font-size:14px;
}
.project-breadcrumb a{
    color:var(--muted);
    transition:.3s;
}
.project-breadcrumb a:hover{
    color:var(--secondary);
}
.project-breadcrumb i{
    color:#b8c2cf;
    font-size:11px;
}
.project-breadcrumb span{
    color:var(--primary);
    font-weight:700;
}
.project-hero-grid{
    display:grid;
    grid-template-columns:1.45fr .85fr;
    gap:45px;
    align-items:start;
}
.project-gallery{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.gallery-main{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    background:#f6f7fb;
    aspect-ratio:16/10;
}
.gallery-main img,
.gallery-main video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.gallery-expand{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    cursor:pointer;
    z-index:5;
}
.gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(110px,1fr));
    gap:15px;
}
.gallery-thumb{
    width:100%;
    aspect-ratio:1.25;
    object-fit:cover;
    border-radius:18px;
    cursor:pointer;
    border:3px solid transparent;
    transition:.35s;
}
.gallery-thumb.active{
    border-color:var(--secondary);
}
.gallery-thumb:hover{
    transform:translateY(-4px);
}
.project-summary{
    position:sticky;
    top:110px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:35px;
    box-shadow:var(--shadow);
}
.project-top-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
}
.project-type{
    display:inline-flex;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:13px;
    font-weight:700;
}
.project-status{
    display:inline-flex;
    padding:10px 18px;
    border-radius:40px;
    background:#ECFDF3;
    color:#16A34A;
    font-size:13px;
    font-weight:700;
}
.project-summary h1{
    font-size:40px;
    line-height:1.2;
    color:var(--primary);
    margin-bottom:20px;
}
.project-location{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
    margin-bottom:30px;
}
.project-builder{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    border:1px solid var(--border);
    border-radius:20px;
    margin-bottom:25px;
}
.project-builder img{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:16px;
    background:#fff;
}
.project-builder small{
    display:block;
    color:var(--muted);
    margin-bottom:6px;
}
.project-builder strong{
    color:var(--primary);
    font-size:18px;
}
.project-short-description{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:35px;
}
.project-actions{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}
.project-actions a{
    flex:1;
}
.project-icons{
    display:flex;
    gap:12px;
}
.project-icons button{
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    cursor:pointer;
    transition:.3s;
}
.project-icons button:hover{
    background:var(--secondary);
    color:#fff;
}
.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.gallery-lightbox.active{
    display:flex;
}
.gallery-lightbox img,
.gallery-lightbox video{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
}
.gallery-close{
    position:absolute;
    top:30px;
    right:40px;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
}
@media(max-width:991px){
    .project-hero-grid{
        grid-template-columns:1fr;
    }
    .project-summary{
        position:relative;
        top:auto;
    }
}
@media(max-width:768px){
    .project-summary h1{
        font-size:30px;
    }
    .project-actions{
        flex-direction:column;
    }
}

.project-highlights{
    padding:50px 0;
    background:#fff;
}
.project-highlights .highlights-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.project-highlights .highlight-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:26px;
    display:flex;
    gap:18px;
    align-items:center;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}
.project-highlights .highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.project-highlights .highlight-card i{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:22px;
}
.project-highlights strong{
    display:block;
    font-size:20px;
    color:var(--primary);
    margin-bottom:6px;
}
.project-highlights span{
    color:var(--muted);
    font-size:14px;
}
@media(max-width:1200px){
    .project-highlights .highlights-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:768px){
    .project-highlights .highlights-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .project-highlights .highlights-grid{
        grid-template-columns:1fr;
    }
}

.project-overview{
    padding:50px 0;
    background:#fafbfd;
}
.project-overview .overview-layout{
    display:grid;
    grid-template-columns:minmax(0,1.7fr) 430px;
    gap:70px;
    align-items:start;
}
.project-overview .overview-main{
    font-size:17px;
    line-height:2;
    color:var(--muted);
}
.project-overview .overview-main>*:first-child{
    margin-top:0;
}
.project-overview .overview-main h2,
.project-overview .overview-main h3,
.project-overview .overview-main h4{
    color:var(--primary);
    margin:40px 0 20px;
    line-height:1.3;
}
.project-overview .overview-main p{
    margin-bottom:24px;
}
.project-overview .overview-main ul{
    margin:25px 0;
    padding-left:22px;
}
.project-overview .overview-main li{
    margin-bottom:12px;
}
.project-overview .overview-main img{
    width:100%;
    border-radius:26px;
    margin:40px 0;
    display:block;
}
.project-overview .overview-main table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
}
.project-overview .overview-main td,
.project-overview .overview-main th{
    padding:16px;
    border:1px solid var(--border);
}
.project-overview .overview-main blockquote{
    background:#fff;
    border-left:5px solid var(--secondary);
    padding:30px;
    border-radius:18px;
    margin:40px 0;
    color:var(--primary);
    font-size:20px;
    line-height:1.7;
    box-shadow:var(--shadow);
}
.project-overview .overview-sidebar{
    position:sticky;
    top:120px;
}
.project-overview .overview-card{
    background:#fff;
    border-radius:28px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    overflow:hidden;
}
.project-overview .overview-card h3{
    padding:28px 32px;
    margin:0;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:26px;
}
.project-overview .overview-specs{
    padding:10px 32px 24px;
}
.project-overview .spec-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-bottom:1px solid var(--border);
    gap:20px;
}
.project-overview .spec-row:last-child{
    border:none;
}
.project-overview .spec-row span{
    color:var(--muted);
    font-size:15px;
}
.project-overview .spec-row strong{
    color:var(--primary);
    text-align:right;
    font-size:16px;
    font-weight:700;
}
@media(max-width:1100px){
    .project-overview .overview-layout{
        grid-template-columns:1fr;
        gap:50px;
    }
    .project-overview .overview-sidebar{
        position:relative;
        top:auto;
    }
}
@media(max-width:768px){
    .project-overview{
        padding:80px 0;
    }
    .project-overview .overview-card h3{
        font-size:22px;
        padding:22px 24px;
    }
    .project-overview .overview-specs{
        padding:0 24px 24px;
    }
    .project-overview .spec-row{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }
    .project-overview .spec-row strong{
        text-align:left;
    }
}

.project-units{
    padding:50px 0;
    background:#fff;
}
.project-unit-table{
    margin-top:60px;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.project-unit-head{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 170px;
    background:var(--primary);
    color:#fff;
    font-weight:700;
    padding:22px 28px;
}
.project-unit-row{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 170px;
    align-items:center;
    padding:26px 28px;
    border-top:1px solid var(--border);
    transition:.3s;
}
.project-unit-row:hover{
    background:#F8FBFF;
}
.unit-config strong{
    display:block;
    color:var(--primary);
    font-size:18px;
}
.unit-config small{
    display:block;
    color:var(--muted);
    margin-top:6px;
}
.unit-price{
    font-weight:700;
    color:var(--secondary);
    font-size:18px;
}
.unit-status{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:30px;
    background:#EEF8F0;
    color:#0A8A3A;
    font-size:14px;
    font-weight:600;
}
.unit-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:30px;
    background:var(--secondary);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.unit-btn:hover{
    background:var(--primary);
}
@media(max-width:991px){
    .project-unit-head{
        display:none;
    }
    .project-unit-row{
        display:block;
        padding:28px;
    }
    .project-unit-row>div{
        margin-bottom:14px;
    }
    .unit-btn{
        width:100%;
    }
}

.project-amenities{
    padding:50px 0;
    background:#f8fafc;
}
.amenity-group{
    margin-top:55px;
}
.amenity-group:first-of-type{
    margin-top:0;
}
.amenity-heading{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
    padding-bottom:14px;
    border-bottom:1px solid var(--border);
}
.amenity-heading h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}
.amenity-heading span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
}
.amenity-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}
.amenity-card{
        display:flex;
    align-items:flex-start;
    gap:18px;
    padding:24px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
    transition:.35s ease;
    height:100%;
}
.amenity-card:hover{
    transform:translateY(-6px);
    border-color:var(--secondary);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}
.amenity-icon{
    width:58px;
    height:58px;
    min-width:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:24px;
}
.amenity-icon i{
    font-size:28px;
    color:var(--secondary);
}
.amenity-card span{
    display:block;
    font-size:16px;
    font-weight:600;
    color:var(--primary);
}
.amenity-content{
    flex:1;
}
.amenity-content h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    color:var(--primary);
}
.amenity-content p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:var(--muted);
}
.project-empty{
    padding:100px 0;
}
.project-empty .container{
    text-align:center;
}
.project-empty p{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:20px 36px;
    border-radius:18px;
    background:#F8FAFC;
    border:1px dashed var(--border);
    color:var(--muted);
    font-size:17px;
    font-weight:500;
}
@media(max-width:991px){
    .amenity-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .project-amenities{
        padding:70px 0;
    }
    .amenity-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .amenity-heading{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
    .amenity-heading h3{
        font-size:22px;
    }
    .amenity-card{
        padding:20px;
    }
    .amenity-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }
    .amenity-icon i{
        font-size:24px;
    }
    .amenity-content h4{
        font-size:17px;
    }
}

.project-location{
    padding:50px 0;
    background:#fff;
}
.project-location-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:50px;
    align-items:start;
}
.project-map{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.project-map iframe{
    width:100%;
    height:650px;
    border:0;
}
.project-map img{
    width:100%;
    display:block;
}
.map-card{
    position:absolute;
    left:30px;
    bottom:30px;
    background:#fff;
    border-radius:18px;
    padding:20px 24px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.map-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:26px;
}
.map-card h4{
    margin-bottom:6px;
    font-size:20px;
    color:var(--primary);
}
.map-card p{
    margin:0;
    color:var(--muted);
}
.location-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.location-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.35s;
}
.location-card:hover{
    transform:translateX(8px);
    border-color:var(--secondary);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.location-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    flex-shrink:0;
}
.location-icon i{
    font-size:22px;
}
.location-info{
    flex:1;
}
.location-info small{
    color:var(--muted);
    display:block;
    margin-bottom:6px;
}
.location-info h4{
    margin:0;
    font-size:18px;
    color:var(--primary);
}
.location-distance{
    font-weight:700;
    color:var(--secondary);
    white-space:nowrap;
}
@media(max-width:991px){
    .project-location-grid{
        grid-template-columns:1fr;
    }
    .project-map iframe{
        height:450px;
    }
}
@media(max-width:767px){
    .project-location{
        padding:70px 0;
    }
    .map-card{
        position:static;
        border-radius:0;
    }
    .location-card{
        padding:18px;
    }
}

.project-builder{
    padding:50px 0;
    background:#f8fafc;
}
.builder-wrapper{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    gap:60px;
    align-items:center;
}
.builder-left{
    display:flex;
    align-items:center;
    gap:40px;
}
.builder-logo{
    width:170px;
    height:170px;
    flex-shrink:0;
    background:#fff;
    border-radius:24px;
    border:1px solid var(--border);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}
.builder-logo img{
    max-width:100%;
    max-height:100%;
}
.builder-details h3{
    font-size:32px;
    margin-bottom:18px;
    color:var(--primary);
}
.builder-details p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:28px;
}
.builder-actions{
    display:flex;
    gap:15px;
}
.builder-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}
.builder-stat{
    background:#fff;
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    border:1px solid var(--border);
    transition:.35s;
}
.builder-stat:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.builder-stat strong{
    display:block;
    font-size:34px;
    color:var(--secondary);
    margin-bottom:10px;
}
.builder-stat span{
    color:var(--muted);
    font-weight:500;
}
@media(max-width:991px){
    .builder-wrapper{
        grid-template-columns:1fr;
    }
    .builder-left{
        flex-direction:column;
        text-align:center;
    }
}
@media(max-width:767px){
    .project-builder{
        padding:70px 0;
    }
    .builder-right{
        grid-template-columns:1fr;
    }
    .builder-logo{
        width:140px;
        height:140px;
    }
    .builder-details h3{
        font-size:28px;
    }
}

.project-faq{
    padding:50px 0;
    background:#f8fafc;
}
.project-faq-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:start;
}
.faq-image{
    position:sticky;
    top:120px;
}
.faq-image img{
    width:100%;
    border-radius:24px;
    display:block;
}
.faq-card{
    background:#fff;
    border-radius:20px;
    margin-top:-80px;
    margin-inline:25px;
    padding:30px;
    position:relative;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.faq-card span{
    color:var(--secondary);
    font-weight:600;
}
.faq-card h3{
    margin:12px 0;
    color:var(--primary);
}
.faq-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:25px;
}
.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.faq-item{
    background:#fff;
    border-radius:18px;
    border:1px solid var(--border);
    overflow:hidden;
}
.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 30px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:var(--primary);
}
.faq-answer{
    display:none;
    padding:0 30px 25px;
    color:var(--muted);
    line-height:1.9;
}
.faq-item.active .faq-answer{
    display:block;
}
@media(max-width:991px){
    .project-faq-grid{
        grid-template-columns:1fr;
    }
    .faq-image{
        position:static;
    }
}
@media(max-width:767px){
    .project-faq{
        padding:70px 0;
    }
    .faq-question{
        padding:20px;
        font-size:17px;
    }
    .faq-answer{
        padding:0 20px 20px;
    }
    .faq-card{
        margin-inline:15px;
    }
}

.project-final-cta{
    padding:50px 0;
    background:#fff;
}
.project-cta-card{
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    border-radius:28px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    gap:60px;
    align-items:center;
    color:#fff;
}
.project-cta-content{
    flex:1;
}
.project-cta-content span{
    color:#BFD7FF;
    font-weight:600;
}
.project-cta-content h2{
    color:#fff;
    margin:18px 0;
    font-size:48px;
    line-height:1.2;
}
.project-cta-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}
.project-cta-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}
.project-cta-features div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
}
.project-cta-features i{
    color:#4ADE80;
}
.project-cta-buttons{
    width:280px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.project-cta-buttons .property-btn,
.project-cta-buttons .outline-btn,
.project-cta-buttons .whatsapp-btn{
    width:100%;
    justify-content:center;
}
.whatsapp-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}
.whatsapp-btn:hover{
    background:#1EBE5D;
}
@media(max-width:991px){
    .project-cta-card{
        flex-direction:column;
        text-align:center;
        padding:50px;
    }
    .project-cta-features{
        grid-template-columns:1fr;
    }
    .project-cta-buttons{
        width:100%;
        max-width:350px;
    }
}
@media(max-width:767px){
    .project-final-cta{
        padding:70px 0;
    }
    .project-cta-card{
        padding:35px 25px;
    }
    .project-cta-content h2{
        font-size:34px;
    }
    .project-cta-content p{
        font-size:16px;
    }
}

.advertising-hero{
    padding:40px 0;
    background:linear-gradient(135deg,#071B4D 0%,#0E5BFF 100%);
    color:#fff;
    overflow:hidden;
}
.advertising-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    margin-bottom:25px;
    font-size:14px;
    font-weight:600;
}
.hero-content h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}
.hero-content h1 span{
    color:#19B8FF;
}
.hero-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.9;
    max-width:640px;
}
.hero-actions{
    display:flex;
    gap:20px;
    margin:40px 0;
}
.hero-trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}
.hero-trust strong{
    display:block;
    font-size:34px;
    color:#fff;
    margin-bottom:6px;
}
.hero-trust span{
    color:rgba(255,255,255,.75);
    font-size:15px;
}
.hero-visual img{
    width:100%;
    display:block;
    border-radius:30px;
    box-shadow:0 50px 100px rgba(0,0,0,.35);
}
@media(max-width:991px){
    .advertising-hero{
        padding:90px 0;
    }
    .advertising-hero-grid{
        grid-template-columns:1fr;
    }
    .hero-content h1{
        font-size:42px;
    }
    .hero-trust{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:576px){
    .hero-content h1{
        font-size:34px;
    }
    .hero-actions{
        flex-direction:column;
    }
    .hero-trust{
        grid-template-columns:1fr;
    }
}

.advertising-benefits{
    padding:50px 0;
    background:#fff;
}
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}
.benefits-grid article{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px 30px;
    transition:.35s ease;
    text-align:left;
}
.benefits-grid article:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:rgba(14,91,255,.25);
}
.benefit-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}
.benefit-icon i{
    font-size:28px;
    color:var(--secondary);
}
.benefits-grid h3{
    font-size:22px;
    margin-bottom:15px;
    color:var(--primary);
}
.benefits-grid p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
@media(max-width:991px){
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}

.advertising-solutions{
    padding:50px 0;
    background:var(--bg);
}
.solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}
.solution-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:40px;
    transition:.35s ease;
    position:relative;
}
.solution-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.solution-card.featured{
    border:2px solid var(--secondary);
}
.solution-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
}
.solution-icon i{
    font-size:30px;
    color:var(--secondary);
}
.solution-card h3{
    font-size:28px;
    margin-bottom:16px;
    color:var(--primary);
}
.solution-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
}
.solution-card ul{
    margin:0;
    padding:0;
    list-style:none;
}
.solution-card li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    color:var(--text);
}
.solution-card li::before{
    content:"✓";
    color:#16A34A;
    font-weight:700;
}
@media(max-width:991px){
    .solutions-grid{
        grid-template-columns:1fr;
    }
}

.marketing-solutions{
    padding:50px 0;
    background:#fff;
}
.marketing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}
.marketing-card{
    padding:38px;
    border:1px solid var(--border);
    border-radius:26px;
    transition:.35s ease;
    background:#fff;
}
.marketing-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.marketing-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}
.marketing-icon i{
    font-size:30px;
    color:var(--secondary);
}
.marketing-card h3{
    margin-bottom:14px;
    color:var(--primary);
    font-size:24px;
}
.marketing-card p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .marketing-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .marketing-grid{
        grid-template-columns:1fr;
    }
}

.advertising-placements{
    padding:50px 0;
    background:var(--bg);
}
.placement-layout{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}
.placement-item{
    background:#fff;
    border-radius:26px;
    padding:34px;
    border:1px solid var(--border);
    transition:.35s ease;
    position:relative;
}
.placement-item:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.placement-item.hero{
    grid-column:span 3;
    display:grid;
    grid-template-columns:90px 1fr;
    align-items:center;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    color:#fff;
}
.placement-item.hero h3{
    color:#fff;
}
.placement-item.hero span{
    color:#19B8FF;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
    font-weight:700;
}
.placement-item.hero p{
    color:rgba(255,255,255,.82);
}
.placement-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}
.placement-icon i{
    font-size:32px;
}
.placement-item > i{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:26px;
    margin-bottom:22px;
}
.placement-item h4{
    font-size:22px;
    color:var(--primary);
    margin-bottom:14px;
}
.placement-item p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .placement-layout{
        grid-template-columns:repeat(2,1fr);
    }
    .placement-item.hero{
        grid-column:span 2;
    }
}
@media(max-width:576px){
    .placement-layout{
        grid-template-columns:1fr;
    }
    .placement-item.hero{
        grid-column:span 1;
        grid-template-columns:1fr;
        text-align:center;
        gap:25px;
    }
    .placement-icon{
        margin:auto;
    }
}

.advertising-process{
    padding:50px 0;
    background:#fff;
}
.process-flow{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
    gap:25px;
    align-items:center;
    margin-top:70px;
}
.process-step{
    text-align:center;
}
.process-circle{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--secondary),var(--accent));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    font-weight:700;
    box-shadow:0 20px 40px rgba(14,91,255,.25);
}
.process-step h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:15px;
}
.process-step p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
.process-arrow{
    font-size:34px;
    color:var(--secondary);
    opacity:.5;
}
@media(max-width:991px){
    .process-flow{
        grid-template-columns:1fr;
    }
    .process-arrow{
        transform:rotate(90deg);
        margin:10px auto;
    }
}

.advertising-dashboard{
    padding:50px 0;
    background:var(--bg);
}
.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}
.dashboard-content>span{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}
.dashboard-content h2{
    font-size:46px;
    line-height:1.2;
    color:var(--primary);
    margin-bottom:24px;
}
.dashboard-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:35px;
}
.dashboard-features{
    list-style:none;
    padding:0;
    margin:0;
}
.dashboard-features li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    font-weight:500;
}
.dashboard-features i{
    width:42px;
    height:42px;
    border-radius:12px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
}
.dashboard-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:var(--shadow);
}
.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}
.dashboard-header span{
    background:#E8F8EE;
    color:#16A34A;
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}
.metric-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}
.metric-box{
    background:#F8FAFC;
    border-radius:18px;
    padding:22px;
}
.metric-box strong{
    display:block;
    font-size:30px;
    color:var(--primary);
    margin-bottom:8px;
}
.metric-box span{
    color:var(--muted);
    font-size:14px;
}
.campaign-row{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:18px;
    align-items:center;
    margin-bottom:18px;
}
.bar{
    height:12px;
    border-radius:20px;
    background:#EEF3F8;
    overflow:hidden;
}
.bar span{
    display:block;
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
}
@media(max-width:991px){
    .dashboard-grid{
        grid-template-columns:1fr;
    }
    .dashboard-content h2{
        font-size:36px;
    }
}
@media(max-width:576px){
    .metric-grid{
        grid-template-columns:1fr;
    }
    .campaign-row{
        grid-template-columns:1fr;
    }
}

.advertising-packages{
    padding:50px 0;
    background:#fff;
}
.package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}
.package-card{
    position:relative;
    border:1px solid var(--border);
    border-radius:28px;
    padding:45px 40px;
    transition:.35s ease;
    background:#fff;
}
.package-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}
.package-card.featured{
    border:2px solid var(--secondary);
    transform:scale(1.03);
}
.popular-tag{
    position:absolute;
    top:-15px;
    left:40px;
    background:var(--secondary);
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}
.package-header span{
    color:var(--secondary);
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}
.package-header h3{
    margin:12px 0 20px;
    font-size:32px;
    color:var(--primary);
}
.package-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:30px;
}
.package-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}
.package-card li{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:15px;
}
.package-card li i{
    color:#16A34A;
}
.package-card .property-btn{
    width:100%;
    justify-content:center;
}
@media(max-width:991px){
    .package-grid{
        grid-template-columns:1fr;
    }
    .package-card.featured{
        transform:none;
    }
}

.advertising-contact{
    padding:50px 0;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
}
.advertising-contact-wrapper{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:70px;
    align-items:center;
}
.contact-content{
    color:#fff;
}
.contact-content>span{
    display:inline-block;
    margin-bottom:18px;
    color:#19B8FF;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
}
.contact-content h2{
    font-size:50px;
    line-height:1.15;
    margin-bottom:25px;
}
.contact-content p{
    font-size:18px;
    line-height:1.9;
    opacity:.9;
    margin-bottom:40px;
}
.contact-highlights{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.highlight{
    display:flex;
    align-items:center;
    gap:18px;
}
.highlight i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}
.highlight strong{
    display:block;
    font-size:18px;
}
.highlight span{
    color:rgba(255,255,255,.75);
}
.contact-form-card{
    background:#fff;
    padding:45px;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);
}
.contact-form-card h3{
    color:var(--primary);
    margin-bottom:30px;
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.contact-form-card .form-group{
    margin-bottom:20px;
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select{
    width:100%;
    padding:16px 18px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:15px;
}
.contact-form-card textarea{
    resize:none;
}
.contact-form-card button{
    width:100%;
    justify-content:center;
}
@media(max-width:991px){
    .advertising-contact-wrapper{
        grid-template-columns:1fr;
    }
    .contact-content h2{
        font-size:38px;
    }
}
@media(max-width:576px){
    .form-row{
        grid-template-columns:1fr;
    }
    .contact-form-card{
        padding:30px;
    }
}

.thank-you-hero{
    padding:40px 0 60px;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
}
.thank-card{
    max-width:760px;
    margin:auto;
    text-align:center;
    color:#fff;
}
.thank-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:auto auto 30px;
    background:#16A34A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}
.thank-card span{
    color:#19B8FF;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}
.thank-card h1{
    font-size:54px;
    margin:20px 0;
}
.thank-card p{
    line-height:1.9;
    opacity:.9;
    font-size:18px;
}
.campaign-summary{
    margin-top:-50px;
    padding-bottom:80px;
}
.summary-card{
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:var(--shadow);
}
.summary-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}
.summary-header span{
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    padding:10px 18px;
    border-radius:40px;
    font-weight:700;
}
.summary-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.summary-grid label{
    display:block;
    color:var(--muted);
    margin-bottom:8px;
    font-size:14px;
}
.summary-grid strong{
    color:var(--primary);
}
.thank-actions{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
@media(max-width:991px){
    .summary-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .summary-grid{
        grid-template-columns:1fr;
    }
    .summary-header{
        flex-direction:column;
        gap:20px;
    }
    .thank-card h1{
        font-size:38px;
    }
}

.career-apply-hero{
    padding:40px 0 60px;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
}
.career-hero-card{
    max-width:900px;
    color:#fff;
}
.career-label{
    display:inline-block;
    color:#19B8FF;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}
.career-hero-card h1{
    font-size:56px;
    margin-bottom:25px;
}
.career-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:25px;
}
.career-meta span{
    background:rgba(255,255,255,.12);
    padding:10px 18px;
    border-radius:40px;
}
.career-hero-card p{
    font-size:18px;
    line-height:1.9;
    max-width:800px;
}

.career-application{
    padding:50px 0;
    background:#f8fafc;
}
.career-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:45px;
    align-items:start;
}
.career-form-card,
.career-sidebar-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow);
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.form-group{
    margin-bottom:22px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:var(--primary);
}
.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid var(--border);
    border-radius:14px;
}
.career-sidebar{
    position:sticky;
    top:100px;
}
.career-sidebar ul{
    margin:30px 0 0;
    padding:0;
    list-style:none;
}
.career-sidebar li{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:center;
}
.career-sidebar i{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
}
@media(max-width:991px){
    .career-layout{
        grid-template-columns:1fr;
    }
    .career-sidebar{
        position:static;
    }
}
@media(max-width:576px){
    .form-row{
        grid-template-columns:1fr;
    }
    .career-hero-card h1{
        font-size:38px;
    }
}

.career-overview{
    padding:50px 0;
    background:#fff;
}
.career-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:50px 0 40px;
    flex-wrap:wrap;
}
.career-tab{
    border:none;
    background:#EEF4FF;
    color:var(--primary);
    padding:14px 26px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.career-tab.active{
    background:var(--secondary);
    color:#fff;
}
.career-tab-content{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:45px;
    box-shadow:var(--shadow);
}
.career-content-panel{
    display:none;
    animation:fade .35s ease;
}
.career-content-panel.active{
    display:block;
}
.career-content-panel h2,
.career-content-panel h3,
.career-content-panel h4{
    color:var(--primary);
    margin-bottom:18px;
}
.career-content-panel p{
    line-height:1.9;
    color:var(--text);
}
.career-content-panel ul{
    margin:20px 0;
    padding-left:22px;
}
.career-content-panel li{
    margin-bottom:12px;
    line-height:1.8;
}
@keyframes fade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:none;
    }
}
.career-html-content{
    color:var(--text);
    line-height:1.8;
}
.career-html-content p{
    margin-bottom:15px;
}
.career-html-content ul{
    margin:18px 0;
    padding-left:20px;
}
.career-html-content li{
    margin-bottom:10px;
}
.career-html-content h1,
.career-html-content h2,
.career-html-content h3,
.career-html-content h4{
    margin:18px 0 10px;
    color:var(--primary);
}

.career-thank-hero{
    padding:40px 0 60px;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
}
.career-thank-card{
    max-width:760px;
    margin:auto;
    text-align:center;
    color:#fff;
}
.thank-icon{
    width:90px;
    height:90px;
    margin:auto auto 30px;
    border-radius:50%;
    background:#16A34A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}
.career-thank-card span{
    display:inline-block;
    color:#19B8FF;
    text-transform:uppercase;
    font-weight:700;
    margin-bottom:20px;
}
.career-thank-card h1{
    font-size:54px;
    margin-bottom:25px;
}
.career-thank-card p{
    font-size:18px;
    line-height:1.9;
    opacity:.9;
}
.career-application-summary{
    margin-top:-55px;
    padding-bottom:90px;
}
.summary-card{
    background:#fff;
    border-radius:26px;
    padding:45px;
    box-shadow:var(--shadow);
}
.summary-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:35px;
}
.summary-header span{
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    padding:10px 18px;
    border-radius:40px;
    font-weight:700;
}
.summary-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.summary-grid label{
    display:block;
    color:var(--muted);
    margin-bottom:8px;
}
.status-badge{
    color:#16A34A;
}
.career-next-steps{
    padding:100px 0;
    background:#fff;
}
.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:50px;
}
.steps-grid article{
    text-align:center;
    padding:35px;
    border:1px solid var(--border);
    border-radius:22px;
}
.steps-grid article span{
    display:inline-block;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:18px;
}
.steps-grid article i{
    font-size:30px;
    color:var(--secondary);
    margin-bottom:20px;
}
.career-help{
    padding:100px 0;
    background:#F8FAFC;
}
.career-help-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:45px;
    background:#fff;
    border-radius:26px;
    box-shadow:var(--shadow);
}
.help-actions{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
@media(max-width:991px){
    .summary-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .steps-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .career-help-card{
        flex-direction:column;
        text-align:center;
    }
}
@media(max-width:576px){
    .summary-grid{
        grid-template-columns:1fr;
    }
    .steps-grid{
        grid-template-columns:1fr;
    }
    .summary-header{
        flex-direction:column;
        gap:20px;
    }
    .career-thank-card h1{
        font-size:38px;
    }
}

.blog-hero{
    padding:40px 0 60px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    text-align:center;
}
.blog-hero span{
    display:inline-block;
    margin-bottom:18px;
    color:var(--accent);
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}
.blog-hero h1{
    max-width:900px;
    margin:0 auto 25px;
    font-size:58px;
    line-height:1.2;
    color:#fff;
}
.blog-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.88);
}


.featured-blog{
    padding:50px 0;
    background:#fff;
}
.featured-layout{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}
.featured-image{
    display:block;
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
}
.featured-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.featured-image:hover img{
    transform:scale(1.05);
}
.featured-content span{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-weight:600;
    margin-bottom:20px;
}
.featured-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}
.featured-content h2 a{
    color:var(--primary);
    text-decoration:none;
}
.featured-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:30px;
}
.featured-content .blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:35px;
}
.featured-content .blog-meta span{
    padding:0;
    margin:0;
    background:none;
    color:var(--muted);
    font-weight:500;
}
.featured-content .blog-meta i{
    color:var(--secondary);
    margin-right:8px;
}

.blog-categories{
    padding-bottom:50px;
    background:#fff;
}
.category-list{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
}
.category-pill{
    padding:14px 26px;
    border-radius:50px;
    background:#EEF4FF;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.category-pill:hover{
    background:var(--secondary);
    color:#fff;
}

.blog-listing{
    padding:50px 0;
    background:#fff;
}
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}
.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s ease;
}
.blog-card:hover{
    transform:translateY(-8px);
}
.blog-image{
    display:block;
    position:relative;
    aspect-ratio:16/10;
    overflow:hidden;
}
.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.blog-card:hover .blog-image img{
    transform:scale(1.08);
}
.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:var(--secondary);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
}
.blog-content{
    padding:30px;
}
.blog-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    color:var(--muted);
    font-size:14px;
    margin-bottom:18px;
}
.blog-meta i{
    color:var(--secondary);
    margin-right:6px;
}
.blog-content h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:18px;
}
.blog-content h3 a{
    color:var(--primary);
    text-decoration:none;
}
.blog-content p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:25px;
}
.blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:20px;
    border-top:1px solid var(--border);
}
.blog-footer span{
    color:var(--muted);
    font-size:14px;
}
.blog-footer i{
    color:var(--secondary);
    margin-right:6px;
}
.blog-read-more{
    color:var(--secondary);
    font-weight:600;
    text-decoration:none;
}
.blog-read-more i{
    margin-left:8px;
}
@media(max-width:991px){
    .blog-hero h1{
        font-size:44px;
    }
    .featured-layout{
        grid-template-columns:1fr;
    }
    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .blog-hero{
        padding:90px 0 70px;
    }
    .blog-hero h1{
        font-size:34px;
    }
    .featured-content h2{
        font-size:30px;
    }
    .blog-grid{
        grid-template-columns:1fr;
    }
    .blog-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
    .category-list{
        justify-content:flex-start;
    }
}

.blog-newsletter{
    padding:50px 0;
    background:#f7f9fc;
}
.newsletter-card{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius:30px;
    padding:70px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}
.newsletter-card::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}
.newsletter-card::after{
    content:"";
    position:absolute;
    bottom:-120px;
    left:-120px;
    width:280px;
    height:280px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}
.newsletter-content{
    position:relative;
    z-index:2;
}
.newsletter-content span{
    display:inline-block;
    color:var(--accent);
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
}
.newsletter-content h2{
    color:#fff;
    font-size:48px;
    max-width:760px;
    margin:0 auto 25px;
    line-height:1.25;
}
.newsletter-content p{
    max-width:720px;
    margin:auto;
    color:rgba(255,255,255,.88);
    line-height:1.9;
    font-size:17px;
}
.newsletter-form{
    margin:45px auto 30px;
    max-width:700px;
    display:flex;
    gap:18px;
    position:relative;
    z-index:2;
}
.newsletter-input{
    flex:1;
    background:#fff;
    display:flex;
    align-items:center;
    border-radius:60px;
    padding:0 22px;
}
.newsletter-input i{
    color:var(--secondary);
    margin-right:15px;
}
.newsletter-input input{
    width:100%;
    border:none;
    outline:none;
    padding:18px 0;
    background:none;
    font-size:16px;
}
.newsletter-form .btn-primary{
    white-space:nowrap;
}
.newsletter-benefits{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}
.newsletter-benefits span{
    color:rgba(255,255,255,.92);
    font-size:15px;
}
.newsletter-benefits i{
    color:#4ADE80;
    margin-right:8px;
}
@media(max-width:991px){
    .newsletter-card{
        padding:55px 35px;
    }
    .newsletter-content h2{
        font-size:38px;
    }
    .newsletter-form{
        flex-direction:column;
    }
}
@media(max-width:576px){
    .newsletter-content h2{
        font-size:30px;
    }
    .newsletter-benefits{
        flex-direction:column;
        gap:15px;
        align-items:center;
    }
}

.blog-details-hero{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:40px 0 60px;
    position:relative;
    overflow:hidden;
}
.blog-details-hero::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}
.blog-details-hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    left:-100px;
    bottom:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}
.blog-details-hero .container{
    position:relative;
    z-index:2;
}
.blog-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:35px;
    font-size:14px;
}
.blog-breadcrumb a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
}
.blog-breadcrumb span{
    color:#fff;
}
.blog-category-pill{
    display:inline-flex;
    align-items:center;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    margin-bottom:30px;
    font-size:14px;
    font-weight:600;
}
.blog-details-hero h1{
    max-width:980px;
    font-size:58px;
    line-height:1.18;
    margin-bottom:28px;
    color:#fff;
}
.blog-details-hero p{
    max-width:780px;
    color:rgba(255,255,255,.85);
    line-height:1.9;
    font-size:18px;
    margin-bottom:40px;
}
.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}
.blog-meta span{
    color:rgba(255,255,255,.88);
    font-size:15px;
}
.blog-meta i{
    color:var(--accent);
    margin-right:8px;
}
.reading-progress{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:4px;
    z-index:9999;
    background:transparent;
}
.reading-progress-bar{
    width:0;
    height:100%;
    background:var(--secondary);
}
@media(max-width:991px){
    .blog-details-hero{
        padding:120px 0 80px;
    }
    .blog-details-hero h1{
        font-size:44px;
    }
}
@media(max-width:576px){
    .blog-details-hero{
        padding:90px 0 70px;
    }
    .blog-details-hero h1{
        font-size:32px;
    }
    .blog-details-hero p{
        font-size:16px;
    }
    .blog-meta{
        gap:18px;
    }
}

.blog-featured-image{
    position:relative;
    margin-top:-60px;
    z-index:5;
    padding-bottom:80px;
}
.featured-image-card{
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
    background:#fff;
}
.featured-image-card img{
    width:100%;
    display:block;
    aspect-ratio:16/8;
    object-fit:cover;
    transition:.5s;
}
.featured-image-card:hover img{
    transform:scale(1.03);
}
@media(max-width:991px){
    .blog-featured-image{
        margin-top:-40px;
        padding-bottom:60px;
    }
}
@media(max-width:576px){
    .blog-featured-image{
        margin-top:-30px;
        padding-bottom:45px;
    }
    .featured-image-card{
        border-radius:20px;
    }
}

.blog-article-section{
    padding:40px 0 60px;
    background:#fff;
}
.blog-layout{
    display:grid;
    grid-template-columns:260px minmax(0,1fr) 80px;
    gap:55px;
}
.blog-left-sidebar{
    position:relative;
}
.blog-toc{
    position:sticky;
    top:120px;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    background:#fff;
    box-shadow:var(--shadow);
}
.blog-toc h4{
    margin-bottom:22px;
    font-size:20px;
}
.blog-toc h4 i{
    color:var(--secondary);
    margin-right:8px;
}
.blog-toc nav{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.blog-toc nav a{
    color:var(--muted);
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}
.blog-toc nav a:hover,
.blog-toc nav a.active{
    color:var(--secondary);
    padding-left:10px;
}
.blog-article{
    max-width:100%;
    font-size:18px;
    color:#374151;
    line-height:2;
}
.blog-article>*{
    margin-bottom:28px;
}
.blog-article h2{
    margin-top:60px;
    margin-bottom:20px;
    color:var(--primary);
    font-size:38px;
    line-height:1.3;
}
.blog-article h3{
    margin-top:45px;
    margin-bottom:18px;
    font-size:30px;
    color:var(--primary);
}
.blog-article h4{
    margin-top:35px;
    margin-bottom:15px;
    font-size:24px;
}
.blog-article img{
    width:100%;
    border-radius:22px;
    margin:40px 0;
    box-shadow:var(--shadow);
}
.blog-article p{
    color:#4B5563;
}
.blog-article ul,
.blog-article ol{
    padding-left:24px;
}
.blog-article li{
    margin-bottom:12px;
}
.blog-article blockquote{
    border-left:5px solid var(--secondary);
    background:#F7FAFF;
    padding:35px;
    border-radius:18px;
    font-size:24px;
    font-style:italic;
    color:var(--primary);
}
.blog-article table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
}
.blog-article table th{
    background:var(--primary);
    color:#fff;
    padding:18px;
}
.blog-article table td{
    border:1px solid var(--border);
    padding:16px;
}
.blog-article a{
    color:var(--secondary);
    text-decoration:none;
}
.blog-article code{
    background:#EEF2FF;
    padding:3px 8px;
    border-radius:6px;
}
.blog-right-sidebar{
    position:relative;
}
.blog-share{
    position:sticky;
    top:150px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}
.blog-share span{
    font-size:13px;
    color:var(--muted);
    writing-mode:vertical-lr;
}
.blog-share a,
.blog-share button{
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    background:#fff;
    box-shadow:var(--shadow);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
    color:var(--primary);
}
.blog-share a:hover,
.blog-share button:hover{
    background:var(--secondary);
    color:#fff;
}
@media(max-width:1200px){
    .blog-layout{
        grid-template-columns:220px 1fr;
    }
    .blog-right-sidebar{
        display:none;
    }
}
@media(max-width:991px){
    .blog-layout{
        grid-template-columns:1fr;
    }
    .blog-left-sidebar{
        display:none;
    }
    .blog-article{
        font-size:17px;
    }
    .blog-article h2{
        font-size:32px;
    }
    .blog-article h3{
        font-size:26px;
    }
}
@media(max-width:576px){
    .blog-article{
        font-size:16px;
    }
    .blog-article h2{
        font-size:28px;
    }
    .blog-article h3{
        font-size:23px;
    }
    .blog-article blockquote{
        padding:25px;
        font-size:20px;
    }
}

.blog-inline-cta{
    padding:50px 0;
    background:#fff;
}
.inline-cta-card{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius:30px;
    padding:60px;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
}
.inline-cta-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-80px;
    top:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}
.inline-cta-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    left:-80px;
    bottom:-80px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}
.inline-cta-content{
    position:relative;
    z-index:2;
}
.inline-cta-content span{
    color:var(--accent);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
}
.inline-cta-content h2{
    margin:18px auto 20px;
    max-width:760px;
    color:#fff;
    font-size:44px;
    line-height:1.3;
}
.inline-cta-content p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.88);
    line-height:1.9;
}
.inline-cta-actions{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    position:relative;
    z-index:2;
}
.inline-cta-actions .btn-outline{
    background:transparent;
    border:2px solid rgba(255,255,255,.4);
    color:#fff;
}
.inline-cta-actions .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}
@media(max-width:768px){
    .inline-cta-card{
        padding:40px 25px;
    }
    .inline-cta-content h2{
        font-size:32px;
    }
    .inline-cta-actions{
        flex-direction:column;
    }
}

.blog-navigation{
    padding:50px 0;
}
.blog-nav-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}
.blog-nav-card{
    display:flex;
    align-items:center;
    gap:22px;
    padding:24px;
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow);
    text-decoration:none;
    transition:.35s;
}
.blog-nav-card:hover{
    transform:translateY(-5px);
}
.blog-nav-card.next{
    justify-content:flex-end;
}
.blog-nav-image{
    width:120px;
    height:90px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:16px;
}
.blog-nav-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.blog-nav-content small{
    color:var(--secondary);
    display:block;
    margin-bottom:10px;
}
.blog-nav-content h3{
    color:var(--primary);
    font-size:20px;
    line-height:1.5;
}
@media(max-width:768px){
    .blog-nav-grid{
        grid-template-columns:1fr;
    }
}

.related-blogs{
    padding:50px 0;
    background:#f8fafc;
    border-top:1px solid var(--border);
}
.related-blogs .sl-section-title{
    margin-bottom:60px;
}
.related-blogs .blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}
.related-blogs .blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}
.related-blogs .blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}
.related-blogs .blog-image{
    display:block;
    position:relative;
    overflow:hidden;
    aspect-ratio:16/10;
}
.related-blogs .blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}
.related-blogs .blog-card:hover .blog-image img{
    transform:scale(1.08);
}
.related-blogs .blog-category{
    position:absolute;
    top:18px;
    left:18px;
    background:var(--secondary);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:12px;
    font-weight:600;
}
.related-blogs .blog-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.related-blogs .blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:18px;
    font-size:13px;
    color:var(--muted);
}
.related-blogs .blog-meta i{
    color:var(--secondary);
    margin-right:6px;
}
.related-blogs .blog-content h3{
    font-size:24px;
    line-height:1.45;
    margin-bottom:16px;
}
.related-blogs .blog-content h3 a{
    color:var(--primary);
    text-decoration:none;
    transition:.3s;
}
.related-blogs .blog-content h3 a:hover{
    color:var(--secondary);
}
.related-blogs .blog-content p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:24px;
    flex:1;
}
.related-blogs .blog-content .read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--secondary);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}
.related-blogs .blog-content .read-more:hover{
    gap:12px;
}
@media(max-width:991px){
    .related-blogs .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .related-blogs{
        padding:90px 0;
    }
    .related-blogs .blog-grid{
        grid-template-columns:1fr;
    }
    .related-blogs .blog-content h3{
        font-size:21px;
    }
}

.blog-comments{
    padding:50px 0;
    background:#fff;
}
.comment-form-card{
    margin:60px 0;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:var(--shadow);
}
.comment-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}
.comment-form-card .form-group{
    margin-bottom:20px;
}
.comment-form-card label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}
.comment-form-card input,
.comment-form-card textarea{
    width:100%;
    padding:16px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:15px;
}
.comments-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}
.comment-item{
    display:flex;
    gap:25px;
}
.comment-avatar{
    width:64px;
    height:64px;
    flex-shrink:0;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}
.comment-avatar.small{
    width:50px;
    height:50px;
    font-size:18px;
}
.comment-body{
    flex:1;
}
.comment-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}
.comment-header h4{
    margin:0;
}
.comment-header span{
    color:var(--muted);
    font-size:14px;
}
.comment-body p{
    color:var(--muted);
    line-height:1.9;
}
.reply-toggle{
    background:none;
    border:none;
    color:var(--secondary);
    font-weight:600;
    cursor:pointer;
    margin-top:15px;
}
.reply-form{
    display:none;
    margin-top:25px;
}
.reply-form.active{
    display:block;
}
.reply-form input,
.reply-form textarea{
    width:100%;
    margin-bottom:15px;
    padding:14px;
    border:1px solid var(--border);
    border-radius:12px;
}
.reply-item{
    display:flex;
    gap:20px;
    margin-top:35px;
    margin-left:40px;
    padding-left:25px;
    border-left:2px solid var(--border);
}
.no-comments{
    text-align:center;
    padding:70px 20px;
}
.no-comments i{
    font-size:60px;
    color:var(--secondary);
    margin-bottom:20px;
}
@media(max-width:768px){
    .comment-grid{
        grid-template-columns:1fr;
    }
    .comment-item{
        flex-direction:column;
    }
    .reply-item{
        margin-left:10px;
    }
}

.guide-hero{
    padding:50px 0 60px;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    overflow:hidden;
    position:relative;
}
.guide-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-120px;
    top:-120px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
}
.guide-hero::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    left:-120px;
    bottom:-120px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
}
.guide-hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}
.guide-label{
    display:inline-flex;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border-radius:40px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}
.guide-content h1{
    color:#fff;
    font-size:62px;
    line-height:1.18;
    margin-bottom:25px;
}
.guide-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
    max-width:650px;
}
.guide-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
.guide-actions .btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:transparent;
}
.guide-actions .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}
.guide-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 40px 90px rgba(0,0,0,.18);
}
@media(max-width:991px){
    .guide-hero{
        padding:120px 0 80px;
    }
    .guide-hero-grid{
        grid-template-columns:1fr;
    }
    .guide-content h1{
        font-size:46px;
    }
}
@media(max-width:576px){
    .guide-content h1{
        font-size:34px;
    }
    .guide-content p{
        font-size:16px;
    }
}

.guide-benefits{
    padding:50px 0;
    background:#fff;
}
.guide-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
}
.guide-benefit-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    transition:.35s ease;
    border:1px solid transparent;
    text-align:center;
}
.guide-benefit-card:hover{
    transform:translateY(-8px);
    border-color:rgba(14,91,255,.12);
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}
.guide-icon{
    width:78px;
    height:78px;
    margin:auto auto 25px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:30px;
}
.guide-benefit-card h3{
    margin-bottom:16px;
    font-size:24px;
    color:var(--primary);
}
.guide-benefit-card p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:1100px){
    .guide-benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .guide-benefits{
        padding:90px 0;
    }
    .guide-benefit-grid{
        grid-template-columns:1fr;
    }
    .guide-benefit-card{
        padding:35px 25px;
    }
}

.buying-process{
    padding:50px 0;
    background:#F8FAFC;
}
.buying-timeline{
    margin-top:80px;
    position:relative;
    max-width:900px;
    margin-inline:auto;
}
.buying-timeline::before{
    content:"";
    position:absolute;
    left:32px;
    top:0;
    bottom:0;
    width:3px;
    background:#DCE8FF;
}
.timeline-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:55px;
}
.timeline-marker{
    width:66px;
    height:66px;
    min-width:66px;
    border-radius:50%;
    background:#fff;
    border:4px solid var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:var(--secondary);
    z-index:2;
    transition:.35s;
}
.timeline-item:hover .timeline-marker{
    background:var(--secondary);
    color:#fff;
}
.timeline-content{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.timeline-item:hover .timeline-content{
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}
.timeline-content h3{
    margin-bottom:18px;
    color:var(--primary);
    font-size:28px;
}
.timeline-content p{
    color:var(--muted);
    line-height:1.9;
}
.timeline-tip{
    margin-top:22px;
    padding:18px 22px;
    background:#F4F8FF;
    border-left:4px solid var(--secondary);
    border-radius:12px;
    color:#4B5563;
}
.timeline-tip i{
    color:var(--secondary);
    margin-right:10px;
}
@media(max-width:768px){
    .buying-timeline::before{
        left:24px;
    }
    .timeline-item{
        gap:20px;
    }
    .timeline-marker{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:14px;
    }
    .timeline-content{
        padding:25px;
    }
    .timeline-content h3{
        font-size:22px;
    }
}

.buying-documents{
    padding:50px 0;
    background:#fff;
}
.documents-wrapper{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
    margin-top:70px;
}
.documents-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 35px 80px rgba(0,0,0,.08);
}
.documents-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.document-card{
    display:flex;
    gap:22px;
    padding:24px 28px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 50px rgba(0,0,0,.05);
    transition:.35s ease;
}
.document-card:hover{
    transform:translateX(8px);
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}
.document-card i{
    color:#1DB954;
    font-size:24px;
    margin-top:5px;
}
.document-card h3{
    margin-bottom:8px;
    font-size:21px;
    color:var(--primary);
}
.document-card p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .documents-wrapper{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .buying-documents{
        padding:90px 0;
    }
    .document-card{
        padding:22px;
    }
    .document-card h3{
        font-size:18px;
    }
}

.buying-finance{
    padding:50px 0;
    background:#F8FAFC;
}
.finance-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    margin-top:70px;
}
.finance-left{
    display:grid;
    gap:25px;
}
.finance-card{
    display:flex;
    gap:22px;
    align-items:flex-start;
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s ease;
}
.finance-card:hover{
    transform:translateY(-6px);
}
.finance-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}
.finance-card h3{
    margin-bottom:12px;
    color:var(--primary);
    font-size:24px;
}
.finance-card p{
    color:var(--muted);
    line-height:1.9;
}
.finance-highlight{
    position:sticky;
    top:120px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    padding:45px;
    border-radius:28px;
    color:#fff;
}
.finance-highlight span{
    color:var(--accent);
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}
.finance-highlight h3{
    color:#fff;
    margin-bottom:25px;
    font-size:34px;
    line-height:1.35;
}
.finance-highlight ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}
.finance-highlight li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    line-height:1.8;
}
.finance-highlight li i{
    color:#6EE7B7;
    margin-top:6px;
}
.finance-highlight .btn-primary{
    width:100%;
    justify-content:center;
}
@media(max-width:991px){
    .finance-grid{
        grid-template-columns:1fr;
    }
    .finance-highlight{
        position:relative;
        top:0;
    }
}
@media(max-width:576px){
    .buying-finance{
        padding:90px 0;
    }
    .finance-card{
        flex-direction:column;
    }
    .finance-highlight{
        padding:35px;
    }
    .finance-highlight h3{
        font-size:28px;
    }
}

.legal-checklist{
    padding:50px 0;
    background:#fff;
}
.legal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:70px;
}
.legal-card{
    border-radius:26px;
    padding:45px;
    background:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s ease;
}
.legal-card:hover{
    transform:translateY(-8px);
}
.legal-card.success{
    border-top:6px solid #18B87A;
}
.legal-card.danger{
    border-top:6px solid #EF4444;
}
.legal-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}
.legal-header i{
    font-size:34px;
}
.success .legal-header i{
    color:#18B87A;
}
.danger .legal-header i{
    color:#EF4444;
}
.legal-header h3{
    margin:0;
    color:var(--primary);
    font-size:30px;
}
.legal-card ul{
    list-style:none;
    padding:0;
    margin:0;
}
.legal-card li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
    line-height:1.8;
    color:var(--muted);
}
.success li i{
    color:#18B87A;
    margin-top:5px;
}
.danger li i{
    color:#EF4444;
    margin-top:5px;
}
.legal-note{
    margin-top:60px;
    background:#F8FAFC;
    padding:35px;
    border-radius:22px;
    display:flex;
    gap:20px;
    align-items:flex-start;
}
.legal-note i{
    color:var(--secondary);
    font-size:34px;
}
.legal-note p{
    margin:0;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:991px){
    .legal-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .legal-checklist{
        padding:90px 0;
    }
    .legal-card{
        padding:30px;
    }
    .legal-header h3{
        font-size:24px;
    }
    .legal-note{
        flex-direction:column;
    }
}

.buyer-mistakes{
    padding:50px 0;
    background:#F8FAFC;
}
.mistakes-list{
    margin-top:70px;
    display:flex;
    flex-direction:column;
    gap:35px;
}
.mistake-item{
    display:flex;
    gap:35px;
    align-items:flex-start;
}
.mistake-number{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background:#EF4444;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:22px;
}
.mistake-content{
    flex:1;
    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.mistake-content h3{
    margin-bottom:16px;
    color:var(--primary);
    font-size:28px;
}
.mistake-content>p{
    color:var(--muted);
    line-height:1.9;
}
.mistake-solution{
    margin-top:25px;
    padding:20px 25px;
    border-left:5px solid #18B87A;
    background:#F5FCF8;
    border-radius:12px;
}
.mistake-solution strong{
    display:block;
    color:#18B87A;
    margin-bottom:10px;
}
.mistake-solution p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:768px){
    .mistake-item{
        flex-direction:column;
    }
}

.buy-with-us{
    padding:50px 0;
    background:#071B4D;
    color:#fff;
}
.buy-with-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
.buy-left h2{
    color:#fff;
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
}
.buy-left p{
    color:rgba(255,255,255,.82);
    line-height:2;
    font-size:17px;
}
.buy-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}
.stat-box{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:30px;
    text-align:center;
}
.stat-box h3{
    color:#19B8FF;
    font-size:42px;
    margin-bottom:10px;
}
.stat-box span{
    color:rgba(255,255,255,.8);
}
.buy-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.buy-feature{
    display:flex;
    gap:25px;
    background:#fff;
    color:#1B2430;
    padding:30px;
    border-radius:22px;
    transition:.35s;
}
.buy-feature:hover{
    transform:translateX(8px);
}
.buy-feature i{
    width:70px;
    height:70px;
    background:#F3F8FF;
    color:#0E5BFF;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}
.buy-feature h3{
    color:#071B4D;
    margin-bottom:10px;
    font-size:24px;
}
.buy-feature p{
    color:#6B7280;
    line-height:1.8;
}
@media(max-width:991px){
    .buy-with-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .buy-with-us{
        padding:90px 0;
    }
    .buy-left h2{
        font-size:36px;
    }
    .buy-stats{
        grid-template-columns:1fr;
    }
    .buy-feature{
        flex-direction:column;
    }
}

.guide-final-cta{
    padding:50px 0;
    background:#fff;
}
.guide-cta-card{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius:30px;
    padding:70px;
    text-align:center;
    color:#fff;
}
.guide-cta-card span{
    color:#19B8FF;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}
.guide-cta-card h2{
    margin:20px auto;
    max-width:800px;
    color:#fff;
    font-size:48px;
    line-height:1.25;
}
.guide-cta-card p{
    max-width:720px;
    margin:auto;
    color:rgba(255,255,255,.88);
    line-height:2;
}
.guide-cta-actions{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.guide-cta-actions .btn-outline{
    background:transparent;
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}
.guide-cta-actions .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}
@media(max-width:768px){
    .guide-cta-card{
        padding:45px 25px;
    }
    .guide-cta-card h2{
        font-size:34px;
    }
    .guide-cta-actions{
        flex-direction:column;
    }
}

.guide-faq{
    padding:50px 0;
    background:#F8FAFC;
}
.guide-faq-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
}
.guide-faq-sidebar{
    position:sticky;
    top:120px;
}
.guide-faq-sidebar h2{
    margin:20px 0;
    font-size:48px;
    line-height:1.2;
    color:var(--primary);
}
.guide-faq-sidebar p{
    color:var(--muted);
    line-height:2;
    margin-bottom:40px;
}
.faq-contact-card{
    padding:35px;
    border-radius:24px;
    background:#071B4D;
    color:#fff;
}
.faq-contact-card i{
    font-size:42px;
    color:#19B8FF;
    margin-bottom:20px;
}
.faq-contact-card h3{
    color:#fff;
    margin-bottom:15px;
}
.faq-contact-card p{
    color:rgba(255,255,255,.85);
    margin-bottom:25px;
}
.guide-faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.guide-faq-item{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.35s;
    border-left:6px solid transparent;
}
.guide-faq-item:hover{
    transform:translateY(-4px);
}
.guide-faq-item.active{
    border-left-color:var(--secondary);
}
.guide-faq-question{
    width:100%;
    background:none;
    border:none;
    padding:28px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:var(--primary);
    text-align:left;
}
.guide-faq-question span{
    flex:1;
    padding-right:20px;
}
.guide-faq-question i{
    color:var(--secondary);
    transition:.35s;
}
.guide-faq-answer{
    display:none;
    padding:0 35px 30px;
}
.guide-faq-item.active .guide-faq-answer{
    display:block;
}
.guide-faq-answer p{
    color:var(--muted);
    line-height:2;
}
@media(max-width:991px){
    .guide-faq-grid{
        grid-template-columns:1fr;
    }
    .guide-faq-sidebar{
        position:relative;
        top:0;
    }
}
@media(max-width:576px){
    .guide-faq{
        padding:90px 0;
    }
    .guide-faq-sidebar h2{
        font-size:34px;
    }
    .guide-faq-question{
        padding:22px;
        font-size:18px;
    }
    .guide-faq-answer{
        padding:0 22px 22px;
    }
    .faq-contact-card{
        padding:25px;
    }
}

.property-value{
    padding:50px 0;
    background:#fff;
}
.value-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:start;
    margin-top:70px;
}
.value-preview{
    position:sticky;
    top:120px;
}
.value-card{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    padding:40px;
    border-radius:28px;
    color:#fff;
    box-shadow:0 30px 70px rgba(0,0,0,.15);
}
.value-card small{
    text-transform:uppercase;
    letter-spacing:2px;
    color:#8DD8FF;
}
.value-card h3{
    margin:18px 0 8px;
    font-size:48px;
    color:#fff;
}
.value-card span{
    color:rgba(255,255,255,.75);
}
.value-meter{
    height:10px;
    background:rgba(255,255,255,.15);
    border-radius:20px;
    margin:35px 0;
    overflow:hidden;
}
.value-meter-fill{
    width:82%;
    height:100%;
    background:#19B8FF;
}
.value-card p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
}
.value-factors{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}
.factor-item{
    display:flex;
    gap:18px;
    padding:30px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 18px 55px rgba(0,0,0,.05);
    transition:.35s;
}
.factor-item:hover{
    transform:translateY(-6px);
}
.factor-item i{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#F4F8FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}
.factor-item h3{
    margin-bottom:10px;
    color:var(--primary);
    font-size:22px;
}
.factor-item p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .value-layout{
        grid-template-columns:1fr;
    }
    .value-preview{
        position:relative;
        top:0;
    }
    .value-factors{
        grid-template-columns:1fr;
    }
}

.listing-preparation{
    padding:50px 0;
    background:#F8FAFC;
}
.prep-grid{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:70px;
    margin-top:70px;
    align-items:start;
}
.prep-image{
    position:sticky;
    top:120px;
}
.prep-image img{
    width:100%;
    border-radius:26px;
    display:block;
}
.prep-badge{
    margin-top:25px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}
.prep-badge i{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#EEF7FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}
.prep-badge strong{
    display:block;
    color:var(--primary);
}
.prep-badge span{
    color:var(--muted);
}
.prep-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.prep-item{
    background:#fff;
    padding:28px;
    border-radius:20px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    box-shadow:0 15px 45px rgba(0,0,0,.05);
    transition:.35s;
}
.prep-item:hover{
    transform:translateX(8px);
}
.prep-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:18px;
    background:#F4F8FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}
.prep-item h3{
    margin-bottom:10px;
    color:var(--primary);
    font-size:22px;
}
.prep-item p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .prep-grid{
        grid-template-columns:1fr;
    }
    .prep-image{
        position:relative;
        top:0;
    }
}

.pricing-strategy{
    padding:50px 0;
    background:#fff;
}
.pricing-comparison{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}
.pricing-card{
    position:relative;
    padding:45px 35px;
    border-radius:28px;
    background:#fff;
    box-shadow:0 25px 70px rgba(0,0,0,.06);
    transition:.35s ease;
    overflow:hidden;
}
.pricing-card:hover{
    transform:translateY(-10px);
}
.pricing-icon{
    width:80px;
    height:80px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}
.overpriced .pricing-icon{
    background:#FFF4F4;
    color:#EF4444;
}
.recommended .pricing-icon{
    background:#EEF8FF;
    color:#0E5BFF;
}
.underpriced .pricing-icon{
    background:#FFF8EB;
    color:#F59E0B;
}
.pricing-card h3{
    color:var(--primary);
    margin-bottom:10px;
    font-size:30px;
}
.pricing-tag{
    display:inline-block;
    margin-bottom:30px;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
}
.overpriced .pricing-tag{
    background:#FFE7E7;
    color:#EF4444;
}
.recommended .pricing-tag{
    background:#E8F3FF;
    color:#0E5BFF;
}
.underpriced .pricing-tag{
    background:#FFF4D8;
    color:#F59E0B;
}
.pricing-card ul{
    list-style:none;
    padding:0;
    margin:0;
}
.pricing-card li{
    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    color:var(--muted);
    line-height:1.8;
}
.pricing-card li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#16A34A;
    font-weight:700;
}
.recommended{
    transform:scale(1.05);
    border:2px solid var(--secondary);
}
.recommended:hover{
    transform:scale(1.05) translateY(-8px);
}
.recommended-badge{
    position:absolute;
    top:0;
    right:0;
    background:var(--secondary);
    color:#fff;
    padding:10px 22px;
    border-radius:0 24px 0 20px;
    font-size:13px;
    font-weight:700;
}
.pricing-note{
    margin-top:55px;
    padding:35px;
    background:#F8FAFC;
    border-radius:22px;
    display:flex;
    gap:18px;
    align-items:flex-start;
}
.pricing-note i{
    color:var(--secondary);
    font-size:30px;
}
.pricing-note p{
    margin:0;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:991px){
    .pricing-comparison{
        grid-template-columns:1fr;
    }
    .recommended{
        transform:none;
    }
    .recommended:hover{
        transform:translateY(-8px);
    }
}
@media(max-width:576px){
    .pricing-strategy{
        padding:90px 0;
    }
    .pricing-card{
        padding:35px 25px;
    }
    .pricing-card h3{
        font-size:24px;
    }
}

.marketing-engine{
    padding:50px 0;
    background:#F8FAFC;
}
.marketing-flow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin:70px 0;
}
.marketing-step{
    flex:1;
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.marketing-step:hover{
    transform:translateY(-8px);
}
.marketing-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:22px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}
.marketing-step h3{
    margin-bottom:12px;
    color:var(--primary);
    font-size:24px;
}
.marketing-step p{
    color:var(--muted);
    line-height:1.8;
}
.marketing-arrow{
    color:var(--secondary);
    font-size:28px;
}
.marketing-platforms{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.marketing-platforms article{
    background:#fff;
    border-radius:22px;
    padding:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
    transition:.35s;
}
.marketing-platforms article:hover{
    transform:translateY(-6px);
}
.marketing-platforms i{
    font-size:34px;
    color:var(--secondary);
    margin-bottom:18px;
}
.marketing-platforms h4{
    color:var(--primary);
    margin-bottom:10px;
    font-size:22px;
}
.marketing-platforms p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .marketing-flow{
        flex-direction:column;
    }
    .marketing-arrow{
        transform:rotate(90deg);
    }
    .marketing-platforms{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .marketing-platforms{
        grid-template-columns:1fr;
    }
    .marketing-engine{
        padding:90px 0;
    }
}

.seller-mistakes{
    padding:50px 0;
    background:#fff;
}
.seller-mistake-list{
    display:flex;
    flex-direction:column;
    gap:28px;
    margin-top:70px;
}
.seller-mistake-item{
    display:flex;
    gap:30px;
    align-items:flex-start;
}
.mistake-no{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    background:#EF4444;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}
.mistake-body{
    flex:1;
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.mistake-body h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:28px;
}
.mistake-body>p{
    color:var(--muted);
    line-height:1.9;
}
.mistake-solution{
    margin-top:25px;
    background:#F5FCF8;
    border-left:5px solid #16A34A;
    border-radius:12px;
    padding:20px 25px;
}
.mistake-solution strong{
    color:#16A34A;
    display:block;
    margin-bottom:10px;
}
.mistake-solution p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:768px){
    .seller-mistake-item{
        flex-direction:column;
    }
}

.sell-with-us{
    padding:50px 0;
    background:#071B4D;
    color:#fff;
}
.sell-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}
.sell-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
}
.sell-content p{
    color:rgba(255,255,255,.82);
    line-height:2;
}
.sell-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:45px;
}
.sell-stat{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    text-align:center;
}
.sell-stat h3{
    color:#19B8FF;
    font-size:42px;
    margin-bottom:10px;
}
.sell-stat span{
    color:rgba(255,255,255,.8);
}
.sell-features{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.sell-features article{
    background:#fff;
    color:#1B2430;
    border-radius:22px;
    padding:28px;
    display:flex;
    gap:22px;
    align-items:flex-start;
    transition:.35s;
}
.sell-features article:hover{
    transform:translateX(8px);
}
.sell-features i{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#EEF5FF;
    color:#0E5BFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    flex-shrink:0;
}
.sell-features h3{
    color:#071B4D;
    margin-bottom:10px;
    font-size:22px;
}
.sell-features p{
    color:#6B7280;
    line-height:1.8;
}
@media(max-width:991px){
    .sell-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .sell-with-us{
        padding:90px 0;
    }
    .sell-content h2{
        font-size:36px;
    }
    .sell-stats{
        grid-template-columns:1fr;
    }
    .sell-features article{
        flex-direction:column;
    }
}

.selling-final-cta{
    padding:50px 0;
    background:#fff;
}
.selling-cta-card{
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    border-radius:32px;
    padding:80px 60px;
    text-align:center;
    color:#fff;
    overflow:hidden;
    position:relative;
}
.selling-cta-card::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    right:-180px;
    top:-180px;
}
.selling-cta-card span{
    color:#19B8FF;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
}
.selling-cta-card h2{
    color:#fff;
    font-size:54px;
    margin:20px auto;
    max-width:800px;
    line-height:1.2;
}
.selling-cta-card p{
    max-width:720px;
    margin:auto;
    color:rgba(255,255,255,.85);
    line-height:2;
}
.selling-benefits{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin:40px 0;
}
.selling-benefits div{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
}
.selling-benefits i{
    color:#19B8FF;
}
.selling-cta-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.selling-cta-actions .btn-outline{
    background:transparent;
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}
.selling-cta-actions .btn-outline:hover{
    background:#fff;
    color:#071B4D;
}
@media(max-width:768px){
    .selling-cta-card{
        padding:50px 25px;
    }
    .selling-cta-card h2{
        font-size:36px;
    }
    .selling-benefits{
        flex-direction:column;
        gap:15px;
    }
    .selling-cta-actions{
        flex-direction:column;
    }
}

.listing-hero{
    padding:50px 0;
    background:linear-gradient(180deg,#F8FBFF,#FFFFFF);
    overflow:hidden;
}
.listing-hero-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:80px;
    align-items:center;
}
.listing-label{
    display:inline-block;
    color:var(--secondary);
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}
.listing-content h1{
    margin:20px 0;
    font-size:64px;
    line-height:1.12;
    color:var(--primary);
}
.listing-content p{
    max-width:650px;
    color:var(--muted);
    font-size:18px;
    line-height:2;
}
.listing-actions{
    display:flex;
    gap:18px;
    margin:40px 0;
    flex-wrap:wrap;
}
.listing-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-top:30px;
}
.listing-highlights div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:var(--primary);
}
.listing-highlights i{
    color:#16A34A;
}
.listing-flow{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
    text-align:center;
}
.flow-box{
    border-radius:22px;
    padding:24px;
    color:#fff;
}
.flow-box i{
    display:block;
    font-size:34px;
    margin-bottom:12px;
}
.flow-box span{
    font-weight:700;
}
.property{
    background:#0E5BFF;
}
.spark{
    background:#071B4D;
}
.buyers{
    background:#19B8FF;
}
.flow-arrow{
    margin:18px 0;
    font-size:26px;
    color:var(--secondary);
}
.platform-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}
.platform-grid div{
    background:#F6F9FC;
    border-radius:16px;
    padding:18px;
    font-weight:600;
    color:var(--primary);
}
.platform-grid i{
    margin-right:8px;
    color:var(--secondary);
}
@media(max-width:991px){
    .listing-hero-grid{
        grid-template-columns:1fr;
    }
    .listing-content{
        text-align:center;
    }
    .listing-content p{
        margin:auto;
    }
    .listing-actions{
        justify-content:center;
    }
    .listing-highlights{
        justify-content:center;
    }
}
@media(max-width:576px){
    .listing-hero{
        padding:90px 0;
    }
    .listing-content h1{
        font-size:40px;
    }
    .platform-grid{
        grid-template-columns:1fr;
    }
}

.listing-advantages{
    padding:50px 0;
    background:#fff;
}
.listing-adv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}
.listing-adv-card{
    position:relative;
    background:#fff;
    border-radius:26px;
    padding:40px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.listing-adv-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.listing-adv-card:hover{
    transform:translateY(-10px);
}
.listing-adv-card:hover::before{
    transform:scaleX(1);
}
.listing-adv-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:#EEF6FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.35s;
}
.listing-adv-card:hover .listing-adv-icon{
    background:var(--secondary);
    color:#fff;
}
.listing-adv-card h3{
    font-size:26px;
    color:var(--primary);
    margin-bottom:18px;
}
.listing-adv-card p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .listing-adv-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .listing-adv-grid{
        grid-template-columns:1fr;
    }
    .listing-advantages{
        padding:90px 0;
    }
}

.listing-process{
    padding:50px 0;
    background:#F8FAFC;
}
.listing-workflow{
    margin-top:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    overflow-x:auto;
    padding-bottom:10px;
}
.workflow-step{
    flex:1;
    min-width:220px;
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    transition:.35s;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.workflow-step:hover{
    transform:translateY(-8px);
}
.workflow-step span{
    display:inline-block;
    margin-bottom:15px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--secondary);
    font-weight:700;
}
.workflow-icon{
    width:80px;
    height:80px;
    margin:auto auto 25px;
    border-radius:22px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.35s;
}
.workflow-step:hover .workflow-icon{
    background:var(--secondary);
    color:#fff;
}
.workflow-step h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
}
.workflow-step p{
    color:var(--muted);
    line-height:1.8;
    margin:0;
}
.workflow-arrow{
    color:var(--secondary);
    font-size:24px;
    flex-shrink:0;
}
.workflow-step.success{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
}
.workflow-step.success h3,
.workflow-step.success p,
.workflow-step.success span{
    color:#fff;
}
.workflow-step.success .workflow-icon{
    background:rgba(255,255,255,.12);
    color:#fff;
}
@media(max-width:991px){
    .workflow-arrow{
        display:none;
    }
    .listing-workflow{
        flex-direction:column;
        overflow:visible;
    }
    .workflow-step{
        width:100%;
    }
}

.property-types{
    padding:50px 0;
    background:#fff;
}
.property-types-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:70px;
}
.property-type-card{
    position:relative;
    padding:35px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 18px 60px rgba(0,0,0,.05);
    transition:.35s;
    overflow:hidden;
    color:inherit;
    text-decoration:none;
}
.property-type-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--secondary),var(--accent));
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}
.property-type-card:hover{
    transform:translateY(-8px);
}
.property-type-card:hover::before{
    transform:scaleX(1);
}
.property-type-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    transition:.35s;
}
.property-type-card:hover .property-type-icon{
    background:var(--secondary);
    color:#fff;
}
.property-type-card h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:15px;
}
.property-type-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:30px;
}
.property-type-card span{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-weight:600;
}
.featured{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}
.featured h3,
.featured p,
.featured span{
    color:#fff;
}
.featured .property-type-icon{
    background:rgba(255,255,255,.12);
    color:#fff;
}
.featured:hover .property-type-icon{
    background:#fff;
    color:var(--secondary);
}
@media(max-width:1200px){
    .property-types-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .property-types{
        padding:90px 0;
    }
    .property-types-grid{
        grid-template-columns:1fr;
    }
}

.marketing-advantage{
    padding:50px 0;
    background:#F7FAFD;
}
.comparison-wrapper{
    display:grid;
    grid-template-columns:1fr 120px 1fr;
    gap:30px;
    align-items:center;
    margin-top:70px;
}
.comparison-column{
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 25px 70px rgba(0,0,0,.06);
}
.comparison-head{
    text-align:center;
    margin-bottom:35px;
}
.comparison-head i{
    width:90px;
    height:90px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:34px;
}
.comparison-basic .comparison-head i{
    background:#FFF2F2;
    color:#EF4444;
}
.comparison-pro .comparison-head i{
    background:#EEF6FF;
    color:#0E5BFF;
}
.comparison-head h3{
    color:var(--primary);
    font-size:30px;
}
.comparison-column ul{
    list-style:none;
    padding:0;
    margin:0;
}
.comparison-column li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid #EEF2F6;
    color:var(--muted);
    line-height:1.8;
}
.comparison-column li:last-child{
    border:none;
}
.comparison-basic li i{
    color:#EF4444;
}
.comparison-pro li i{
    color:#16A34A;
}
.comparison-middle{
    display:flex;
    justify-content:center;
    align-items:center;
}
.comparison-middle span{
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
}
@media(max-width:991px){
    .comparison-wrapper{
        grid-template-columns:1fr;
    }
    .comparison-middle{
        margin:10px 0;
    }
}

.listing-stats{
    padding:50px 0;
    background:#fff;
}
.listing-stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:70px;
}
.listing-stat-card{
    padding:40px;
    text-align:center;
    background:#fff;
    border-radius:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.listing-stat-card:hover{
    transform:translateY(-8px);
}
.listing-stat-icon{
    width:85px;
    height:85px;
    margin:auto auto 25px;
    border-radius:24px;
    background:#EEF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:34px;
}
.listing-stat-card h3{
    font-size:52px;
    color:var(--primary);
    margin-bottom:12px;
}
.listing-stat-card span{
    color:var(--muted);
    font-weight:600;
}
.listing-stat-card.featured{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}
.listing-stat-card.featured h3,
.listing-stat-card.featured span{
    color:#fff;
}
.listing-stat-card.featured .listing-stat-icon{
    background:rgba(255,255,255,.12);
    color:#fff;
}
@media(max-width:991px){
    .listing-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .listing-stats{
        padding:90px 0;
    }
    .listing-stats-grid{
        grid-template-columns:1fr;
    }
}

.listing-testimonials{
    padding:50px 0;
    background:#F8FAFC;
}
.listing-testimonial-slider{
    position:relative;
    margin-top:70px;
}
.listing-testimonial{
    display:none;
    max-width:850px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    padding:50px;
    box-shadow:0 25px 70px rgba(0,0,0,.06);
}
.listing-testimonial.active{
    display:block;
}
.testimonial-top{
    display:flex;
    gap:20px;
    align-items:center;
}
.testimonial-top img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}
.testimonial-top h3{
    color:var(--primary);
    margin-bottom:6px;
}
.testimonial-top span{
    color:var(--muted);
}
.testimonial-rating{
    margin:25px 0;
    color:#FBBF24;
    font-size:20px;
}
.listing-testimonial blockquote{
    font-size:22px;
    line-height:1.9;
    color:#374151;
    margin:0;
    font-style:italic;
}
.testimonial-footer{
    margin-top:35px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}
.testimonial-footer span{
    padding:10px 20px;
    background:#EEF5FF;
    color:var(--secondary);
    border-radius:30px;
    font-weight:600;
}
.testimonial-controls{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:40px;
}
.testimonial-controls button{
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.3s;
}
.testimonial-controls button:hover{
    background:var(--secondary);
    color:#fff;
}
@media(max-width:768px){
    .listing-testimonial{
        padding:35px 25px;
    }
    .testimonial-top{
        flex-direction:column;
        text-align:center;
    }
    .listing-testimonial blockquote{
        font-size:18px;
    }
    .testimonial-footer{
        justify-content:center;
    }
}

.listing-final-cta{
    padding:50px 0;
    background:#fff;
}
.listing-cta-wrapper{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    border-radius:36px;
    padding:90px 70px;
    text-align:center;
    color:#fff;
}
.listing-cta-wrapper::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    right:-280px;
    top:-280px;
    background:rgba(255,255,255,.05);
}
.listing-cta-wrapper::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    left:-180px;
    bottom:-180px;
    background:rgba(255,255,255,.04);
}
.listing-cta-tag{
    display:inline-block;
    color:#19B8FF;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    font-size:14px;
}
.listing-cta-wrapper h2{
    font-size:60px;
    margin:25px auto;
    max-width:900px;
    line-height:1.15;
    color:#fff;
}
.listing-cta-wrapper p{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.85);
    line-height:2;
    font-size:18px;
}
.listing-cta-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    max-width:700px;
    margin:55px auto;
}
.listing-cta-features div{
    display:flex;
    align-items:center;
    gap:12px;
    justify-content:center;
    font-weight:600;
}
.listing-cta-features i{
    color:#19B8FF;
}
.listing-cta-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.listing-cta-actions .btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:transparent;
}
.listing-cta-actions .btn-outline:hover{
    background:#fff;
    color:var(--primary);
}
.listing-contact-options{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin-top:45px;
}
.listing-contact-options a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}
.listing-contact-options i{
    color:#19B8FF;
    font-size:20px;
}
@media(max-width:991px){
    .listing-cta-wrapper{
        padding:70px 35px;
    }
    .listing-cta-wrapper h2{
        font-size:44px;
    }
    .listing-cta-features{
        grid-template-columns:1fr;
    }
}
@media(max-width:576px){
    .listing-final-cta{
        padding:90px 0;
    }
    .listing-cta-wrapper{
        padding:50px 25px;
    }
    .listing-cta-wrapper h2{
        font-size:34px;
    }
    .listing-contact-options{
        flex-direction:column;
        gap:18px;
    }
    .listing-cta-actions{
        flex-direction:column;
    }
}

.property-type-hero{
    padding:50px 0;
    background:linear-gradient(180deg,#F8FBFF,#FFFFFF);
    overflow:hidden;
}
.property-type-grid{
    display:grid;
    grid-template-columns:1fr 480px;
    gap:80px;
    align-items:center;
}
.property-type-label{
    display:inline-block;
    color:var(--secondary);
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
}
.property-type-content h1{
    margin:20px 0;
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
}
.property-type-content p{
    font-size:18px;
    color:var(--muted);
    line-height:2;
    max-width:650px;
}
.property-type-actions{
    display:flex;
    gap:18px;
    margin:40px 0;
    flex-wrap:wrap;
}
.property-type-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}
.property-type-highlights div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:var(--primary);
}
.property-type-highlights i{
    color:#16A34A;
}
.property-type-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.property-type-circle{
    width:260px;
    height:260px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:90px;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}
.property-type-card{
    position:absolute;
    right:0;
    bottom:10%;
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
    min-width:240px;
}
.property-type-card h3{
    color:var(--primary);
    margin-bottom:10px;
}
.property-type-card p{
    color:var(--muted);
    margin:0;
}
@media(max-width:991px){
    .property-type-grid{
        grid-template-columns:1fr;
    }
    .property-type-content{
        text-align:center;
    }
    .property-type-content p{
        margin:auto;
    }
    .property-type-actions{
        justify-content:center;
    }
    .property-type-highlights{
        justify-content:center;
    }
    .property-type-visual{
        margin-top:40px;
    }
}
@media(max-width:576px){
    .property-type-hero{
        padding:90px 0;
    }
    .property-type-content h1{
        font-size:40px;
    }
    .property-type-circle{
        width:200px;
        height:200px;
        font-size:70px;
    }
    .property-type-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:25px;
    }
}

.pt-section{
    padding:50px 0;
    background:#fff;
}
.pt-layout{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:60px;
    align-items:start;
}
.pt-sidebar{
    position:sticky;
    top:120px;
    height:fit-content;
}
.pt-sidebar-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.pt-sidebar-head{
    padding:30px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}
.pt-sidebar-head span{
    display:block;
    color:#8DDCFF;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}
.pt-sidebar-head h3{
    color:#fff;
    margin:0;
    font-size:24px;
}
.pt-sidebar-menu{
    list-style:none;
    padding:18px;
    margin:0;
}
.pt-sidebar-menu li{
    margin-bottom:12px;
}
.pt-sidebar-menu li:last-child{
    margin-bottom:0;
}
.pt-sidebar-menu a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:var(--primary);
    border-radius:18px;
    padding:18px;
    transition:.35s ease;
}
.pt-sidebar-menu a:hover{
    background:#F7FAFD;
    transform:translateX(5px);
}
.pt-sidebar-left{
    display:flex;
    gap:16px;
    align-items:center;
}
.pt-sidebar-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
    transition:.35s;
}
.pt-sidebar-text strong{
    display:block;
    font-size:16px;
    font-weight:700;
    margin-bottom:4px;
}
.pt-sidebar-text small{
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
}
.pt-count{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
    transition:.35s;
}
.pt-sidebar-menu a.active{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    box-shadow:0 18px 50px rgba(14,91,255,.16);
}
.pt-sidebar-menu a.active .pt-sidebar-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}
.pt-sidebar-menu a.active .pt-count{
    background:#fff;
    color:var(--primary);
}
.pt-sidebar-menu a.active small{
    color:rgba(255,255,255,.8);
}
.pt-main{
    min-width:0;
}
.pt-main .sl-section-title{
    text-align:left;
    margin-bottom:55px;
}
.pt-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    align-items:stretch;
}
.pt-card{
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 18px 60px rgba(0,0,0,.05);
    transition:.35s ease;
}
.pt-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 80px rgba(0,0,0,.08);
}
.pt-card a{
    padding:36px;
    color:inherit;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    height:100%;
}
.pt-icon{
    width:74px;
    height:74px;
    border-radius:20px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.35s;
    margin-bottom:24px;
}
.pt-card:hover .pt-icon{
    background:var(--secondary);
    color:#fff;
}
.pt-body{
    flex:1;
}
.pt-body h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:14px;
}
.pt-body p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:35px;
}
.pt-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding-top:22px;
    border-top:1px solid #EEF2F5;
}
.pt-footer span:first-child{
    color:var(--muted);
    font-weight:600;
}
.pt-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-weight:700;
}
.pt-link i{
    transition:.3s;
}
.pt-card:hover .pt-link i{
    transform:translateX(5px);
}
@media (max-width:1200px){
    .pt-layout{
        grid-template-columns:300px 1fr;
        gap:40px;
    }
}
@media (max-width:991px){
    .pt-section{
        padding:90px 0;
    }
    .pt-layout{
        grid-template-columns:1fr;
        gap:45px;
    }
    .pt-sidebar{
        position:relative;
        top:auto;
    }
    .pt-sidebar-card{
        border-radius:22px;
    }
    .pt-sidebar-menu{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }
    .pt-sidebar-menu li{
        margin:0;
    }
    .pt-sidebar-menu a{
        height:100%;
    }
    .pt-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }
}
@media (max-width:768px){
    .pt-main .sl-section-title{
        text-align:center;
        margin-bottom:40px;
    }
    .pt-sidebar-head{
        text-align:center;
    }
    .pt-sidebar-menu{
        grid-template-columns:1fr;
    }
    .pt-grid{
        grid-template-columns:1fr;
    }
    .pt-card a{
        padding:30px;
    }
    .pt-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
}
@media (max-width:576px){
    .pt-section{
        padding:70px 0;
    }
    .pt-sidebar-head{
        padding:24px;
    }
    .pt-sidebar-head h3{
        font-size:20px;
    }
    .pt-sidebar-menu{
        padding:12px;
    }
    .pt-sidebar-menu a{
        padding:15px;
    }
    .pt-sidebar-icon{
        width:46px;
        height:46px;
        font-size:20px;
        border-radius:14px;
    }
    .pt-count{
        width:36px;
        height:36px;
        font-size:14px;
    }
    .pt-card{
        border-radius:22px;
    }
    .pt-card a{
        padding:24px;
    }
    .pt-icon{
        width:64px;
        height:64px;
        font-size:26px;
        border-radius:18px;
    }
    .pt-body h3{
        font-size:21px;
    }
}
.pt-card,
.pt-sidebar-menu a,
.pt-icon,
.pt-count{
    transition:all .35s ease;
}
.pt-card:hover{
    border-color:rgba(14,91,255,.18);
}
.pt-sidebar-menu a:focus,
.pt-card a:focus{
    outline:2px solid rgba(14,91,255,.25);
    outline-offset:4px;
}
.pt-sidebar-menu a.active .pt-sidebar-icon i{
    transform:scale(1.08);
}

.pt-why{
    padding:50px 0;
    background:#F8FBFF;
}
.pt-why-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
.pt-why-card{
    background:#fff;
    padding:40px 32px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 18px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.pt-why-card:hover{
    transform:translateY(-8px);
}
.pt-why-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    margin:auto auto 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#EEF5FF;
    color:var(--secondary);
    font-size:34px;
    transition:.35s;
}
.pt-why-card:hover .pt-why-icon{
    background:var(--secondary);
    color:#fff;
}
.pt-why-card h3{
    color:var(--primary);
    margin-bottom:16px;
    font-size:22px;
}
.pt-why-card p{
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .pt-why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .pt-why{
        padding:90px 0;
    }
    .pt-why-grid{
        grid-template-columns:1fr;
    }
}

.pt-faq{
    padding:50px 0;
    background:#F8FBFF;
}
.pt-faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
}
.pt-faq-item{
    background:#fff;
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}
.pt-faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:26px 30px;
    background:none;
    border:none;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:var(--primary);
    text-align:left;
}
.pt-faq-question i{
    transition:.35s;
    color:var(--secondary);
}
.pt-faq-answer{
    display:none;
    padding:0 30px 28px;
    color:var(--muted);
    line-height:1.9;
}
.pt-faq-item.active .pt-faq-answer{
    display:block;
}
.pt-faq-item.active .pt-faq-question i{
    transform:rotate(45deg);
}
@media(max-width:768px){
    .pt-faq{
        padding:90px 0;
    }
    .pt-faq-question{
        font-size:16px;
        padding:22px;
    }
    .pt-faq-answer{
        padding:0 22px 22px;
    }
}

.contact-hero{
    padding:50px 0;
    background:linear-gradient(180deg,#F8FBFF,#FFFFFF);
}
.contact-hero-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:center;
}
.contact-label{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}
.contact-hero-content h1{
    margin:20px 0;
    font-size:64px;
    line-height:1.1;
    color:var(--primary);
}
.contact-hero-content p{
    font-size:18px;
    color:var(--muted);
    line-height:2;
    max-width:620px;
}
.contact-actions{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}
.contact-hero-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 30px 90px rgba(0,0,0,.08);
}
@media(max-width:991px){
    .contact-hero{
        padding:90px 0;
    }
    .contact-hero-grid{
        grid-template-columns:1fr;
    }
    .contact-hero-content{
        text-align:center;
    }
    .contact-hero-content p{
        margin:auto;
    }
    .contact-actions{
        justify-content:center;
    }
}

.contact-options{
    padding:50px 0;
    background:#fff;
}
.contact-options-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}
.contact-option-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    border:1px solid var(--border);
    box-shadow:0 20px 60px rgba(0,0,0,.05);
    transition:.35s ease;
}
.contact-option-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 80px rgba(0,0,0,.08);
}
.contact-option-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#EEF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:30px;
    margin-bottom:26px;
    transition:.35s;
}
.contact-option-card:hover .contact-option-icon{
    background:var(--secondary);
    color:#fff;
}
.contact-option-card span{
    display:block;
    color:var(--secondary);
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:12px;
    font-weight:700;
}
.contact-option-card h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:16px;
    line-height:1.4;
}
.contact-option-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
}
.contact-option-card a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-weight:700;
    text-decoration:none;
}
.contact-option-card a i{
    transition:.35s;
}
.contact-option-card:hover a i{
    transform:translateX(5px);
}
@media(max-width:1200px){
    .contact-options-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .contact-options{
        padding:70px 0;
    }
    .contact-options-grid{
        grid-template-columns:1fr;
    }
    .contact-option-card{
        text-align:center;
    }
    .contact-option-icon{
        margin:auto auto 25px;
    }
}

.contact-main{
    padding:50px 0;
    background:#F8FBFF;
}
.contact-main-grid{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    gap:50px;
}
.contact-form-wrapper{
    background:#fff;
    padding:50px;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.05);
}
.contact-form-head{
    margin-bottom:35px;
}
.contact-form-head span{
    color:var(--secondary);
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    font-size:13px;
}
.contact-form-head h2{
    margin-top:12px;
    color:var(--primary);
}
.contact-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:25px;
}
.form-group{
    display:flex;
    flex-direction:column;
}
.form-group label{
    margin-bottom:10px;
    color:var(--primary);
    font-weight:600;
}
.form-group input,
.form-group select,
.form-group textarea{
    border:1px solid #ddd;
    border-radius:14px;
    padding:16px;
    font-size:15px;
    transition:.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--secondary);
    outline:none;
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}
.contact-info-card{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 18px 50px rgba(0,0,0,.05);
}
.contact-info-card span{
    color:var(--secondary);
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
}
.contact-info-card h3{
    margin:14px 0;
}
.contact-info-card p{
    color:var(--muted);
    line-height:1.8;
}
.contact-info-card ul{
    margin:20px 0 0;
    padding:0;
    list-style:none;
}
.contact-info-card li{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #eee;
}
.contact-social{
    margin-top:25px;
    display:flex;
    gap:15px;
}
.contact-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#EEF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    transition:.35s;
}
.contact-social a:hover{
    background:var(--secondary);
    color:#fff;
}
@media(max-width:991px){
    .contact-main-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .contact-main{
        padding:90px 0;
    }
    .contact-form-wrapper{
        padding:35px;
    }
    .contact-row{
        grid-template-columns:1fr;
    }
}

.thankyou-hero{
    padding:50px 0;
    background:linear-gradient(180deg,#F8FBFF,#FFFFFF);
}
.thankyou-box{
    max-width:820px;
    margin:auto;
    background:#fff;
    border-radius:32px;
    padding:70px;
    text-align:center;
    box-shadow:0 25px 80px rgba(0,0,0,.06);
}
.thankyou-icon{
    width:110px;
    height:110px;
    margin:auto auto 30px;
    border-radius:50%;
    background:#EAFBF2;
    display:flex;
    align-items:center;
    justify-content:center;
}
.thankyou-icon i{
    font-size:52px;
    color:#18A957;
}
.thankyou-box span{
    display:block;
    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:18px;
}
.thankyou-box h1{
    color:var(--primary);
    margin-bottom:24px;
    font-size:52px;
}
.thankyou-box p{
    color:var(--muted);
    line-height:2;
    font-size:18px;
    max-width:650px;
    margin:auto;
}
.thankyou-actions{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}
@media(max-width:768px){
    .thankyou-hero{
        padding:90px 0;
    }
    .thankyou-box{
        padding:40px 30px;
    }
    .thankyou-box h1{
        font-size:34px;
    }
    .thankyou-box p{
        font-size:16px;
    }
}

.thank-summary{
    padding:50px 0;
    background:#F8FBFF;
}
.thank-summary-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 20px 70px rgba(0,0,0,.06);
}
.thank-summary-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:45px;
}
.thank-summary-header span{
    display:block;
    color:var(--secondary);
    font-size:13px;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:12px;
}
.thank-summary-header h2{
    color:var(--primary);
    margin-bottom:15px;
}
.thank-summary-header p{
    color:var(--muted);
    line-height:1.8;
    max-width:600px;
}
.thank-reference{
    background:#EEF5FF;
    padding:22px 28px;
    border-radius:18px;
    text-align:center;
    min-width:220px;
}
.thank-reference small{
    display:block;
    color:var(--muted);
    margin-bottom:8px;
}
.thank-reference strong{
    color:var(--primary);
    font-size:24px;
    letter-spacing:1px;
}
.thank-summary-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.thank-item{
    background:#FAFBFC;
    border-radius:18px;
    padding:24px;
}
.thank-item span{
    display:block;
    color:var(--muted);
    font-size:13px;
    margin-bottom:10px;
}
.thank-item strong{
    color:var(--primary);
    font-size:17px;
    word-break:break-word;
}
@media(max-width:991px){
    .thank-summary-header{
        flex-direction:column;
    }
    .thank-reference{
        width:100%;
    }
    .thank-summary-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .thank-summary{
        padding:70px 0;
    }
    .thank-summary-card{
        padding:30px;
    }
    .thank-summary-grid{
        grid-template-columns:1fr;
    }
}

.thank-process{
    padding:50px 0;
    background:#fff;
}
.thank-process-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
}
.thank-process-grid::before{
    content:"";
    position:absolute;
    top:35px;
    left:8%;
    width:84%;
    height:2px;
    background:#E5ECF3;
    z-index:0;
}
.thank-step{
    position:relative;
    z-index:2;
    text-align:center;
}
.thank-step-number{
    width:72px;
    height:72px;
    margin:auto auto 30px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    box-shadow:0 15px 40px rgba(14,91,255,.18);
}
.thank-step h3{
    color:var(--primary);
    margin-bottom:16px;
    font-size:22px;
}
.thank-step p{
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .thank-process-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .thank-process-grid::before{
        display:none;
    }
}
@media(max-width:576px){
    .thank-process{
        padding:90px 0;
    }
    .thank-process-grid{
        grid-template-columns:1fr;
    }
}

.thank-next{
    padding:50px 0;
    background:#F8FBFF;
}
.thank-next-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
.thank-next-card{
    display:block;
    background:#fff;
    padding:38px 34px;
    border-radius:26px;
    text-decoration:none;
    color:inherit;
    border:1px solid var(--border);
    box-shadow:0 18px 60px rgba(0,0,0,.05);
    transition:.35s;
}
.thank-next-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 80px rgba(0,0,0,.08);
}
.thank-next-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#EEF5FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:26px;
    transition:.35s;
}
.thank-next-card:hover .thank-next-icon{
    background:var(--secondary);
    color:#fff;
}
.thank-next-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:22px;
}
.thank-next-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
}
.thank-next-card span{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-weight:700;
}
.thank-next-card span i{
    transition:.35s;
}
.thank-next-card:hover span i{
    transform:translateX(6px);
}
@media(max-width:1200px){
    .thank-next-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:576px){
    .thank-next{
        padding:90px 0;
    }
    .thank-next-grid{
        grid-template-columns:1fr;
    }
}

.help-hero{
    padding:50px 0;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    color:#fff;
    text-align:center;
}
.help-hero span{
    display:inline-block;
    margin-bottom:16px;
    letter-spacing:2px;
    font-size:14px;
    opacity:.8;
}
.help-hero h1{
    font-size:58px;
    margin-bottom:20px;
}
.help-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    opacity:.9;
}

.help-categories{
    padding:50px 0;
    background:#fff;
}
.help-category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}
.help-category-card{
    display:block;
    padding:40px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    text-decoration:none;
    transition:.35s;
    position:relative;
    overflow:hidden;
}
.help-category-card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.help-category-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:28px;
    margin-bottom:24px;
}
.help-category-card h3{
    margin-bottom:16px;
    color:var(--primary);
    font-size:24px;
}
.help-category-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:28px;
}
.help-category-card span{
    font-weight:700;
    color:var(--secondary);
}
.help-category-card span i{
    margin-left:8px;
    transition:.3s;
}
.help-category-card:hover span i{
    transform:translateX(6px);
}
@media(max-width:991px){
    .help-category-grid{
        grid-template-columns:1fr;
    }
}

.help-support{
    padding:50px 0;
    background:#F8FAFC;
}
.help-support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:60px;
}
.help-support-card{
    display:block;
    text-decoration:none;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}
.help-support-card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.help-support-icon{
    width:78px;
    height:78px;
    margin:0 auto 24px;
    border-radius:22px;
    background:rgba(14,91,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:30px;
}
.help-support-card h3{
    color:var(--primary);
    margin-bottom:16px;
    font-size:22px;
}
.help-support-card p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:22px;
}
.help-support-card strong{
    color:var(--secondary);
    font-size:17px;
    font-weight:700;
}
@media(max-width:991px){
    .help-support-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:640px){
    .help-support-grid{
        grid-template-columns:1fr;
    }
}

.buy-help-hero{
    padding:50px 0;
    background:linear-gradient(135deg,#071B4D,#0E5BFF);
    color:#fff;
}
.buy-help-content{
    max-width:820px;
}
.buy-help-content span{
    display:inline-block;
    margin-bottom:20px;
    letter-spacing:2px;
    opacity:.8;
    font-size:14px;
}
.buy-help-content h1{
    font-size:64px;
    line-height:1.15;
    margin-bottom:28px;
}
.buy-help-content p{
    font-size:20px;
    line-height:1.9;
    opacity:.9;
}
.buy-help-actions{
    display:flex;
    gap:20px;
    margin-top:45px;
}
@media(max-width:991px){
    .buy-help-content h1{
        font-size:44px;
    }
    .buy-help-actions{
        flex-direction:column;
    }
}

.buy-help-topics{
    padding:50px 0;
    background:#fff;
}
.buy-help-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:60px;
}
.buy-help-tab{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 26px;
    border:1px solid var(--border);
    background:#fff;
    border-radius:16px;
    cursor:pointer;
    transition:.35s ease;
    font-size:16px;
    font-weight:600;
    color:var(--text);
}
.buy-help-tab i{
    width:46px;
    height:46px;
    border-radius:12px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:20px;
    transition:.35s;
}
.buy-help-tab span{
    white-space:nowrap;
}
.buy-help-tab:hover{
    border-color:var(--secondary);
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}
.buy-help-tab.active{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    box-shadow:0 18px 40px rgba(7,27,77,.18);
}
.buy-help-tab.active i{
    background:rgba(255,255,255,.15);
    color:#fff;
}
@media(max-width:991px){
    .buy-help-nav{
        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
        scrollbar-width:none;
    }
    .buy-help-nav::-webkit-scrollbar{
        display:none;
    }
    .buy-help-tab{
        flex:0 0 auto;
    }
}

.buy-help-content-section{
    padding:40px 0;
    background:#fff;
}
.buy-help-panel{
    display:none;
}
.buy-help-panel.active{
    display:block;
    animation:buyHelpFade .45s ease;
}
@keyframes buyHelpFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.buy-help-layout{
    max-width:1280px;
    margin:0 auto;
    align-items:center;
}
.buy-help-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:18px;
}
.buy-help-left{
    width:100%;
}
.buy-help-left h2{
    font-size:44px;
    line-height:1.2;
    color:var(--primary);
    margin-bottom:22px;
}
.buy-help-left>p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:45px;
    font-size:17px;
}
.buy-help-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px 36px;
    margin-top:40px;
}
.buy-help-list-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}
.buy-help-list-item i{
    width:54px;
    height:54px;
    flex:0 0 54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#F4F8FD;
    color:var(--secondary);
    font-size:22px;
}
.buy-help-list-item h4{
    font-size:21px;
    color:var(--primary);
    margin-bottom:8px;
}
.buy-help-list-item p{
    color:var(--muted);
    line-height:1.9;
    margin:0;
}
.buy-help-note{
    margin-top:50px;
    background:#F8FAFC;
    border-left:5px solid var(--secondary);
    padding:28px;
    border-radius:18px;
}
.buy-help-note h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:12px;
}
.buy-help-note p{
    margin:0;
    line-height:1.9;
    color:var(--muted);
}
.buy-help-actions{
    display:flex;
    gap:16px;
    margin-top:35px;
    flex-wrap:wrap;
}
.buy-help-actions .btn-primary,
.buy-help-actions .btn-outline{
    min-width:190px;
    justify-content:center;
}
.buy-help-actions .btn-outline{
    display:inline-flex;
    align-items:center;
    gap:10px;
}
@media(max-width:1199px){
    .buy-help-layout{
        grid-template-columns:1fr;
        gap:50px;
    }
    .buy-help-right{
        position:relative;
        top:auto;
        order:-1;
    }
}
@media(max-width:768px){
    .buy-help-content-section{
        padding:70px 0;
    }
    .buy-help-left h2{
        font-size:34px;
    }
    .buy-help-left>p{
        font-size:16px;
    }
    .buy-help-list{
        grid-template-columns:1fr;
    }
    .buy-help-list-item{
        gap:16px;
    }
    .buy-help-list-item i{
        width:48px;
        height:48px;
        flex:0 0 48px;
        font-size:20px;
    }
    .buy-help-list-item h4{
        font-size:18px;
    }
    .buy-help-note{
        padding:22px;
    }
    .buy-help-actions{
        flex-direction:column;
    }
    .buy-help-actions a{
        width:100%;
    }
}

.buy-help-support{
    padding:50px 0;
    background:linear-gradient(180deg,#ffffff 0%,#F8FAFC 100%);
}
.buy-help-support-inner{
    max-width:950px;
    margin:0 auto;
    text-align:center;
}
.buy-help-support-content h2{
    font-size:48px;
    line-height:1.2;
    color:var(--primary);
    margin:18px 0 22px;
}
.buy-help-support-content>p{
    max-width:760px;
    margin:0 auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}
.buy-help-support-features{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.support-feature{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:32px 26px;
    transition:.35s ease;
    text-align:left;
}
.support-feature:hover{
    transform:translateY(-6px);
    border-color:rgba(14,91,255,.25);
    box-shadow:0 18px 45px rgba(7,27,77,.08);
}
.support-feature i{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:24px;
    margin-bottom:24px;
}
.support-feature h4{
    font-size:22px;
    color:var(--primary);
    margin-bottom:12px;
    line-height:1.35;
}
.support-feature p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}
.buy-help-support .buy-help-actions{
    margin-top:55px;
    justify-content:center;
}
.buy-help-support .btn-primary,
.buy-help-support .btn-outline{
    min-width:220px;
}
.buy-help-support .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}
@media(max-width:991px){
    .buy-help-support{
        padding:80px 0;
    }
    .buy-help-support-content h2{
        font-size:40px;
    }
    .buy-help-support-features{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:45px;
    }
}
@media(max-width:768px){
    .buy-help-support{
        padding:70px 0;
    }
    .buy-help-support-content h2{
        font-size:32px;
    }
    .buy-help-support-content>p{
        font-size:16px;
    }
    .support-feature{
        padding:26px 22px;
    }
    .support-feature i{
        width:54px;
        height:54px;
        font-size:20px;
        margin-bottom:18px;
    }
    .support-feature h4{
        font-size:19px;
    }
    .buy-help-support .buy-help-actions{
        flex-direction:column;
        gap:14px;
    }
    .buy-help-support .buy-help-actions a{
        width:100%;
    }
}

.loan-help-hero{
    position:relative;
    overflow:hidden;
}
.loan-help-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.08),transparent 45%),
        radial-gradient(circle at 80% 80%,rgba(255,255,255,.05),transparent 45%);
    pointer-events:none;
}
.hero-highlights{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}
.hero-highlight{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    padding:18px 26px;
    min-width:170px;
}
.hero-highlight strong{
    display:block;
    font-size:26px;
    color:#fff;
    margin-bottom:6px;
    font-weight:700;
}
.hero-highlight span{
    color:rgba(255,255,255,.85);
    font-size:15px;
}
@media(max-width:768px){
    .hero-highlights{
        flex-direction:column;
        gap:14px;
    }
    .hero-highlight{
        min-width:100%;
    }
}

.loan-process{
    padding:50px 0;
    background:#fff;
}
.loan-process-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.loan-step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:34px;
    transition:.35s ease;
    position:relative;
}
.loan-step:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border-color:var(--secondary);
}
.step-number{
    display:inline-flex;
    width:54px;
    height:54px;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:var(--primary);
    color:#fff;
    font-weight:700;
    margin-bottom:22px;
}
.loan-step h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:16px;
}
.loan-step p{
    color:var(--muted);
    line-height:1.9;
    margin:0;
}
@media(max-width:991px){
    .loan-process-grid{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:767px){
    .loan-process-grid{
        grid-template-columns:1fr;
    }
    .loan-step{
        padding:26px;
    }
    .loan-step h3{
        font-size:21px;
    }
}

.loan-eligibility{
    padding:50px 0;
    background:#fff;
}
.eligibility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}
.eligibility-card{
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    transition:.35s ease;
    background:#fff;
}
.eligibility-card:hover{
    transform:translateY(-8px);
    border-color:var(--secondary);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.eligibility-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#F5F9FF;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
}
.eligibility-card h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:14px;
}
.eligibility-card p{
    color:var(--muted);
    line-height:1.9;
}
.loan-eligibility-note{
    margin-top:55px;
    padding:35px;
    border-radius:20px;
    background:#F8FAFC;
    border-left:5px solid var(--secondary);
}
.loan-eligibility-note h3{
    margin-bottom:20px;
    color:var(--primary);
}
.loan-eligibility-note ul{
    margin:0;
    padding-left:22px;
}
.loan-eligibility-note li{
    margin-bottom:14px;
    line-height:1.9;
    color:var(--muted);
}
@media(max-width:991px){
    .eligibility-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:767px){
    .eligibility-grid{
        grid-template-columns:1fr;
    }
    .loan-eligibility-note{
        padding:25px;
    }
}

.loan-documents{
    padding:50px 0;
    background:#F8FAFC;
}
.loan-document-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}
.loan-document-card{
    background:#fff;
    border-radius:20px;
    border:1px solid var(--border);
    padding:35px;
    transition:.35s;
}
.loan-document-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border-color:var(--secondary);
}
.loan-document-icon{
    width:64px;
    height:64px;
    border-radius:16px;
    background:#F4F8FD;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:22px;
}
.loan-document-card h3{
    color:var(--primary);
    margin-bottom:18px;
    font-size:23px;
}
.loan-document-card ul{
    margin:0;
    padding-left:18px;
}
.loan-document-card li{
    margin-bottom:12px;
    color:var(--muted);
    line-height:1.8;
}
.loan-document-note{
    margin-top:55px;
    background:#fff;
    padding:35px;
    border-left:5px solid var(--secondary);
    border-radius:18px;
}
.loan-document-note h3{
    color:var(--primary);
    margin-bottom:15px;
}
.loan-document-note p{
    margin:0;
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:991px){
    .loan-document-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:767px){
    .loan-document-grid{
        grid-template-columns:1fr;
    }
    .loan-document-card,
    .loan-document-note{
        padding:25px;
    }
}

.loan-interest{
    padding:50px 0;
    background:#fff;
}
.loan-interest-layout{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:45px;
    margin-top:60px;
}
.loan-interest-left{
    display:grid;
    gap:25px;
}
.loan-interest-card{
    padding:35px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
    transition:.35s;
}
.loan-interest-card:hover{
    transform:translateY(-6px);
    border-color:var(--secondary);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.loan-interest-card h3{
    color:var(--primary);
    margin-bottom:16px;
    font-size:26px;
}
.loan-interest-card p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:20px;
}
.loan-interest-card ul{
    padding-left:20px;
    margin:0;
}
.loan-interest-card li{
    margin-bottom:12px;
    color:var(--muted);
    line-height:1.8;
}
.emi-box{
    background:#F8FAFC;
    padding:35px;
    border-radius:20px;
    border:1px solid var(--border);
}
.emi-box h3{
    color:var(--primary);
    margin-bottom:18px;
}
.emi-box>p{
    color:var(--muted);
    margin-bottom:25px;
    line-height:1.8;
}
.emi-factor{
    display:flex;
    gap:18px;
    margin-bottom:22px;
}
.emi-icon{
    width:58px;
    height:58px;
    border-radius:15px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:24px;
}
.emi-factor strong{
    display:block;
    color:var(--primary);
    margin-bottom:5px;
}
.emi-factor span{
    color:var(--muted);
    line-height:1.7;
}
.loan-tip{
    margin-top:25px;
    background:var(--primary);
    color:#fff;
    padding:28px;
    border-radius:18px;
}
.loan-tip h4{
    margin-bottom:12px;
}
.loan-tip p{
    margin:0;
    line-height:1.8;
    opacity:.9;
}
@media(max-width:991px){
    .loan-interest-layout{
        grid-template-columns:1fr;
    }
}

.loan-emi-calculator{
    padding:50px 0;
    background:#F8FAFC;
}
.loan-calculator-layout{
    display:grid;
    grid-template-columns:1fr .9fr;
    gap:45px;
    margin-top:60px;
}
.loan-calculator-form,
.loan-calculator-result{
    background:#fff;
    border-radius:22px;
    padding:40px;
    border:1px solid var(--border);
}
.loan-input{
    margin-bottom:35px;
}
.loan-input label{
    display:block;
    margin-bottom:14px;
    font-weight:600;
    color:var(--primary);
}
.loan-input input[type=range]{
    width:100%;
}
.loan-value{
    margin-top:12px;
    font-size:18px;
    font-weight:700;
    color:var(--secondary);
}
.emi-result-card{
    background:var(--primary);
    color:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
}
.emi-result-card span{
    display:block;
    opacity:.8;
    margin-bottom:12px;
}
.emi-result-card strong{
    font-size:42px;
    display:block;
}
.emi-result-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:25px;
}
.emi-small-card{
    border:1px solid var(--border);
    border-radius:16px;
    padding:24px;
    text-align:center;
}
.emi-small-card span{
    display:block;
    color:var(--muted);
    margin-bottom:10px;
}
.emi-small-card strong{
    color:var(--primary);
    font-size:22px;
}
.loan-disclaimer{
    margin-top:30px;
    display:flex;
    gap:14px;
    align-items:flex-start;
}
.loan-disclaimer i{
    color:var(--secondary);
    margin-top:4px;
}
.loan-disclaimer p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:991px){
    .loan-calculator-layout{
        grid-template-columns:1fr;
    }
}
@media(max-width:767px){
    .loan-calculator-form,
    .loan-calculator-result{
        padding:25px;
    }
    .emi-result-grid{
        grid-template-columns:1fr;
    }
    .emi-result-card strong{
        font-size:34px;
    }
}

.help-faq-section{
    padding:50px 0;
    background:#F8FAFC;
}
.faq-wrapper{
    max-width:950px;
    margin:60px auto 0;
}
.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
}
.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 28px;
    background:none;
    border:none;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:var(--primary);
}
.faq-question i{
    transition:.3s;
}
.faq-answer{
    display:none;
    padding:0 28px 28px;
}
.faq-answer p{
    margin:0;
    color:var(--muted);
    line-height:1.9;
}
.faq-item.active .faq-answer{
    display:block;
}
.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

.help-bottom-cta{
    padding:50px 0;
}
.help-bottom-card{
    background:linear-gradient(135deg,var(--primary),#0E5BFF);
    border-radius:28px;
    padding:70px;
    text-align:center;
    color:#fff;
}
.help-bottom-card span{
    font-size:15px;
    letter-spacing:.8px;
    text-transform:uppercase;
    opacity:.8;
}
.help-bottom-card h2{
    font-size:48px;
    margin:20px 0;
}
.help-bottom-card p{
    max-width:800px;
    margin:0 auto 35px;
    opacity:.9;
    line-height:1.9;
}
.help-bottom-card .buy-help-actions{
    justify-content:center;
}

.help-last-updated{
    padding:0 0 80px;
}
.updated-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#F8FAFC;
    border-radius:20px;
    padding:30px;
    border:1px solid var(--border);
}
.updated-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:24px;
}
.updated-content strong{
    display:block;
    color:var(--primary);
    margin-bottom:10px;
}
.updated-content p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
@media(max-width:768px){
    .help-bottom-card{
        padding:40px 25px;
    }
    .help-bottom-card h2{
        font-size:34px;
    }
    .updated-box{
        flex-direction:column;
    }
    .faq-question{
        font-size:17px;
        padding:20px;
    }
    .faq-answer{
        padding:0 20px 20px;
    }
}

.error-page{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#F8FAFC 0%,#FFFFFF 100%);
    min-height:calc(80vh - 160px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:100px 0;
}
.error-bg-pattern{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%,rgba(14,91,255,.05) 0%,transparent 35%),
        radial-gradient(circle at 80% 30%,rgba(25,184,255,.06) 0%,transparent 35%),
        radial-gradient(circle at 50% 100%,rgba(7,27,77,.04) 0%,transparent 45%);
    pointer-events:none;
}
.error-wrapper{
    position:relative;
    z-index:2;
    max-width:820px;
    margin:auto;
    text-align:center;
}
.error-tag{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}
.error-code{
    font-size:180px;
    line-height:1;
    font-weight:800;
    color:rgba(7,27,77,.08);
    margin:25px 0 10px;
    user-select:none;
}
.error-wrapper h1{
    font-size:52px;
    line-height:1.2;
    color:var(--primary);
    margin-bottom:24px;
}
.error-wrapper p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    font-size:18px;
    line-height:1.9;
}
.error-actions{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}
.error-actions .btn-primary,
.error-actions .btn-outline{
    min-width:220px;
    justify-content:center;
}
@media(max-width:992px){
    .error-code{
        font-size:130px;
    }
    .error-wrapper h1{
        font-size:42px;
    }
}
@media(max-width:768px){
    .error-page{
        min-height:auto;
        padding:80px 0;
    }
    .error-code{
        font-size:90px;
    }
    .error-wrapper h1{
        font-size:32px;
    }
    .error-wrapper p{
        font-size:16px;
    }
    .error-actions{
        flex-direction:column;
    }
    .error-actions a{
        width:100%;
    }
}

.seller-hero{
    padding:50px 0;
    background:
    radial-gradient(circle at top left,rgba(14,91,255,.05),transparent 35%),
    radial-gradient(circle at bottom right,rgba(25,184,255,.06),transparent 35%),
    linear-gradient(180deg,#F8FAFC,#FFFFFF);
    overflow:hidden;
}
.seller-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:80px;
    align-items:center;
}
.seller-label{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
}
.seller-hero-content h1{
    font-size:60px;
    line-height:1.12;
    color:var(--primary);
    margin:25px 0;
}
.seller-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
    max-width:720px;
}
.seller-actions{
    display:flex;
    gap:18px;
    margin:45px 0;
    flex-wrap:wrap;
}
.seller-highlights{
    display:flex;
    gap:55px;
    flex-wrap:wrap;
}
.seller-highlight strong{
    display:block;
    font-size:28px;
    color:var(--primary);
    margin-bottom:8px;
}
.seller-highlight span{
    color:var(--muted);
    font-size:15px;
}
.seller-dashboard-preview{
    position:relative;
}
.dashboard-window{
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    box-shadow:0 35px 90px rgba(0,0,0,.08);
}
.window-header{
    display:flex;
    gap:8px;
    padding:18px 22px;
    background:#F8FAFC;
}
.window-header span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#D8E2F1;
}
.window-body{
    display:grid;
    grid-template-columns:80px 1fr;
    min-height:420px;
}
.dashboard-sidebar{
    background:#F8FAFC;
    padding:25px 15px;
}
.sidebar-item{
    height:50px;
    border-radius:12px;
    background:#E8EEF7;
    margin-bottom:18px;
}
.sidebar-item.active{
    background:var(--secondary);
}
.dashboard-content{
    padding:30px;
}
.dashboard-banner{
    height:90px;
    border-radius:18px;
    background:#EEF5FD;
    margin-bottom:25px;
}
.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:25px;
}
.dashboard-card{
    height:120px;
    border-radius:18px;
    background:#F5F8FC;
}
.dashboard-chart{
    height:140px;
    border-radius:20px;
    background:#EEF5FD;
}
@media(max-width:991px){
    .seller-hero-grid{
        grid-template-columns:1fr;
    }
    .seller-hero-content{
        text-align:center;
    }
    .seller-hero-content p{
        margin:auto;
    }
    .seller-actions{
        justify-content:center;
    }
    .seller-highlights{
        justify-content:center;
    }
    .seller-hero-content h1{
        font-size:42px;
    }
}

.seller-types{
    padding:50px 0;
    background:#fff;
}
.seller-type-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}
.seller-type-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:40px 32px;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}
.seller-type-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--secondary);
    transform:scaleX(0);
    transition:.35s;
}
.seller-type-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.seller-type-card:hover::before{
    transform:scaleX(1);
}
.seller-type-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}
.seller-type-icon i{
    font-size:30px;
    color:var(--secondary);
}
.seller-type-card h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
}
.seller-type-card p{
    color:var(--muted);
    line-height:1.9;
    margin:0;
}
@media(max-width:1199px){
    .seller-type-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .seller-type-grid{
        grid-template-columns:1fr;
    }
}

.seller-dashboard-features{
    padding:50px 0;
    background:#F8FAFC;
}
.dashboard-feature-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-top:70px;
}
.dashboard-feature-left{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.dashboard-feature-card{
    display:flex;
    gap:22px;
    padding:26px;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--border);
    transition:.35s ease;
}
.dashboard-feature-card:hover{
    transform:translateX(8px);
    box-shadow:0 20px 45px rgba(0,0,0,.06);
}
.dashboard-feature-card.active{
    border-color:var(--secondary);
    box-shadow:0 20px 45px rgba(14,91,255,.12);
}
.dashboard-feature-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.dashboard-feature-icon i{
    color:var(--secondary);
    font-size:24px;
}
.dashboard-feature-card h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:10px;
}
.dashboard-feature-card p{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
.dashboard-preview{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 35px 80px rgba(0,0,0,.08);
}
.preview-top{
    display:flex;
    gap:8px;
    padding:18px;
    background:#F4F8FD;
}
.preview-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#D8E2F1;
}
.preview-body{
    display:grid;
    grid-template-columns:80px 1fr;
    min-height:520px;
}
.preview-sidebar{
    background:#F8FAFC;
    padding:20px 14px;
}
.preview-sidebar div{
    height:46px;
    border-radius:12px;
    background:#E8EEF7;
    margin-bottom:16px;
}
.preview-main{
    padding:28px;
}
.preview-header{
    height:90px;
    border-radius:18px;
    background:#EEF5FD;
    margin-bottom:24px;
}
.preview-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:24px;
}
.preview-cards div{
    height:110px;
    border-radius:18px;
    background:#F6F9FC;
}
.preview-table{
    height:150px;
    border-radius:18px;
    background:#F3F7FC;
    margin-bottom:20px;
}
.preview-chart{
    height:130px;
    border-radius:18px;
    background:#EEF5FD;
}
@media(max-width:992px){
    .dashboard-feature-layout{
        grid-template-columns:1fr;
    }
    .dashboard-feature-right{
        order:-1;
    }
}

.seller-process{
    padding:50px 0;
    background:#fff;
}
.seller-process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:70px;
}
.seller-step{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:40px 35px;
    transition:.35s ease;
    overflow:hidden;
}
.seller-step::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:var(--secondary);
    transform:scaleX(0);
    transition:.35s;
}
.seller-step:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.seller-step:hover::before{
    transform:scaleX(1);
}
.seller-step-number{
    width:72px;
    height:72px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    margin-bottom:30px;
}
.seller-step h3{
    font-size:25px;
    color:var(--primary);
    margin-bottom:16px;
}
.seller-step p{
    color:var(--muted);
    line-height:1.9;
    margin:0;
}
@media(max-width:1199px){
    .seller-process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .seller-process-grid{
        grid-template-columns:1fr;
    }
    .seller-step{
        padding:35px 28px;
    }
}

.seller-benefits{
    padding:50px 0;
    background:#F8FAFC;
}
.seller-benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}
.seller-benefit-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:42px 35px;
    transition:.35s ease;
    text-align:left;
}
.seller-benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    border-color:var(--secondary);
}
.seller-benefit-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
}
.seller-benefit-icon i{
    font-size:30px;
    color:var(--secondary);
}
.seller-benefit-card h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:15px;
}
.seller-benefit-card p{
    color:var(--muted);
    line-height:1.9;
    margin:0;
}
@media(max-width:1199px){
    .seller-benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .seller-benefit-grid{
        grid-template-columns:1fr;
    }
    .seller-benefit-card{
        padding:35px 28px;
    }
}

.seller-testimonials{
    padding:50px 0;
    background:#fff;
}
.seller-testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}
.seller-testimonial-card{
    position:relative;
    padding:40px 35px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    transition:.35s ease;
}
.seller-testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}
.quote-icon{
    width:56px;
    height:56px;
    border-radius:16px;
    background:#F4F8FD;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}
.quote-icon i{
    color:var(--secondary);
    font-size:24px;
}
.seller-testimonial-card p{
    color:var(--muted);
    line-height:2;
    margin-bottom:35px;
}
.seller-client{
    display:flex;
    align-items:center;
    gap:16px;
}
.seller-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--accent)
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}
.seller-client h4{
    margin:0 0 5px;
    color:var(--primary);
    font-size:20px;
}
.seller-client span{
    color:var(--muted);
    font-size:15px;
}
@media(max-width:1199px){
    .seller-testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){
    .seller-testimonial-grid{
        grid-template-columns:1fr;
    }
}

.seller-faq{
    padding:50px 0;
    background:#fff;
}
.seller-faq-wrapper{
    max-width:900px;
    margin:70px auto 0;
}
.seller-faq-item{
    border:1px solid var(--border);
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    background:#fff;
    transition:.35s ease;
}
.seller-faq-item.active,
.seller-faq-item:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}
.seller-faq-question{
    width:100%;
    padding:24px 30px;
    border:none;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
    font-size:20px;
    font-weight:600;
    color:var(--primary);
}
.seller-faq-question span{
    flex:1;
    padding-right:20px;
}
.seller-faq-question i{
    color:var(--secondary);
    transition:.35s ease;
    font-size:18px;
}
.seller-faq-item.active .seller-faq-question i{
    transform:rotate(45deg);
}
.seller-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}
.seller-faq-answer p{
    padding:0 30px 30px;
    margin:0;
    color:var(--muted);
    line-height:1.9;
}
@media(max-width:768px){
    .seller-faq-question{
        font-size:18px;
        padding:20px;
    }
    .seller-faq-answer p{
        padding:0 20px 20px;
    }
}

.seller-final-cta{
    padding:50px 0;
    background:#F8FAFC;
}
.seller-cta-card{
    max-width:900px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:70px 60px;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}
.seller-cta-label{
    display:inline-flex;
    padding:8px 18px;
    border-radius:40px;
    background:rgba(14,91,255,.08);
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
}
.seller-cta-card h2{
    margin:24px 0;
    font-size:52px;
    line-height:1.2;
    color:var(--primary);
}
.seller-cta-card p{
    max-width:700px;
    margin:auto;
    color:var(--muted);
    line-height:1.9;
    font-size:18px;
}
.seller-cta-card .seller-actions{
    justify-content:center;
    margin-top:45px;
}
@media(max-width:768px){
    .seller-cta-card{
        padding:45px 30px;
    }
    .seller-cta-card h2{
        font-size:34px;
    }
    .seller-cta-card p{
        font-size:16px;
    }
}

