:root{
    --bg:#F6F8FB;
    --white:#FFFFFF;
    --navy:#0B1F3A;
    --text:#24364F;
    --muted:#68778D;
    --blue:#1D4ED8;
    --blue-dark:#163EA8;
    --blue-soft:#EEF4FF;
    --gold:#C8A45D;
    --border:#E5EAF2;
    --shadow:0 18px 55px rgba(15,35,70,.09);

    --pb-primary:#3256ff;
    --pb-primary-2:#4f6cff;
    --pb-gold:#c8a45d;
    --pb-text:#14213d;
    --pb-muted:#64748b;
    --pb-border:#e6ebf3;
    --pb-bg:#f6f8fc;
    --pb-radius:28px;
    --pb-shadow:0 22px 55px rgba(20,33,61,.08);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* Navbar */

.navbar,
.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
    transition:.25s ease;
}

.navbar.scrolled{
    box-shadow:0 8px 30px rgba(15,35,70,.08);
}

.nav-inner,
.site-header .container{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo,
.site-logo{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    color:var(--navy);
    font-size:22px;
    font-weight:950;
    letter-spacing:-.7px;
}

.logo-mark{
    width:42px;
    height:42px;
    border-radius:12px;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:20px;
}

.logo-text strong{
    display:block;
    font-size:22px;
    color:var(--navy);
    line-height:1;
}

.logo-text span{
    display:block;
    margin-top:4px;
    font-size:12px;
    color:var(--muted);
    font-weight:600;
}

.menu,
.site-nav{
    display:flex;
    align-items:center;
    gap:28px;
    color:#34465E;
    font-size:15px;
    font-weight:700;
}

.menu a,
.site-nav a{
    transition:.2s ease;
}

.menu a:hover,
.site-nav a:hover{
    color:var(--blue);
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.nav-phone,
.site-phone{
    color:var(--navy);
    font-weight:800;
    font-size:15px;
}

.site-phone{
    min-height:44px;
    padding:0 17px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--blue),#4f6cff);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 14px 28px rgba(29,78,216,.20);
}

/* Buttons */

.nav-btn,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--blue);
    color:#fff;
    font-weight:800;
    border:1px solid var(--blue);
    transition:.25s ease;
}

.nav-btn{
    padding:13px 18px;
}

.btn-primary{
    padding:16px 24px;
}

.nav-btn:hover,
.btn-primary:hover{
    background:var(--blue-dark);
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(29,78,216,.22);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    padding:16px 24px;
    background:#fff;
    border:1px solid rgba(255,255,255,.35);
    color:var(--navy);
    font-weight:800;
    transition:.25s ease;
}

.btn-secondary:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow);
}

/* Hero */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:140px 0 70px;
    background:var(--navy);
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.08);
    filter:blur(2px);
}

.hero-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(11,31,58,.94) 0%,rgba(11,31,58,.84) 42%,rgba(11,31,58,.42) 100%),
        linear-gradient(180deg,rgba(11,31,58,.12) 0%,rgba(11,31,58,.22) 60%,rgba(246,248,251,1) 100%);
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:760px;
    color:#fff;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:9px;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 15px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    margin-bottom:24px;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
}

.eyebrow span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
}

h1{
    font-size:68px;
    line-height:1.02;
    letter-spacing:-2.2px;
    color:#fff;
    margin-bottom:24px;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.86);
    margin-bottom:32px;
    max-width:700px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.hero-points{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:740px;
}

.hero-point{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
    padding:18px;
    backdrop-filter:blur(12px);
}

.hero-point strong{
    display:block;
    color:#fff;
    font-size:24px;
    margin-bottom:4px;
}

.hero-point span{
    color:rgba(255,255,255,.78);
    font-size:13px;
    font-weight:700;
}

/* Sections */

section{
    padding:86px 0;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:42px;
}

.section-kicker{
    color:var(--blue);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:10px;
}

.section-title{
    font-size:42px;
    line-height:1.13;
    letter-spacing:-1.2px;
    color:var(--navy);
    max-width:720px;
}

.section-subtitle{
    color:var(--muted);
    line-height:1.75;
    max-width:500px;
}

.reveal{
    opacity:0;
    transform:translateY(32px);
    transition:.75s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* About */

.about-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:30px;
}

.about-img{
    border-radius:28px;
    overflow:hidden;
    min-height:520px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
}

.about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:38px;
    box-shadow:var(--shadow);
}

.about-card p{
    color:var(--muted);
    line-height:1.85;
    margin-bottom:20px;
    font-size:16px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:26px;
}

.stat{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:18px;
    padding:22px;
}

.stat strong{
    display:block;
    color:var(--blue);
    font-size:30px;
    margin-bottom:5px;
}

.stat span{
    color:var(--muted);
    font-weight:700;
    font-size:14px;
}

/* Services / Swiper */

.service-swiper,
.team-swiper,
.partner-swiper{
    padding:8px 6px 55px;
}

.swiper-slide{
    height:auto;
}

.service-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-img{
    height:190px;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.35s ease;
}

.service-card:hover .service-img img{
    transform:scale(1.06);
}

.service-body{
    padding:25px;
}

.service-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:var(--blue-soft);
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.service-icon svg{
    width:25px;
    height:25px;
}

.service-body h3{
    color:var(--navy);
    font-size:21px;
    margin-bottom:10px;
}

.service-body p{
    color:var(--muted);
    line-height:1.7;
    margin-bottom:17px;
}

.more-link{
    color:var(--blue);
    font-weight:900;
    font-size:14px;
}

.swiper-pagination-bullet{
    width:9px;
    height:9px;
    background:#B8C3D4;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:var(--blue);
    width:24px;
    border-radius:999px;
}

.carousel-nav{
    display:flex;
    gap:10px;
    align-items:center;
}

.carousel-btn{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid var(--border);
    background:#fff;
    color:var(--navy);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 28px rgba(15,35,70,.07);
    transition:.25s ease;
}

.carousel-btn:hover{
    background:var(--blue);
    color:#fff;
    border-color:var(--blue);
    transform:translateY(-2px);
}

.carousel-btn svg{
    width:18px;
    height:18px;
}

/* Partners */

.partners-section{
    background:
        radial-gradient(circle at 10% 20%, rgba(29,78,216,.07), transparent 28%),
        radial-gradient(circle at 90% 70%, rgba(200,164,93,.10), transparent 30%),
        #fff;
}

.partner-card{
    height:132px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.partner-card:hover{
    transform:translateY(-6px);
}

.partner-card img{
    max-width:160px;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.78;
    transition:.25s ease;
}

.partner-card:hover img{
    filter:none;
    opacity:1;
}

.partner-person-card img{
    width:100%;
    height:420px;
    object-fit:contain;
    background:#fff;
}

.partner-person-card .team-body{
    min-height:210px;
}

.partner-person-card .more-link{
    margin-top:14px;
    display:inline-flex;
}

/* Steps */

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

.step{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow);
}

.step-num{
    color:var(--gold);
    font-size:34px;
    font-weight:900;
    margin-bottom:16px;
}

.step h3{
    color:var(--navy);
    margin-bottom:10px;
}

.step p{
    color:var(--muted);
    line-height:1.65;
}

/* Cases */

.cases{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:24px;
}

.case-feature{
    min-height:480px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

.case-feature img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.case-feature-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:34px;
    background:linear-gradient(180deg,rgba(11,31,58,0),rgba(11,31,58,.88));
    color:#fff;
}

.case-feature-content span{
    display:inline-flex;
    background:rgba(255,255,255,.15);
    padding:8px 13px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:12px;
}

.case-feature-content h3{
    font-size:30px;
    margin-bottom:10px;
}

.case-feature-content p{
    color:rgba(255,255,255,.86);
    line-height:1.65;
}

.case-list{
    display:grid;
    gap:18px;
}

.case-small{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:28px;
    box-shadow:var(--shadow);
}

.case-small strong{
    color:var(--blue);
    font-size:24px;
    display:block;
    margin-bottom:9px;
}

.case-small h3{
    color:var(--navy);
    margin-bottom:9px;
}

.case-small p{
    color:var(--muted);
    line-height:1.65;
}

/* Team */

.team-card{
    height:100%;
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.team-card img{
    width:100%;
    height:310px;
    object-fit:cover;
    display:block;
}

.team-body{
    padding:25px;
}

.team-body h3{
    color:var(--navy);
    font-size:22px;
    margin-bottom:8px;
}

.team-role{
    display:inline-flex;
    background:var(--blue-soft);
    color:var(--blue);
    padding:7px 11px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    margin-bottom:14px;
}

.team-body p{
    color:var(--muted);
    line-height:1.65;
}

/* FAQ */

.faq-section{
    background:
        radial-gradient(circle at 12% 10%, rgba(29,78,216,.08), transparent 28%),
        linear-gradient(180deg,#FFFFFF,#F6F8FB);
}

.faq-premium{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:32px;
    align-items:start;
}

.faq-panel{
    position:sticky;
    top:112px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:38px;
    box-shadow:var(--shadow);
}

.faq-panel h2{
    color:var(--navy);
    font-size:40px;
    line-height:1.12;
    letter-spacing:-1.2px;
    margin-bottom:16px;
}

.faq-panel p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:26px;
}

.faq-list{
    display:grid;
    gap:16px;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 42px rgba(15,35,70,.07);
    transition:.25s ease;
}

.faq-item.faq-open{
    border-color:rgba(29,78,216,.28);
    box-shadow:0 22px 58px rgba(29,78,216,.12);
}

.faq-question{
    width:100%;
    padding:24px 26px;
    background:transparent;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
}

.faq-q-text{
    color:var(--navy);
    font-size:18px;
    line-height:1.45;
    font-weight:900;
}

.faq-more{
    flex-shrink:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--blue-soft);
    color:var(--blue);
    padding:10px 15px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    transition:.25s ease;
}

.faq-item.faq-open .faq-more{
    background:var(--blue);
    color:#fff;
}

.faq-answer{
    display:none;
    padding:0 26px 26px;
}

.faq-answer p{
    color:var(--muted);
    line-height:1.85;
    font-size:16px;
    margin:0;
}

.faq-item.faq-open .faq-answer{
    display:block;
}

.faq-empty{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:28px;
    color:var(--muted);
    font-weight:800;
}

/* Contact */

.contact-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    box-shadow:var(--shadow);
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr .85fr;
}

.contact-left{
    padding:42px;
}

.contact-left h2{
    color:var(--navy);
    font-size:38px;
    line-height:1.15;
    margin-bottom:15px;
}

.contact-left p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:28px;
}

.contact-right{
    background:var(--navy);
    color:#fff;
    padding:42px;
}

.contact-item{
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.14);
}

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

.contact-item b{
    display:block;
    margin-bottom:6px;
    color:#fff;
}

.contact-item span{
    color:rgba(255,255,255,.78);
    line-height:1.6;
}

.contacts-premium{
    padding:90px 0;
}

.contact-premium-grid{
    display:grid;
    grid-template-columns:.95fr 1.25fr;
    gap:28px;
    align-items:stretch;
}

.contact-cta-card{
    border-radius:34px;
    padding:42px;
    background:
        linear-gradient(135deg, rgba(11,31,58,.96), rgba(19,59,106,.92)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=1200') center/cover;
    color:#fff;
    position:relative;
    overflow:hidden;
    min-height:100%;
}

.contact-cta-card::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    right:-90px;
    bottom:-90px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
}

.contact-cta-card h2{
    font-size:42px;
    line-height:1.08;
    margin:14px 0 18px;
    color:#fff;
}

.contact-cta-card p{
    color:rgba(255,255,255,.78);
    font-size:16px;
    line-height:1.75;
    max-width:520px;
}

.contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.contact-mini{
    margin-top:34px;
    padding:18px 20px;
    border-radius:22px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    display:flex;
    flex-direction:column;
    gap:6px;
    max-width:320px;
}

.contact-mini span{
    font-size:13px;
    color:rgba(255,255,255,.65);
}

.contact-mini strong{
    font-size:20px;
    color:#fff;
}

.contact-info-panel{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.office-card{
    border-radius:30px;
    padding:26px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 24px 70px rgba(15,23,42,.08);
}

.office-head span{
    width:42px;
    height:42px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0B1F3A;
    color:#fff;
    font-weight:800;
    margin-bottom:16px;
}

.office-head h3{
    margin:0 0 20px;
    font-size:22px;
    line-height:1.25;
    color:#0B1F3A;
}

.office-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.office-list div{
    padding-top:14px;
    border-top:1px solid rgba(15,23,42,.08);
}

.office-list b{
    display:block;
    font-size:13px;
    color:#64748b;
    margin-bottom:5px;
}

.office-list span{
    display:block;
    font-size:15px;
    line-height:1.5;
    color:#0f172a;
    font-weight:600;
}

.social-strip{
    grid-column:1 / -1;
    border-radius:26px;
    padding:22px 26px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
}

.social-strip b{
    color:#0B1F3A;
}

.social-strip span{
    color:#64748b;
    font-weight:600;
}

/* Social */

.social-section{
    padding:40px 0 90px;
}

.social-box{
    border-radius:34px;
    padding:34px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 24px 70px rgba(15,23,42,.08);
    display:grid;
    grid-template-columns:.9fr 1.2fr;
    gap:30px;
    align-items:center;
}

.social-box h2{
    margin:10px 0 12px;
    font-size:34px;
    color:#0B1F3A;
}

.social-box p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.social-links-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.social-link-card{
    min-height:120px;
    border-radius:24px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    color:#0B1F3A;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:.25s;
}

.social-link-card:hover{
    transform:translateY(-5px);
    background:#0B1F3A;
    color:#fff;
}

.social-icon{
    width:46px;
    height:46px;
    border-radius:16px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0B1F3A;
    box-shadow:0 10px 25px rgba(15,23,42,.08);
}

.social-icon svg{
    width:22px;
    height:22px;
}

.social-link-card b{
    font-size:14px;
}

/* Floating */

.floating{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:1500;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.floating a{
    width:54px;
    height:54px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    box-shadow:0 14px 35px rgba(29,78,216,.25);
}

/* Page Builder Public */

.pb-section,
.pb-hero{
    position:relative;
    padding:90px 0;
    overflow:hidden;
}

.pb-bg-default{
    background:#fff;
}

.pb-bg-light{
    background:linear-gradient(180deg,#fbfdff,#f6f8fc);
}

.pb-bg-blue{
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,.18), transparent 28%),
        linear-gradient(135deg,#203fd8,#3256ff);
    color:#fff;
}

.pb-bg-dark{
    background:
        radial-gradient(circle at 80% 0%, rgba(50,86,255,.25), transparent 30%),
        linear-gradient(135deg,#07111f,#111827);
    color:#fff;
}

.pb-bg-gold{
    background:
        radial-gradient(circle at 15% 0%, rgba(255,255,255,.35), transparent 28%),
        linear-gradient(135deg,#f8f1df,#fffaf0);
}

.pb-content{
    max-width:860px;
}

.pb-align-left{
    text-align:left;
    margin-right:auto;
}

.pb-align-center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.pb-align-right{
    text-align:right;
    margin-left:auto;
}

.pb-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:16px;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(50,86,255,.10);
    color:var(--pb-primary);
    font-size:13px;
    font-weight:900;
}

.pb-bg-blue .pb-kicker,
.pb-bg-dark .pb-kicker{
    background:rgba(255,255,255,.16);
    color:#fff;
}

.pb-title{
    margin:0;
    color:inherit;
    font-size:44px;
    line-height:1.08;
    font-weight:950;
    letter-spacing:-1.4px;
}

.pb-subtitle{
    max-width:760px;
    margin:18px 0 0;
    color:var(--pb-muted);
    font-size:19px;
    line-height:1.7;
    font-weight:650;
}

.pb-align-center .pb-subtitle{
    margin-left:auto;
    margin-right:auto;
}

.pb-bg-blue .pb-subtitle,
.pb-bg-dark .pb-subtitle{
    color:rgba(255,255,255,.82);
}

.pb-text{
    margin-top:22px;
    color:var(--pb-muted);
    font-size:17px;
    line-height:1.9;
    font-weight:550;
}

.pb-bg-blue .pb-text,
.pb-bg-dark .pb-text{
    color:rgba(255,255,255,.86);
}

.pb-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    margin-top:28px;
    padding:14px 24px;
    border-radius:17px;
    background:linear-gradient(135deg,var(--pb-primary),var(--pb-primary-2));
    color:#fff;
    font-size:15px;
    font-weight:950;
    box-shadow:0 18px 36px rgba(50,86,255,.22);
    transition:.22s ease;
}

.pb-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 48px rgba(50,86,255,.28);
}

.pb-hero{
    padding:110px 0;
}

.pb-hero-inner{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:54px;
}

.pb-hero-title{
    margin:0;
    color:inherit;
    font-size:62px;
    line-height:1.02;
    font-weight:950;
    letter-spacing:-2.4px;
}

.pb-hero-subtitle{
    max-width:720px;
    margin:22px 0 0;
    color:var(--pb-muted);
    font-size:21px;
    line-height:1.7;
    font-weight:650;
}

.pb-bg-blue .pb-hero-subtitle,
.pb-bg-dark .pb-hero-subtitle{
    color:rgba(255,255,255,.84);
}

.pb-hero-image img,
.pb-image img{
    width:100%;
    display:block;
    border-radius:32px;
    object-fit:cover;
    box-shadow:var(--pb-shadow);
}

.pb-hero-image img{
    min-height:430px;
}

.pb-image-text{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    align-items:center;
    gap:54px;
}

.pb-image img{
    min-height:360px;
}

.pb-grid{
    display:grid;
    gap:22px;
    margin-top:42px;
}

.pb-grid-1{grid-template-columns:1fr}
.pb-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.pb-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.pb-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.pb-grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}
.pb-grid-6{grid-template-columns:repeat(6,minmax(0,1fr))}

.pb-card{
    padding:28px;
    border-radius:26px;
    background:#fff;
    border:1px solid var(--pb-border);
    box-shadow:0 14px 34px rgba(20,33,61,.055);
    transition:.22s ease;
}

.pb-card:hover{
    transform:translateY(-4px);
    box-shadow:0 24px 55px rgba(50,86,255,.11);
    border-color:#dbe4ff;
}

.pb-card h3{
    margin:0 0 12px;
    color:var(--pb-text);
    font-size:21px;
    font-weight:950;
    letter-spacing:-.4px;
}

.pb-card p{
    margin:0;
    color:var(--pb-muted);
    font-size:15px;
    line-height:1.7;
    font-weight:600;
}

.pb-card a{
    display:inline-flex;
    margin-top:18px;
    color:var(--pb-primary);
    font-weight:900;
}

.pb-bg-blue .pb-card,
.pb-bg-dark .pb-card{
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.18);
    backdrop-filter:blur(18px);
}

.pb-bg-blue .pb-card h3,
.pb-bg-dark .pb-card h3{
    color:#fff;
}

.pb-bg-blue .pb-card p,
.pb-bg-dark .pb-card p{
    color:rgba(255,255,255,.78);
}

.pb-bg-blue .pb-card a,
.pb-bg-dark .pb-card a{
    color:#fff;
}

/* Premium Footer */

.site-footer{
    position:relative;
    overflow:hidden;
    padding:76px 0 28px;
    background:
        radial-gradient(circle at 12% 0%, rgba(29,78,216,.26), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(200,164,93,.18), transparent 30%),
        linear-gradient(135deg,#07111f 0%,#0B1F3A 52%,#111827 100%);
    color:#fff;
    border-top:0;
    text-align:left;
}

.site-footer::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size:44px 44px;
    opacity:.55;
}

.site-footer::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-160px;
    bottom:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    pointer-events:none;
}

.site-footer .container{
    position:relative;
    z-index:2;
    display:block;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.45fr .75fr .9fr 1.05fr;
    gap:42px;
    padding-bottom:44px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-brand{
    min-width:0;
}

.footer-logo{
    display:inline-flex;
    align-items:center;
    gap:13px;
    margin-bottom:20px;
}

.footer-logo span{
    width:50px;
    height:50px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),#4f6cff);
    color:#fff;
    font-size:22px;
    font-weight:950;
    box-shadow:0 18px 38px rgba(29,78,216,.35);
}

.footer-logo strong{
    color:#fff;
    font-size:25px;
    font-weight:950;
    letter-spacing:-.8px;
}

.footer-brand p{
    max-width:440px;
    margin:0;
    color:rgba(255,255,255,.72);
    font-size:15px;
    line-height:1.85;
    font-weight:500;
}

.footer-socials{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px;
}

.footer-socials a{
    min-height:40px;
    padding:0 15px;
    border-radius:999px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
    color:#fff;
    font-size:13px;
    font-weight:850;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.22s ease;
}

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

.footer-col{
    min-width:0;
}

.footer-col h4{
    margin:0 0 19px;
    color:#fff;
    font-size:15px;
    font-weight:950;
}

.footer-col a,
.footer-col p{
    display:block;
    margin:0 0 12px;
    color:rgba(255,255,255,.68);
    font-size:14px;
    line-height:1.7;
    font-weight:650;
    transition:.2s ease;
}

.footer-col a:hover{
    color:#fff;
    transform:translateX(4px);
}

.footer-contact a{
    color:#fff;
    font-weight:850;
}

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-top:24px;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.55);
    font-size:13px;
    font-weight:650;
}

.footer-bottom div{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.footer-bottom a{
    color:rgba(255,255,255,.62);
    font-size:13px;
    font-weight:750;
}

.footer-bottom a:hover{
    color:#fff;
}

/* Responsive */

@media(max-width:1050px){
    .menu,
    .nav-phone{
        display:none;
    }

    .about-grid,
    .cases,
    .contact-box,
    .faq-premium,
    .contact-premium-grid,
    .social-box,
    .pb-hero-inner,
    .pb-image-text{
        grid-template-columns:1fr;
    }

    .faq-panel{
        position:relative;
        top:auto;
    }

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

    h1{
        font-size:46px;
    }

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

    .pb-hero-title{
        font-size:48px;
    }

    .pb-title{
        font-size:38px;
    }

    .pb-grid-4,
    .pb-grid-5,
    .pb-grid-6{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:992px){
    .contact-info-panel{
        grid-template-columns:1fr;
    }

    .social-strip{
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-cta-card h2{
        font-size:32px;
    }

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

@media(max-width:760px){
    .pb-section,
    .pb-hero{
        padding:64px 0;
    }

    .pb-hero-title{
        font-size:38px;
    }

    .pb-title{
        font-size:32px;
    }

    .pb-subtitle,
    .pb-hero-subtitle{
        font-size:17px;
    }

    .pb-grid,
    .pb-grid-2,
    .pb-grid-3,
    .pb-grid-4,
    .pb-grid-5,
    .pb-grid-6{
        grid-template-columns:1fr;
    }

    .site-header .container{
        flex-wrap:wrap;
        padding-top:14px;
        padding-bottom:14px;
    }

    .site-nav{
        width:100%;
        overflow-x:auto;
        gap:16px;
    }
}

@media(max-width:680px){
    .site-footer{
        padding:54px 0 24px;
    }

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

    .footer-bottom{
        display:block;
    }

    .footer-bottom div{
        margin-top:14px;
    }
}

@media(max-width:650px){
    .nav-btn{
        display:none;
    }

    .nav-inner,
    .site-header .container{
        min-height:72px;
    }

    .logo-text span{
        display:none;
    }

    .hero{
        padding-top:120px;
    }

    h1{
        font-size:37px;
        letter-spacing:-1.2px;
    }

    .hero-text{
        font-size:16px;
    }

    .hero-points,
    .steps,
    .stats{
        grid-template-columns:1fr;
    }

    .section-head{
        display:block;
    }

    .carousel-nav{
        margin-top:18px;
    }

    .section-title{
        font-size:32px;
    }

    section{
        padding:65px 0;
    }

    .about-img{
        min-height:360px;
    }

    .contact-left,
    .contact-right,
    .faq-panel{
        padding:28px;
    }

    .faq-panel h2{
        font-size:31px;
    }

    .faq-question{
        align-items:flex-start;
        flex-direction:column;
    }
}