@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07111f;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

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

/* HEADER */

.site-header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:1000;
}

.header-inner{
    height:82px;
    background:rgba(8,15,27,0.78);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(18px);
    border-radius:22px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.header-btn{
    padding:12px 22px;
    border-radius:14px;
}

.nav a{
    font-size:15px;
    font-weight:500;
}

.logo{
    font-size:28px;
}

.logo-icon{
    width:44px;
    height:44px;
    border-radius:14px;
}

.logo{
  display:flex;
  align-items:center;
  gap:2px !important;
}

.logo strong{
  margin-right:-5px;
}

.logo span{
  margin-left:-5px;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.nav{
    display:flex;
    gap:35px;
}

.nav a{
    color:#d4d9e2;
    font-size:15px;
    transition:0.3s;
}

.nav a:hover{
    color:#fff;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.login-link{
    color:#d4d9e2;
    font-weight:500;
}

.btn{
    padding:14px 26px;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-primary{
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-2px);
    opacity:0.92;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.04);
    color:#fff;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.08);
}

/* HERO */

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    padding-top:170px;
    padding-bottom:120px;
    background:
    radial-gradient(circle at top left, rgba(79,140,255,0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(123,97,255,0.10), transparent 35%),
    #07111f;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size:60px 60px;

    mask-image:radial-gradient(circle at center, black 45%, transparent 100%);
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    width:900px;
    height:900px;
    top:-350px;
    right:-250px;

    background:
    radial-gradient(circle, rgba(79,140,255,0.14) 0%, transparent 70%);

    filter:blur(50px);
    pointer-events:none;
}

.hero-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(79,140,255,0.10);
    border:1px solid rgba(79,140,255,0.18);
    color:#8db5ff;
    font-size:14px;
    margin-bottom:25px;

    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:72px;
    line-height:1.02;
    margin-bottom:30px;
    font-weight:800;
    letter-spacing:-2px;
}

.hero-content p{
    color:#9ba8bc;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
    max-width:700px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:50px;
}

.trust-row{
    display:flex;
    gap:50px;
}

.trust-row div{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.trust-row strong{
    font-size:28px;
    font-weight:800;
}

.trust-row span{
    color:#8b97ab;
    font-size:15px;
}

/* PANEL */

.hero-panel{
    background:#0d1728;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:30px;
    padding:30px;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.panel-top{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.panel-top span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#2b3850;
}

.dashboard-card{
    background:#111d31;
    border-radius:22px;
    padding:25px;
}

.main-risk p{
    color:#8f9db2;
    margin-bottom:12px;
}

.main-risk h2{
    font-size:58px;
    margin-bottom:8px;
}

.main-risk span{
    color:#ffb86b;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:20px;
}

.dashboard-stats div{
    background:#111d31;
    padding:18px;
    border-radius:18px;
}

.dashboard-stats small{
    color:#8b97ab;
    display:block;
    margin-bottom:8px;
}

.dashboard-stats strong{
    font-size:24px;
}

.chart-box{
    margin-top:25px;
    background:#111d31;
    border-radius:22px;
    padding:25px;
    height:220px;
    display:flex;
    align-items:flex-end;
    gap:15px;
}

.bar{
    flex:1;
    border-radius:20px 20px 8px 8px;
    background:linear-gradient(180deg,#4f8cff,#7b61ff);
}

.bar.danger{
    background:linear-gradient(180deg,#ff7a7a,#ff4d4d);
}

.h45{height:45%;}
.h50{height:50%;}
.h60{height:60%;}
.h70{height:70%;}
.h80{height:80%;}
.h90{height:90%;}

/* SECTIONS */

section{
    padding:110px 0;
}

.section-head{
    text-align:center;
    margin-bottom:70px;
}

.section-head span{
    color:#7da9ff;
    display:block;
    margin-bottom:15px;
    font-weight:600;
}

.section-head h2{
    font-size:48px;
    margin-bottom:20px;
}

.section-head p{
    color:#8d9ab0;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* PROBLEM */

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

.problem-card{
    background:#0d1728;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.05);
}

.problem-card h3{
    margin-bottom:18px;
    font-size:24px;
}

.problem-card p{
    color:#8d9ab0;
    line-height:1.7;
}

/* FEATURES */

.features-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.feature-card{
    background:#0d1728;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.05);
}

.icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:25px;
}

.feature-card h3{
    margin-bottom:18px;
    font-size:24px;
}

.feature-card p{
    color:#8d9ab0;
    line-height:1.7;
}

/* ANALYSIS */

.analysis-box{
    background:#0d1728;
    border-radius:30px;
    padding:70px;
    border:1px solid rgba(255,255,255,0.05);
}

.analysis-content{
    text-align:center;
    margin-bottom:40px;
}

.analysis-content span{
    color:#7da9ff;
    font-weight:600;
}

.analysis-content h2{
    font-size:42px;
    margin:18px 0;
}

.analysis-content p{
    color:#8d9ab0;
}

.analysis-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:700px;
    margin:auto;
}

.analysis-form input{
    height:70px;
    border:none;
    border-radius:18px;
    padding:0 25px;
    background:#111d31;
    color:#fff;
    font-size:16px;
}

.analysis-form button{
    height:70px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.analysis-form small{
    color:#77839a;
    text-align:center;
}

.analysis-result{
    display:none;
    margin-top:45px;
    background:#111d31;
    border-radius:24px;
    padding:35px;
}

.analysis-result h3{
    margin-bottom:18px;
}

.analysis-result p{
    color:#9aa7bb;
    margin-bottom:20px;
}

.risk-meter{
    width:100%;
    height:18px;
    border-radius:100px;
    background:#1b2940;
    overflow:hidden;
}

.risk-fill{
    width:68%;
    height:100%;
    border-radius:100px;
    background:linear-gradient(90deg,#ffb347,#ff5f5f);
}

/* PRICING */

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

.price-card{
    background:#0d1728;
    border-radius:28px;
    padding:40px;
    border:1px solid rgba(255,255,255,0.05);
    position:relative;
}

.price-card.featured{
    border:1px solid rgba(79,140,255,0.4);
    transform:scale(1.03);
}

.popular{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    padding:10px 18px;
    border-radius:100px;
    font-size:13px;
    font-weight:700;
}

.price-card h3{
    font-size:30px;
    margin-bottom:10px;
}

.price-card p{
    color:#8d9ab0;
    margin-bottom:25px;
}

.price-card h2{
    font-size:48px;
    margin-bottom:25px;
}

.price-card h2 span{
    font-size:16px;
    color:#8d9ab0;
}

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

.price-card ul li{
    margin-bottom:14px;
    color:#d6dbe6;
}

/* FAQ */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#0d1728;
    border-radius:22px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.05);
}

.faq-item h3{
    margin-bottom:15px;
}

.faq-item p{
    color:#8d9ab0;
    line-height:1.7;
}

/* FOOTER */

.footer{
    border-top:1px solid rgba(255,255,255,0.05);
    padding:45px 0;
}

.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer p{
    color:#7e8ca3;
    margin-top:14px;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#9ba8bc;
}
/* CLEAN CORPORATE HERO */

.corporate-hero{
    grid-template-columns:1fr 0.85fr;
    gap:90px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.08;
    letter-spacing:-1.5px;
    max-width:720px;
}

.hero-content p{
    max-width:650px;
    font-size:18px;
}

.hero-note{
    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:8px;

    padding:14px 18px;

    background:rgba(79,140,255,0.06);
    border:1px solid rgba(79,140,255,0.12);

    border-radius:16px;

    color:#aab7ca;
    font-size:14px;
    font-weight:500;

    backdrop-filter:blur(10px);
}

.hero-note span{
    width:10px;
    height:10px;
    border-radius:50%;

    background:#4f8cff;

    box-shadow:
    0 0 10px rgba(79,140,255,0.9),
    0 0 20px rgba(79,140,255,0.5);

    animation:heroPulse 1.5s infinite;
}

@keyframes heroPulse{
    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.35);
        opacity:0.65;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

.clean-panel{
    padding:34px;
}

.panel-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:28px;
}

.panel-header small{
    color:#7f8fa8;
}

.panel-header h3{
    font-size:26px;
    margin-top:6px;
}

.status-pill{
    background:rgba(79,140,255,0.12);
    color:#8db5ff;
    border:1px solid rgba(79,140,255,0.18);
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
}

.quality-score{
    background:#111d31;
    border-radius:24px;
    padding:28px;
    margin-bottom:18px;
}

.quality-score span,
.quality-score small{
    color:#8f9db2;
}

.quality-score strong{
    display:block;
    font-size:56px;
    margin:12px 0 6px;
}

.clean-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:18px;
}

.clean-stats div{
    background:#111d31;
    border-radius:18px;
    padding:20px;
}

.clean-stats small{
    color:#8f9db2;
    display:block;
    margin-bottom:8px;
}

.clean-stats strong{
    font-size:28px;
}

.clean-list{
    background:#111d31;
    border-radius:20px;
    padding:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.clean-list div{
    color:#b9c5d8;
    font-size:15px;
}

.clean-list span{
    display:inline-block;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#4f8cff;
    margin-right:10px;
}
/* LIVE PANEL */

.live-panel{
    padding:34px;
    background:
    linear-gradient(180deg, rgba(14,25,42,0.98), rgba(8,16,30,0.98));
    border:1px solid rgba(255,255,255,0.06);
}

.live-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    margin-bottom:28px;
}

.live-top span{
    color:#7f8fa8;
    font-size:14px;
}

.live-top h3{
    margin-top:8px;
    font-size:28px;
}

.live-status{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(46,213,115,0.08);
    border:1px solid rgba(46,213,115,0.18);
    padding:10px 14px;
    border-radius:999px;
    color:#7bed9f;
    font-size:13px;
    font-weight:700;
}

.live-status span,
.live-indicator span{
    display:none !important;
}
.live-status,
.live-indicator{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    padding:10px 18px !important;

    border-radius:999px !important;

    background:
    linear-gradient(
        135deg,
        rgba(46,213,115,.14),
        rgba(46,213,115,.06)
    ) !important;

    border:
    1px solid rgba(46,213,115,.18) !important;

    color:#7bed9f !important;

    font-size:13px !important;
    font-weight:800 !important;

    box-shadow:
    0 0 24px rgba(46,213,115,.08) !important;

    letter-spacing:.2px !important;
}

.attack-box{
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:24px;
    padding:26px;
    margin-bottom:20px;
}

.attack-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.attack-info small{
    color:#8f9db2;
    display:block;
    margin-bottom:10px;
}

.attack-info strong{
    font-size:52px;
}

.attack-level{
    background:rgba(255,90,90,0.08);
    border:1px solid rgba(255,90,90,0.18);
    padding:10px 14px;
    border-radius:999px;
}

.attack-level span{
    color:#ff7d7d;
    font-size:13px;
    font-weight:700;
}

.attack-bar{
    width:100%;
    height:12px;
    background:#1b2940;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:20px;
}

.attack-fill{
    width:63%;
    height:100%;
    border-radius:999px;
    background:
    linear-gradient(90deg,#4f8cff,#7b61ff,#ff5f5f);
}

.attack-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.attack-footer p{
    color:#9aa7bb;
    font-size:14px;
    line-height:1.5;
    max-width:320px;
}

.protect-btn{
    height:48px;
    padding:0 22px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff5f5f,#ff3d3d);
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

.live-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:20px;
}

.live-card{
    position:relative;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:18px;
    padding:18px;
}

.live-card small{
    display:block;
    color:#8f9db2;
    margin-bottom:8px;
}

.live-card strong{
    font-size:28px;
}

.mini{
    position:absolute;
    top:18px;
    right:18px;
    width:10px;
    height:10px;
    border-radius:50%;
}

.mini.danger{background:#ff5f5f;}
.mini.warning{background:#ffb347;}
.mini.blue{background:#4f8cff;}
.mini.success{background:#2ed573;}

.activity-box{
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:20px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.activity-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.activity-item p{
    color:#b8c4d8;
    font-size:14px;
}

.dot{
    width:9px;
    height:9px;
    border-radius:50%;
}

.dot.red{background:#ff5f5f;}
.dot.orange{background:#ffb347;}
.dot.green{background:#2ed573;}
/* COMPACT LIVE PANEL */

.live-panel{
    max-width:430px;
    padding:24px;
}

.live-top{
    margin-bottom:18px;
}

.live-top h3{
    font-size:23px;
    line-height:1.15;
}

.live-status{
    padding:7px 11px;
    font-size:12px;
}

.attack-box{
    padding:20px;
    border-radius:20px;
    margin-bottom:14px;
}

.attack-info{
    margin-bottom:12px;
}

.attack-info strong{
    font-size:40px;
}

.attack-bar{
    height:8px;
    margin-bottom:14px;
}

.attack-footer{
    gap:12px;
}

.attack-footer p{
    font-size:13px;
    line-height:1.4;
}

.protect-btn{
    height:42px;
    padding:0 16px;
    font-size:13px;
    border-radius:12px;
    white-space:nowrap;
}

.live-grid{
    gap:10px;
    margin-bottom:14px;
}

.live-card{
    padding:14px;
    border-radius:15px;
}

.live-card small{
    font-size:12px;
}

.live-card strong{
    font-size:22px;
}

.activity-box{
    padding:15px;
    gap:10px;
    border-radius:16px;
}

.activity-item p{
    font-size:13px;
}
.protect-btn{
    position:relative;
    overflow:hidden;
    animation:pulseProtect 1.6s infinite;
}

.protect-btn::after{
    content:"";
    position:absolute;
    inset:-6px;
    border-radius:16px;
    border:1px solid rgba(255,95,95,0.45);
    animation:ringProtect 1.6s infinite;
}

@keyframes pulseProtect{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 rgba(255,95,95,0);
    }
    50%{
        transform:scale(1.04);
        box-shadow:0 0 24px rgba(255,95,95,0.35);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 rgba(255,95,95,0);
    }
}

@keyframes ringProtect{
    0%{
        opacity:0.75;
        transform:scale(1);
    }
    100%{
        opacity:0;
        transform:scale(1.25);
    }
}
.protect-btn{
    min-width:132px;
    height:42px;
    padding:0 18px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff5f5f,#ff3d3d);
    color:#fff;
    font-weight:800;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    position:relative;
    overflow:visible;
    animation:pulseProtect 1.6s infinite;
}

.protect-btn::after{
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:18px;
    border:1px solid rgba(255,95,95,0.45);
    animation:ringProtect 1.6s infinite;
    pointer-events:none;
}
/* HERO TITLE ANIMATION */

.hero-title{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.hero-title span{
    display:block;

    opacity:0;
    transform:translateY(35px);

    animation:heroReveal 0.8s forwards;
}

.hero-title span:nth-child(1){
    animation-delay:0.15s;
}

.hero-title span:nth-child(2){
    animation-delay:0.35s;
}

.hero-title span:nth-child(3){
    animation-delay:0.55s;
}

@keyframes heroReveal{

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* PROFESSIONAL SECTION UPGRADE */

.pro-card{
    position:relative;
    overflow:hidden;
    transition:0.3s ease;
}

.pro-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(79,140,255,0.08), transparent 45%);
    opacity:0;
    transition:0.3s ease;
}

.pro-card:hover{
    transform:translateY(-6px);
    border-color:rgba(79,140,255,0.18);
}

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

.card-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:rgba(79,140,255,0.10);
    border:1px solid rgba(79,140,255,0.18);
    color:#8db5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:800;
    margin-bottom:24px;
}

.problem-card h3,
.feature-card h3{
    position:relative;
    z-index:2;
}

.problem-card p,
.feature-card p{
    position:relative;
    z-index:2;
}

.analysis-trust{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-top:18px;
    flex-wrap:wrap;
}

.analysis-trust span{
    color:#9fb0c8;
    font-size:14px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.06);
    padding:10px 14px;
    border-radius:999px;
}

.price-card ul li{
    position:relative;
    padding-left:28px;
}

.price-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#7bed9f;
    font-weight:800;
}

.price-card{
    transition:0.3s ease;
}

.price-card:hover{
    transform:translateY(-6px);
    border-color:rgba(79,140,255,0.18);
}

.price-card.featured:hover{
    transform:scale(1.03) translateY(-6px);
}

.faq-item{
    transition:0.3s ease;
}

.faq-item:hover{
    border-color:rgba(79,140,255,0.16);
    transform:translateY(-3px);
}
/* COMPACT PREMIUM ANALYSIS */

.premium-analysis{
    display:grid;
    grid-template-columns:0.95fr 1fr;
    gap:28px;
    align-items:center;
    padding:34px;
    max-width:1100px;
    margin:auto;
}

.analysis-left{
    text-align:left;
}

.analysis-badge{
    display:inline-flex;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(79,140,255,0.10);
    border:1px solid rgba(79,140,255,0.18);
    color:#8db5ff;
    font-weight:700;
    font-size:13px;
    margin-bottom:16px;
}

.analysis-left h2{
    font-size:34px;
    line-height:1.12;
    letter-spacing:-0.8px;
    margin-bottom:14px;
}

.analysis-left p{
    color:#9ba8bc;
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
}

.analysis-points{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
}

.analysis-points div{
    position:relative;

    display:flex;
    align-items:center;
    gap:14px;

    min-height:58px;

    padding:0 18px;

    border-radius:16px;

    background:
    linear-gradient(180deg,
    rgba(17,29,49,0.96),
    rgba(11,20,36,0.96));

    border:1px solid rgba(255,255,255,0.06);

    color:#d6e0f2;

    font-size:14px;
    font-weight:500;

    overflow:hidden;

    transition:0.3s ease;
}
.analysis-points div:hover{
    transform:translateY(-2px);
    border-color:rgba(79,140,255,0.16);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 0 0 1px rgba(79,140,255,0.04);
}

.analysis-points span{
    width:28px;
    height:28px;

    border-radius:10px;

    background:
    linear-gradient(135deg,#2ed573,#1dd1a1);

    color:#fff;

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

    font-size:13px;
    font-weight:800;

    flex-shrink:0;

    box-shadow:
    0 6px 18px rgba(46,213,115,0.30);
}
.analysis-points div::after{
    content:"";

    position:absolute;

    top:0;
    right:0;

    width:90px;
    height:100%;

    background:
    linear-gradient(90deg,
    transparent,
    rgba(79,140,255,0.04));

    pointer-events:none;
}

.analysis-right{
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:22px;
}

.analysis-form label{
    color:#fff;
    font-weight:700;
    margin-bottom:8px;
}

.analysis-form input{
    height:56px;
}

.analysis-form button{
    height:56px;
    font-size:16px;
}

.analysis-form small{
    line-height:1.45;
}
.danger-text{
    color:#ff5f5f;
    font-weight:700;
}
.hero-content{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.risk-tag{
    position:absolute;
    top:18px;
    right:18px;

    padding:6px 10px;

    border-radius:999px;

    background:rgba(255,95,95,0.08);

    border:1px solid rgba(255,95,95,0.16);

    color:#ff7d7d;

    font-size:11px;
    font-weight:700;
}
/* PREMIUM SAAS PRICING */

.billing-toggle{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:40px 0 50px;
}

.billing-btn{
    height:52px;
    padding:0 24px;
    border-radius:14px;
    background:#101b2d;
    border:1px solid rgba(255,255,255,0.06);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.billing-btn span{
    color:#7c9cff;
    margin-left:6px;
}

.billing-btn.active{
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
}

.price-card{
    position:relative;
    overflow:hidden;
    min-height:760px;
    backdrop-filter:blur(14px);
    display:flex;
    flex-direction:column;
    transition:0.35s ease;
}

.price-card:hover{
    transform:translateY(-8px);
    border-color:rgba(79,140,255,0.18);
    box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    0 0 0 1px rgba(79,140,255,0.05);
}

.card-glow{
    position:absolute;
    top:-140px;
    right:-100px;
    width:260px;
    height:260px;
    background:radial-gradient(circle, rgba(79,140,255,0.18), transparent 70%);
    pointer-events:none;
}

.price-head{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin-bottom:20px;
}

.price-head h2{
    font-size:54px;
    letter-spacing:-2px;
    line-height:1;
}

.price-head span{
    color:#7f8da3;
    margin-bottom:8px;
}

.plan-highlight{
    min-height:54px;
    display:flex;
    align-items:center;
    padding:0 18px;
    margin-bottom:26px;
    border-radius:14px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    color:#cfe0ff;
    font-weight:600;
}

.pro-highlight{
    background:rgba(255,95,95,0.08);
    border-color:rgba(255,95,95,0.18);
    color:#ff8e8e;
}

.pricing-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:auto;
}

.price-btn{
    width:100%;
}

.price-card ul li{
    position:relative;
    padding-left:26px;
}

.price-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#4f8cff;
    font-weight:800;
}
/* PRICING FIX */

.pricing-section .price-card{
    padding:40px 34px 34px;
    min-height:700px;
}

.pricing-section .plan-top{
    margin-bottom:18px;
}

.pricing-section .plan-label{
    display:block;
    margin-bottom:8px;
}

.pricing-section .plan-top small{
    display:block;
    color:#8d9ab0;
    font-size:14px;
    line-height:1.4;
}

.pricing-section .price-head{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin-bottom:24px;
}

.pricing-section .price-head h2{
    font-size:48px;
    line-height:1;
    margin:0;
}

.pricing-section .price-head span{
    font-size:15px;
    color:#8d9ab0;
    margin-bottom:6px;
}

.pricing-section .plan-desc{
    min-height:88px;
    margin-bottom:22px;
}

.pricing-section .popular{
    top:-18px;
    z-index:5;
    white-space:nowrap;
    min-width:max-content;
    text-align:center;
}

.pricing-section .price-card.featured{
    padding-top:48px;
}

.pricing-section .plan-highlight{
    min-height:50px;
    margin-bottom:22px;
}

.pricing-section .price-card ul{
    margin-bottom:28px;
}

.pricing-section .pricing-actions{
    margin-top:auto;
}
/* FINAL PRICING RESET */

.pricing-section .pricing-grid{
    align-items:stretch;
}

.pricing-section .price-card{
    padding:38px 32px 30px !important;
    min-height:680px !important;
    display:flex !important;
    flex-direction:column !important;
}

.pricing-section .price-card.featured{
    padding-top:52px !important;
}

.pricing-section .plan-top{
    margin:0 0 18px 0 !important;
}

.pricing-section .plan-label{
    display:block !important;
    width:max-content;
    margin:0 0 8px 0 !important;
    padding:0 !important;
    background:none !important;
    border:none !important;
    color:#fff !important;
    font-size:18px !important;
    font-weight:800 !important;
}

.pricing-section .plan-top small{
    display:block !important;
    font-size:14px !important;
    color:#8d9ab0 !important;
    line-height:1.45 !important;
}

.pricing-section .price-head{
    display:flex !important;
    align-items:flex-end !important;
    gap:8px !important;
    margin:0 0 22px 0 !important;
}

.pricing-section .price-head h2{
    margin:0 !important;
    padding:0 !important;
    font-size:46px !important;
    line-height:1 !important;
    letter-spacing:-1.5px !important;
}

.pricing-section .price-head span{
    margin:0 0 6px 0 !important;
    color:#8d9ab0 !important;
    font-size:15px !important;
}

.pricing-section .plan-desc{
    min-height:76px !important;
    margin:0 0 22px 0 !important;
    color:#9ba8bc !important;
    line-height:1.45 !important;
}

.pricing-section .plan-highlight{
    min-height:48px !important;
    padding:0 16px !important;
    margin:0 0 22px 0 !important;
    font-size:14px !important;
}

.pricing-section .price-card ul{
    margin:0 0 28px 0 !important;
    padding:0 !important;
    flex:1 !important;
}

.pricing-section .price-card ul li{
    margin-bottom:13px !important;
    padding-left:26px !important;
    font-size:15px !important;
    line-height:1.35 !important;
}

.pricing-section .pricing-actions{
    margin-top:auto !important;
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
}

.pricing-section .price-btn{
    width:100% !important;
    height:52px !important;
}

.pricing-section .popular{
    position:absolute !important;
    top:-16px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    z-index:10 !important;

    width:auto !important;
    min-width:190px !important;
    max-width:240px !important;

    padding:9px 16px !important;
    border-radius:999px !important;

    background:linear-gradient(135deg,#4f8cff,#7b61ff) !important;

    color:#fff !important;
    font-size:12px !important;
    font-weight:800 !important;
    line-height:1.1 !important;
    text-align:center !important;
    white-space:normal !important;
}
/* =========================
   PRICING SECTION CLEAN
========================= */

.pricing-section{
    position:relative;
    overflow:visible;
}

.pricing-section .section-head{
    margin-bottom:34px;
}

.billing-toggle{
    width:max-content;
    margin:0 auto 56px;
    padding:6px;
    display:flex;
    gap:6px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:16px;
}

.billing-btn{
    height:44px;
    padding:0 20px;
    border:none;
    border-radius:12px;
    background:transparent;
    color:#aebbd0;
    font-weight:800;
    cursor:pointer;
    transition:0.25s ease;
}

.billing-btn span{
    color:#7da9ff;
    margin-left:6px;
}

.billing-btn.active{
    color:#fff;
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    box-shadow:0 10px 30px rgba(79,140,255,0.22);
}

.billing-btn.active span{
    color:#fff;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
    align-items:stretch;
    overflow:visible;
}

.price-card{
    position:relative;
    overflow:visible;
    display:flex;
    flex-direction:column;
    min-height:720px;
    padding:38px 30px 30px;
    border-radius:30px;
    background:
        linear-gradient(180deg, rgba(17,29,49,0.96), rgba(8,15,28,0.98));
    border:1px solid rgba(255,255,255,0.07);
    box-shadow:0 18px 60px rgba(0,0,0,0.20);
    transition:0.3s ease;
}

.price-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    background:linear-gradient(135deg, rgba(79,140,255,0.08), transparent 45%);
    opacity:0;
    pointer-events:none;
    transition:0.3s ease;
}

.price-card:hover{
    transform:translateY(-6px);
    border-color:rgba(79,140,255,0.24);
    box-shadow:0 24px 75px rgba(0,0,0,0.32);
}

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

.price-card.featured{
    border-color:rgba(79,140,255,0.45);
    box-shadow:
        0 0 0 1px rgba(79,140,255,0.12),
        0 24px 85px rgba(79,140,255,0.12);
}

.card-glow{
    position:absolute;
    top:-120px;
    right:-110px;
    width:260px;
    height:260px;
    background:radial-gradient(circle, rgba(79,140,255,0.18), transparent 70%);
    pointer-events:none;
}

.popular{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    z-index:20;
    padding:10px 20px;
    min-width:205px;
    text-align:center;
    border-radius:999px;
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
    color:#fff;
    font-size:12px;
    font-weight:900;
    letter-spacing:0.5px;
    box-shadow:0 14px 34px rgba(79,140,255,0.28);
    white-space:nowrap;
}

.plan-top,
.price-head,
.plan-desc,
.plan-highlight,
.price-card ul,
.pricing-actions{
    position:relative;
    z-index:2;
}

.plan-top{
    margin-bottom:18px;
}

.plan-label{
    display:block;
    color:#fff;
    font-size:22px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:8px;
}

.plan-top small{
    display:block;
    color:#8d9ab0;
    font-size:14px;
    line-height:1.45;
}

.price-head{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin:0 0 22px;
}

.price-head h2{
    margin:0;
    padding:0;
    font-size:52px;
    line-height:0.95;
    letter-spacing:-2px;
    color:#fff;
}

.price-head span{
    color:#8d9ab0;
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}

.plan-desc{
    min-height:86px;
    margin:0 0 22px;
    color:#9ba8bc;
    line-height:1.55;
    font-size:15px;
}

.plan-highlight{
    min-height:52px;
    margin:0 0 24px;
    padding:0 16px;
    display:flex;
    align-items:center;
    border-radius:16px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.07);
    color:#dce8ff;
    font-size:14px;
    font-weight:800;
}

.pro-highlight{
    background:rgba(255,95,95,0.08);
    border-color:rgba(255,95,95,0.18);
    color:#ff9a9a;
}

.price-card ul{
    list-style:none;
    margin:0 0 28px;
    padding:0;
    flex:1;
}

.price-card li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#d7e0f1;
    font-size:15px;
    line-height:1.4;
}

.price-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#4f8cff;
    font-weight:900;
}

.pricing-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:auto;
}

.price-btn{
    width:100%;
    min-height:52px;
}

/* yıllık seçilince JS ile değişecek fiyatların görsel geçişi */
.price-head h2{
    transition:0.25s ease;
}

/* MOBILE */
@media(max-width:1100px){
    .pricing-grid{
        grid-template-columns:1fr;
        max-width:520px;
        margin:0 auto;
    }

    .price-card{
        min-height:auto;
    }
}

@media(max-width:768px){
    .billing-toggle{
        width:100%;
        max-width:360px;
    }

    .billing-btn{
        flex:1;
        padding:0 12px;
        font-size:13px;
    }

    .price-card{
        padding:34px 22px 24px;
        border-radius:24px;
    }

    .popular{
        top:-16px;
        min-width:180px;
        font-size:11px;
        padding:9px 14px;
    }

    .price-head h2{
        font-size:44px;
    }

    .plan-label{
        font-size:20px;
    }
}
/* COMPACT DESKTOP PRICING */

@media(min-width:1101px){

    .pricing-section{
        padding-top:80px;
        padding-bottom:80px;
    }

    .pricing-section .section-head{
        margin-bottom:26px;
    }

    .pricing-section .section-head h2{
        font-size:42px;
        margin-bottom:14px;
    }

    .pricing-section .section-head p{
        font-size:14px;
        line-height:1.6;
    }

    .billing-toggle{
        margin:26px auto 40px;
        transform:scale(0.92);
    }

    .pricing-grid{
        max-width:1050px;
        margin:0 auto;
        gap:22px;
    }

    .price-card{
        min-height:630px;
        padding:30px 24px 24px;
        border-radius:24px;
    }

    .price-card.featured{
        min-height:650px;
    }

    .plan-label{
        font-size:18px;
    }

    .plan-top{
        margin-bottom:14px;
    }

    .plan-top small{
        font-size:12px;
    }

    .price-head{
        margin-bottom:16px;
    }

    .price-head h2{
        font-size:42px;
    }

    .price-head span{
        font-size:13px;
        margin-bottom:4px;
    }

    .plan-desc{
        min-height:64px;
        font-size:13px;
        line-height:1.45;
        margin-bottom:16px;
    }

    .plan-highlight{
        min-height:44px;
        padding:0 14px;
        margin-bottom:18px;
        font-size:12px;
        border-radius:13px;
    }

    .price-card li{
        font-size:13px;
        margin-bottom:10px;
        line-height:1.35;
    }

    .pricing-actions{
        gap:10px;
    }

    .price-btn{
        height:46px;
        min-height:46px;
        font-size:13px;
        border-radius:12px;
    }

    .popular{
        top:-14px;
        font-size:10px;
        padding:8px 14px;
    }
}
.logo{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:28px;
    font-weight:800;
    color:#fff;
}

.logo img{
    width:110px;
    height:110px;
    object-fit:contain;
    margin-right:-18px;
}
.hero-note{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 22px;
    border-radius:18px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(96,132,255,0.12);
    backdrop-filter:blur(12px);
}

.hero-note .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#4f8cff;
    box-shadow:0 0 14px #4f8cff;
    animation:pulseDot 2s infinite;
}

@keyframes pulseDot{
    0%{opacity:0.5; transform:scale(1);}
    50%{opacity:1; transform:scale(1.4);}
    100%{opacity:0.5; transform:scale(1);}
}
/* ANALYSIS PREMIUM FINAL TOUCH */

.risk-text{
    color:#ff5b6e;
    font-weight:800;
    text-shadow:0 0 18px rgba(255,91,110,0.35);
}

.analysis-feature{
    background:
    linear-gradient(90deg,
    rgba(79,140,255,0.08),
    rgba(255,255,255,0.02)) !important;
}

.analysis-feature:hover{
    transform:translateX(4px);
    border-color:rgba(79,140,255,0.22);
}

.analysis-card{
    position:relative;
    overflow:hidden;
}

.analysis-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(79,140,255,0.12),
    transparent 42%);
    pointer-events:none;
}

.analysis-card > *{
    position:relative;
    z-index:2;
}

.analysis-live{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
    color:#8fa7cc;
    font-size:13px;
    font-weight:600;
}

.live-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#35ff93;
    box-shadow:0 0 12px #35ff93;
    animation:pulseLive 2s infinite;
}

@keyframes pulseLive{
    0%{opacity:.45; transform:scale(1);}
    50%{opacity:1; transform:scale(1.35);}
    100%{opacity:.45; transform:scale(1);}
}
/* FOOTER LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:2px;
}

/* MASAÜSTÜ */

@media(min-width:769px){

    .footer-logo{
        justify-content:flex-start;
        text-align:left;
    }

    .footer-logo span{
        position:relative;
        left:-12px;
    }

}

/* MOBİL */

@media(max-width:768px){

    .footer-logo{
        justify-content:center;
        width:100%;
        text-align:center;
    }

    .footer-logo span{
        position:relative;
        left:-35px;
    }

    .footer-logo img{
        width:82px;
        height:82px;
    }

}
/* ANALYSIS RESULT PAGE */

.result-page{
    min-height:100vh;
    padding:70px 0;
    background:
    radial-gradient(circle at top right, rgba(79,140,255,0.12), transparent 35%),
    #07111f;
}

.result-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:60px;
}

.result-header .logo img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-right:-18px;
}

.result-badge{
    padding:10px 16px;
    border-radius:999px;
    background:rgba(79,140,255,0.10);
    border:1px solid rgba(79,140,255,0.18);
    color:#8db5ff;
    font-weight:800;
    font-size:13px;
}

.result-hero{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:40px;
    align-items:center;
    margin-bottom:35px;
}

.result-hero h1{
    font-size:52px;
    line-height:1.08;
    margin:18px 0;
}

.result-hero p{
    color:#9ba8bc;
    font-size:17px;
    line-height:1.7;
    max-width:760px;
}

.risk-result-card{
    background:#0d1728;
    border:1px solid rgba(255,255,255,0.07);
    border-radius:28px;
    padding:30px;
}

.risk-result-card small{
    color:#8f9db2;
}

.risk-result-card strong{
    display:block;
    font-size:58px;
    margin:12px 0;
}

.risk-result-card span{
    font-weight:800;
}

.risk-high{color:#ff5f5f;}
.risk-mid{color:#ffb347;}
.risk-low{color:#7bed9f;}

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

.result-card{
    background:#0d1728;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:22px;
    padding:24px;
}

.result-card span{
    color:#8f9db2;
    font-size:13px;
}

.result-card strong{
    display:block;
    font-size:32px;
    margin:10px 0;
}

.result-card p{
    color:#8795aa;
    font-size:13px;
    line-height:1.5;
}

.warning-box{
    background:#0d1728;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:28px;
    padding:34px;
    margin-bottom:30px;
}

.warning-box h2{
    margin-bottom:24px;
}

.warning-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.warning-item{
    display:flex;
    gap:14px;
    background:rgba(255,255,255,0.035);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:18px;
    padding:18px;
}

.warning-item > span{
    width:30px;
    height:30px;
    border-radius:10px;
    background:rgba(255,95,95,0.12);
    color:#ff6b6b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex-shrink:0;
}

.warning-item h3{
    font-size:16px;
    margin-bottom:8px;
}

.warning-item p{
    color:#9ba8bc;
    font-size:14px;
    line-height:1.5;
}

.result-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    background:linear-gradient(135deg, rgba(79,140,255,0.12), rgba(123,97,255,0.10));
    border:1px solid rgba(79,140,255,0.18);
    border-radius:28px;
    padding:34px;
}

.result-cta p{
    color:#9ba8bc;
    margin-top:10px;
    max-width:700px;
    line-height:1.6;
}

@media(max-width:900px){
    .result-header{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .result-hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .result-hero h1{
        font-size:34px;
    }

    .result-grid,
    .warning-list{
        grid-template-columns:1fr;
    }

    .result-cta{
        flex-direction:column;
        text-align:center;
    }
}
/* LOADING PAGE */

.loading-page,
.result-dashboard{
  min-height:100vh;
  padding:70px 0;
  background:
  radial-gradient(circle at top right, rgba(79,140,255,.14), transparent 35%),
  #07111f;
}

.loading-card{
  max-width:620px;
  margin:80px auto;
  padding:46px;
  border-radius:30px;
  background:#0d1728;
  border:1px solid rgba(255,255,255,.07);
  text-align:center;
}

.loading-logo{
  justify-content:center;
  margin-bottom:26px;
}

.loading-logo img{
  width:92px;
  height:92px;
  object-fit:contain;
  margin-right:-16px;
}

.scan-ring{
  width:92px;
  height:92px;
  margin:0 auto 26px;
  border-radius:50%;
  border:3px solid rgba(79,140,255,.18);
  border-top-color:#4f8cff;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

.loading-card h1{
  font-size:34px;
  margin-bottom:14px;
}

.loading-card p{
  color:#9ba8bc;
  margin-bottom:24px;
}

.loading-bar{
  height:14px;
  background:#111d31;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:14px;
}

.loading-bar span{
  display:block;
  width:0;
  height:100%;
  background:linear-gradient(90deg,#4f8cff,#7b61ff,#ff5f5f);
  border-radius:999px;
  transition:.4s;
}

/* RESULT DASHBOARD */

.result-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
}

.result-header .logo img{
  width:90px;
  height:90px;
  object-fit:contain;
  margin-right:-16px;
}

.dashboard-title{
  text-align:center;
  margin-bottom:36px;
}

.dashboard-title span{
  color:#7da9ff;
  font-weight:800;
}

.dashboard-title h1{
  font-size:48px;
  margin:14px 0;
}

.dashboard-title p{
  color:#9ba8bc;
}

.dashboard-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:18px;
  margin-bottom:24px;
}

.dash-card{
  background:#0d1728;
  border:1px solid rgba(255,255,255,.07);
  border-radius:24px;
  padding:24px;
}

.dash-card small{
  color:#8f9db2;
}

.dash-card strong{
  display:block;
  font-size:36px;
  margin:12px 0;
}

.dash-card p{
  color:#8d9ab0;
  font-size:13px;
  line-height:1.5;
}

.risk-main strong{
  font-size:52px;
}

.risk-red{
  color:#ff5f5f !important;
  font-weight:900;
}

.panel-actions{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:24px 0;
}

.panel-actions button,
.ip-row button{
  border:none;
  border-radius:14px;
  height:48px;
  background:linear-gradient(135deg,#4f8cff,#7b61ff);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}

.ip-panel,
.warning-box,
.result-cta{
  background:#0d1728;
  border:1px solid rgba(255,255,255,.07);
  border-radius:28px;
  padding:30px;
  margin-bottom:24px;
}

.ip-panel h2,
.warning-box h2{
  margin-bottom:20px;
}

.ip-row{
  display:grid;
  grid-template-columns:1fr .6fr 1.2fr .7fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.035);
  margin-bottom:10px;
  color:#dbe5f5;
}

.ip-row.head{
  background:transparent;
  color:#8d9ab0;
  font-weight:800;
}

.warning-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.warning-item{
  display:flex;
  gap:12px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.035);
  color:#dbe5f5;
}

.warning-item span{
  width:28px;
  height:28px;
  border-radius:10px;
  background:rgba(255,95,95,.12);
  color:#ff5f5f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.result-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  background:linear-gradient(135deg, rgba(79,140,255,.12), rgba(123,97,255,.1));
}

.result-cta p{
  color:#9ba8bc;
  margin-top:8px;
}

@media(max-width:900px){
  .result-header,
  .result-cta{
    flex-direction:column;
    text-align:center;
  }

  .dashboard-title h1{
    font-size:32px;
  }

  .dashboard-grid,
  .panel-actions,
  .warning-list{
    grid-template-columns:1fr;
  }

  .ip-row{
    grid-template-columns:1fr;
  }
}
/* PREMIUM RESULT DASHBOARD UPGRADE */

.result-dashboard{
    min-height:100vh;
    padding:34px 0 70px;
    background:
    radial-gradient(circle at top right, rgba(79,140,255,.14), transparent 35%),
    #07111f;
}

.result-topbar{
    height:84px;
    padding:0 28px;
    margin-bottom:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(8,15,27,0.78);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    backdrop-filter:blur(18px);
}

.result-logo img{
    width:86px;
    height:86px;
    object-fit:contain;
    margin-right:-14px;
}

.compact-result-title{
    max-width:760px;
    margin:0 auto 28px;
    text-align:center;
}

.compact-result-title span{
    color:#7da9ff;
    font-weight:800;
}

.compact-result-title h1{
    font-size:42px;
    line-height:1.12;
    margin:12px 0;
}

.compact-result-title p{
    color:#9ba8bc;
    line-height:1.6;
}

.executive-summary{
    display:grid;
    grid-template-columns:1.1fr 2fr;
    gap:18px;
    margin-bottom:22px;
}

.summary-main,
.summary-mini div{
    background:
    linear-gradient(180deg, rgba(17,29,49,0.96), rgba(8,15,28,0.98));
    border:1px solid rgba(255,255,255,.07);
    border-radius:24px;
    padding:24px;
}

.summary-main small,
.summary-mini span{
    color:#8fa7cc;
    font-size:14px;
}

.summary-main strong{
    display:block;
    font-size:62px;
    line-height:1;
    margin:16px 0;
}

.summary-main p{
    color:#ffb347;
    font-weight:800;
    margin-top:10px;
}

.summary-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.summary-mini strong{
    display:block;
    font-size:38px;
    margin-top:14px;
}

.panel-actions{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin:22px 0;
}

.panel-actions button,
.ip-row button{
    border:none;
    border-radius:14px;
    min-height:48px;
    background:
    linear-gradient(135deg,#4f8cff,#7b61ff);
    color:#fff;
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
}

.panel-actions button:hover,
.ip-row button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(79,140,255,.25);
}

.ip-panel,
.warning-box,
.result-cta{
    background:#0d1728;
    border:1px solid rgba(255,255,255,.07);
    border-radius:28px;
    padding:30px;
    margin-bottom:24px;
}

.panel-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
}

.panel-head h2{
    margin-bottom:8px;
}

.panel-head p{
    color:#8d9ab0;
}

.panel-head span{
    padding:8px 12px;
    border-radius:999px;
    background:rgba(79,140,255,.10);
    border:1px solid rgba(79,140,255,.18);
    color:#8db5ff;
    font-size:12px;
    font-weight:900;
}

.ip-table{
    overflow-x:auto;
}

.ip-row{
    display:grid;
    grid-template-columns:1fr .8fr 1.1fr .6fr 1.2fr .7fr;
    gap:14px;
    align-items:center;
    padding:14px;
    border-radius:14px;
    background:rgba(255,255,255,.035);
    margin-bottom:10px;
    color:#dbe5f5;
    min-width:900px;
}

.ip-row.head{
    background:transparent;
    color:#8d9ab0;
    font-weight:800;
}

.risk-red{
    color:#ff5f5f !important;
    font-weight:900;
}

.warning-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.warning-item{
    display:flex;
    gap:12px;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.035);
    color:#dbe5f5;
}

.warning-item span{
    width:28px;
    height:28px;
    border-radius:10px;
    background:rgba(255,95,95,.12);
    color:#ff5f5f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    flex-shrink:0;
}

.result-cta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    background:
    linear-gradient(135deg, rgba(79,140,255,.12), rgba(123,97,255,.1));
}

.result-cta p{
    color:#9ba8bc;
    margin-top:8px;
}

/* UPGRADE MODAL */

.upgrade-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(0,0,0,.68);
    backdrop-filter:blur(10px);
    z-index:99999;
}

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

.upgrade-box{
    position:relative;
    max-width:520px;
    width:100%;
    padding:34px;
    border-radius:28px;
    background:
    linear-gradient(180deg, rgba(17,29,49,0.98), rgba(8,15,28,0.98));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 100px rgba(0,0,0,.45);
}

.modal-close{
    position:absolute;
    top:18px;
    right:18px;
    width:38px;
    height:38px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.modal-badge{
    display:inline-flex;
    margin-bottom:18px;
    padding:9px 13px;
    border-radius:999px;
    background:rgba(255,95,95,.10);
    border:1px solid rgba(255,95,95,.20);
    color:#ff8e8e;
    font-size:12px;
    font-weight:900;
}

.upgrade-box h2{
    font-size:28px;
    line-height:1.18;
    margin-bottom:14px;
}

.upgrade-box p{
    color:#9ba8bc;
    line-height:1.6;
    margin-bottom:24px;
}

.modal-actions{
    display:flex;
    gap:12px;
}

/* MOBILE RESULT FIX */

@media(max-width:900px){

    .result-dashboard{
        padding-top:16px;
    }

    .result-topbar{
        height:auto;
        padding:16px;
        margin-bottom:22px;
        border-radius:20px;
        flex-direction:column;
        gap:14px;
    }

    .result-topbar .btn{
        width:100%;
    }

    .compact-result-title{
        text-align:left;
        margin-bottom:20px;
    }

    .compact-result-title h1{
        font-size:30px;
    }

    .executive-summary{
        grid-template-columns:1fr;
    }

    .summary-main{
        padding:22px;
    }

    .summary-main strong{
        font-size:48px;
    }

    .summary-mini{
        grid-template-columns:1fr;
        gap:12px;
    }

    .summary-mini div{
        padding:20px;
    }

    .panel-actions{
        grid-template-columns:1fr;
    }

    .panel-head{
        flex-direction:column;
    }

    .warning-list{
        grid-template-columns:1fr;
    }

    .result-cta{
        flex-direction:column;
        text-align:center;
    }

    .modal-actions{
        flex-direction:column;
    }
}
/* PREMIUM RESULT CARDS */

.executive-summary{
    display:grid;
    grid-template-columns:1.1fr 2fr;
    gap:18px;
    margin-bottom:24px;
}

.summary-main,
.summary-mini div{
    background:
    linear-gradient(180deg, rgba(17,29,49,.98), rgba(8,15,28,.98));
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:26px;
    box-shadow:0 18px 55px rgba(0,0,0,.24);
}

.summary-main{
    position:relative;
    overflow:hidden;
}

.summary-main::after{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:radial-gradient(circle, rgba(255,95,95,.14), transparent 70%);
}

.summary-main small,
.summary-mini span{
    color:#9fb4d8;
    font-size:14px;
    font-weight:700;
}

.summary-main strong{
    display:block;
    font-size:64px;
    line-height:1;
    margin:16px 0;
    letter-spacing:-2px;
}

.summary-main p{
    color:#ffb347;
    font-weight:900;
    margin-top:12px;
}

.summary-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.summary-mini div{
    min-height:160px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.summary-mini strong{
    display:block;
    font-size:40px;
    margin-top:14px;
    letter-spacing:-1px;
}

/* PREMIUM ACTION BUTTONS */

.pro-actions{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:24px 0;
}

.pro-actions button,
.ip-row button{
    min-height:54px;
    border:none;
    border-radius:16px;
    background:
    linear-gradient(135deg, rgba(79,140,255,1), rgba(123,97,255,1));
    color:#fff;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 32px rgba(79,140,255,.18);
    transition:.25s ease;
}

.pro-actions button:hover,
.ip-row button:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 45px rgba(79,140,255,.28);
}

/* PREMIUM IP TABLE */

.ip-panel{
    background:
    linear-gradient(180deg, rgba(17,29,49,.96), rgba(8,15,28,.98));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 70px rgba(0,0,0,.22);
}

.ip-row{
    display:grid;
    grid-template-columns:1fr .8fr 1.15fr .6fr 1.2fr .7fr;
    gap:14px;
    align-items:center;
    padding:15px 16px;
    border-radius:16px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.045);
    margin-bottom:10px;
    color:#dbe5f5;
    min-width:920px;
}

.ip-row.head{
    background:rgba(79,140,255,.055);
    color:#9fb4d8;
    font-weight:900;
}

.risk-red{
    color:#ff6b6b !important;
    font-weight:900;
}

/* MOBILE QUALITY FIX */

@media(max-width:900px){

    .executive-summary{
        grid-template-columns:1fr;
    }

    .summary-main{
        padding:24px;
        border-radius:24px;
    }

    .summary-main strong{
        font-size:52px;
    }

    .summary-mini{
        grid-template-columns:1fr;
        gap:12px;
    }

    .summary-mini div{
        min-height:118px;
        padding:22px;
        border-radius:22px;
    }

    .summary-mini strong{
        font-size:36px;
    }

    .pro-actions{
        grid-template-columns:1fr;
    }

    .pro-actions button{
        min-height:52px;
    }

    .ip-table{
        overflow-x:auto;
        padding-bottom:6px;
    }
}
/* EXECUTIVE SUMMARY PREMIUM V2 */

.executive-summary{
    display:grid;
    grid-template-columns:1.35fr 2.4fr;
    gap:20px;
    margin-bottom:28px;
}

.summary-main,
.summary-mini div{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(180deg, rgba(17,29,49,.98), rgba(8,15,28,.98));
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    box-shadow:
    0 22px 70px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.summary-main{
    padding:30px;
}

.summary-main::before{
    content:"Aktif Ön Analiz";
    position:absolute;
    top:24px;
    right:24px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(46,213,115,.10);
    border:1px solid rgba(46,213,115,.20);
    color:#7bed9f;
    font-size:12px;
    font-weight:900;
}

.summary-main::after{
    content:"";
    position:absolute;
    top:-120px;
    right:-110px;
    width:280px;
    height:280px;
    background:radial-gradient(circle, rgba(255,95,95,.18), transparent 68%);
    pointer-events:none;
}

.summary-main small,
.summary-mini span{
    position:relative;
    z-index:2;
    color:#9fb4d8;
    font-size:14px;
    font-weight:800;
}

.summary-main strong{
    position:relative;
    z-index:2;
    display:block;
    font-size:68px;
    line-height:.95;
    letter-spacing:-3px;
    margin:18px 0 16px;
}

.summary-main .risk-meter{
    position:relative;
    z-index:2;
    height:14px;
    background:#1b2940;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:14px;
}

.summary-main .risk-fill{
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg,#ffb347,#ff5f5f);
    box-shadow:0 0 22px rgba(255,95,95,.35);
}

.summary-main p{
    position:relative;
    z-index:2;
    color:#ffb347;
    font-weight:900;
    font-size:15px;
}

.summary-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.summary-mini div{
    min-height:210px;
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.summary-mini div::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    top:-90px;
    right:-80px;
    background:radial-gradient(circle, rgba(79,140,255,.16), transparent 70%);
    pointer-events:none;
}

.summary-mini div:nth-child(1)::before{
    content:"Riskli trafik";
}

.summary-mini div:nth-child(2)::before{
    content:"Tahmini kayıp";
}

.summary-mini div:nth-child(3)::before{
    content:"Tekrarlı kaynak";
}

.summary-mini div::before{
    position:absolute;
    top:24px;
    right:22px;
    padding:7px 10px;
    border-radius:999px;
    background:rgba(79,140,255,.08);
    border:1px solid rgba(79,140,255,.14);
    color:#8db5ff;
    font-size:11px;
    font-weight:900;
}

.summary-mini strong{
    position:relative;
    z-index:2;
    display:block;
    font-size:46px;
    line-height:1;
    margin-top:18px;
    letter-spacing:-2px;
}

.summary-mini div:nth-child(1) strong{
    color:#fff;
    text-shadow:0 0 18px rgba(255,95,95,.18);
}

.summary-mini div:nth-child(2) strong{
    color:#fff;
    text-shadow:0 0 18px rgba(255,179,71,.18);
}

.summary-mini div:nth-child(3) strong{
    color:#fff;
    text-shadow:0 0 18px rgba(79,140,255,.20);
}

@media(max-width:900px){

    .executive-summary{
        grid-template-columns:1fr;
        gap:14px;
    }

    .summary-main{
        padding:24px;
        border-radius:24px;
    }

    .summary-main::before{
        position:static;
        display:inline-flex;
        margin-bottom:14px;
    }

    .summary-main strong{
        font-size:56px;
        letter-spacing:-2px;
    }

    .summary-mini{
        grid-template-columns:1fr;
        gap:12px;
    }

    .summary-mini div{
        min-height:132px;
        padding:22px;
        border-radius:22px;
    }

    .summary-mini div::before{
        top:18px;
        right:18px;
    }

    .summary-mini strong{
        font-size:38px;
    }
}
.form-error{
    color:#ff6b6b !important;
    font-size:13px;
    font-weight:700;
    text-align:left !important;
    margin-top:-6px;
}

.input-error{
    border:1px solid rgba(255,95,95,0.45) !important;
    box-shadow:0 0 0 4px rgba(255,95,95,0.08);
}
.attack-fill,
.activity-item p,
.live-card strong{
    transition:.45s ease;
}
.input-error{
    border-color:#ff5b5b !important;
    box-shadow:0 0 0 3px rgba(255,91,91,.12) !important;
}
/* ATTACK LEVEL FINAL */

.attack-level{
    background:transparent !important;
    border:none !important;
    outline:none !important;
    box-shadow:none !important;
}

.attack-level::before,
.attack-level::after{
    display:none !important;
    content:none !important;
}

.attack-level span{
    position:relative !important;

    border:none !important;
    outline:none !important;

    padding:10px 18px !important;

    border-radius:999px !important;

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

    font-weight:800 !important;
    font-size:14px !important;

    transition:.35s ease !important;
}
/* AKTİF KORUMA BADGE FINAL */

.live-status{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;

    width:auto !important;
    min-width:auto !important;

    padding:8px 14px !important;

    border-radius:999px !important;

    background:
    linear-gradient(
        135deg,
        rgba(46,213,115,.14),
        rgba(46,213,115,.05)
    ) !important;

    border:
    1px solid rgba(46,213,115,.18) !important;

    color:#7bed9f !important;

    font-size:12px !important;
    font-weight:800 !important;

    line-height:1 !important;
    white-space:nowrap !important;

    box-shadow:
    0 0 18px rgba(46,213,115,.08) !important;

    letter-spacing:.2px !important;
}

.live-status span{
    display:none !important;
}
/* RISK BADGE FINAL FIX */

.attack-level{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;

    min-width:140px !important;
}

.attack-level span{

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

    white-space:nowrap !important;

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

    padding:0 18px !important;

    border-radius:999px !important;

    font-size:15px !important;
    font-weight:800 !important;

    line-height:1 !important;

    transition:.35s ease !important;
}
.expert-support-section{
    padding:90px 0;
}

.expert-support-box{
    margin-top:34px;
    padding:28px;
    border-radius:30px;
    background:linear-gradient(180deg,rgba(17,29,49,.96),rgba(8,15,28,.98));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 24px 80px rgba(0,0,0,.25);
    overflow:hidden;
}

.expert-support-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
}

.support-status{
    display:inline-flex;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(46,213,115,.10);
    border:1px solid rgba(46,213,115,.18);
    color:#7bed9f;
    font-size:12px;
    font-weight:900;
    margin-bottom:10px;
}

.expert-support-top h3{
    font-size:28px;
    color:#fff;
    margin:0;
}

.support-arrows{
    display:flex;
    gap:10px;
}

.support-arrows button{
    width:44px;
    height:44px;
    border:none;
    border-radius:15px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.09);
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.expert-slider{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:8px;
}

.expert-slider::-webkit-scrollbar{
    height:6px;
}

.expert-slider::-webkit-scrollbar-thumb{
    background:rgba(79,140,255,.35);
    border-radius:999px;
}

.expert-card{
    min-width:280px;
    max-width:280px;
    border-radius:26px;
    overflow:hidden;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s ease;
}

.expert-card:hover{
    transform:translateY(-4px);
    border-color:rgba(79,140,255,.25);
    box-shadow:0 18px 48px rgba(0,0,0,.25);
}

.expert-img{
    height:220px;
    background:#111d31;
    overflow:hidden;
}

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

.expert-info{
    padding:22px;
}

.expert-info span{
    color:#8fb6ff;
    font-size:12px;
    font-weight:900;
}

.expert-info h4{
    font-size:22px;
    color:#fff;
    margin:8px 0 10px;
}

.expert-info p{
    color:#9ba8bc;
    font-size:14px;
    line-height:1.55;
    min-height:88px;
}

.expert-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:48px;
    margin-top:18px;
    border-radius:15px;
    background:linear-gradient(135deg,#25D366,#16a34a);
    color:#fff;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 14px 34px rgba(37,211,102,.20);
}

@media(max-width:768px){
    .expert-support-section{
        padding:64px 0;
    }

    .expert-support-box{
        padding:20px 16px;
        border-radius:26px;
    }

    .expert-support-top{
        align-items:flex-start;
    }

    .expert-support-top h3{
        font-size:22px;
    }

    .expert-card{
        min-width:255px;
        max-width:255px;
    }

    .expert-img{
        height:200px;
    }
}
.expert-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;

    margin:14px 0 18px;
}

.online-badge{
    display:inline-flex;
    align-items:center;
    gap:7px;

    padding:7px 12px;

    border-radius:999px;

    background:rgba(46,213,115,.10);

    border:1px solid rgba(46,213,115,.18);

    color:#7bed9f;

    font-size:11px;
    font-weight:800;
}

.online-badge::before{
    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#2ed573;

    box-shadow:
    0 0 14px #2ed573;
}

.active-time{
    color:#7f8aa3;

    font-size:11px;
    font-weight:700;
}
.expert-card{
    transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease !important;
}

.expert-card:hover{

    transform:
    translateY(-8px)
    scale(1.015);

    border-color:
    rgba(79,140,255,.24);

    box-shadow:
    0 30px 80px rgba(0,0,0,.32),
    0 0 40px rgba(79,140,255,.08);
}

.expert-card:hover .expert-img img{
    transform:scale(1.04);
}

.expert-img img{
    transition:transform .45s ease;
}
.support-loading{

    position:fixed;
    inset:0;

    background:rgba(4,8,18,.74);

    backdrop-filter:blur(10px);

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

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;
}

.support-loading.active{
    opacity:1;
    visibility:visible;
}

.support-loading-box{

    width:340px;

    padding:34px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        #111d31,
        #091321
    );

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

    text-align:center;
}

.support-loader{

    width:70px;
    height:70px;

    margin:0 auto 22px;

    border-radius:50%;

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

    border-top-color:#4f8cff;

    animation:spin .9s linear infinite;
}

.support-loading-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
}

.support-loading-box p{
    color:#8fa2c1;
    line-height:1.6;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}
.support-proof{
    margin-top:10px;

    color:#8ea3c7;

    font-size:13px;
    font-weight:700;
}

.support-proof strong{
    color:#fff;
}
.expert-meta{
    margin:10px 0 14px !important;
    gap:8px !important;
}

.online-badge{
    padding:5px 9px !important;
    font-size:10px !important;
    gap:5px !important;
}

.online-badge::before{
    width:6px !important;
    height:6px !important;
}

.active-time{
    font-size:10px !important;
    line-height:1.2 !important;
}
/* EXPERT STATUS STATES */

.online-badge{
    transition:.3s ease !important;
}

.online-badge.status-online{
    background:rgba(46,213,115,.10) !important;
    border-color:rgba(46,213,115,.18) !important;
    color:#7bed9f !important;
}

.online-badge.status-busy{
    background:rgba(255,179,71,.10) !important;
    border-color:rgba(255,179,71,.18) !important;
    color:#ffb347 !important;
}

.online-badge.status-offline{
    background:rgba(148,163,184,.10) !important;
    border-color:rgba(148,163,184,.16) !important;
    color:#a8b3c7 !important;
}

.online-badge.status-online::before{
    background:#2ed573 !important;
    box-shadow:0 0 12px rgba(46,213,115,.8) !important;
}

.online-badge.status-busy::before{
    background:#ffb347 !important;
    box-shadow:0 0 12px rgba(255,179,71,.8) !important;
}

.online-badge.status-offline::before{
    background:#94a3b8 !important;
    box-shadow:none !important;
}
/* IP SECURITY TOAST */

.ip-security-toast{
    position:fixed;
    left:50%;
    bottom:26px;
    transform:translate(-50%, 30px);

    width:min(92%, 460px);

    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 18px;

    border-radius:20px;

    background:
    linear-gradient(180deg, rgba(17,29,49,.96), rgba(8,15,28,.98));

    border:1px solid rgba(79,140,255,.18);

    box-shadow:
    0 24px 70px rgba(0,0,0,.38),
    0 0 34px rgba(79,140,255,.10);

    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:.45s ease;
}

.ip-security-toast.active{
    opacity:1;
    visibility:visible;
    transform:translate(-50%, 0);
}

.ip-toast-icon{
    width:42px;
    height:42px;
    border-radius:15px;

    flex-shrink:0;

    background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.26), transparent 22%),
    linear-gradient(135deg, rgba(79,140,255,.30), rgba(123,97,255,.16));

    border:1px solid rgba(79,140,255,.22);

    position:relative;
}

.ip-toast-icon::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:18px;
    height:22px;
    transform:translate(-50%, -50%);
    background:linear-gradient(180deg,#9fc0ff,#5f8cff);
    clip-path:polygon(50% 0%, 88% 16%, 88% 50%, 74% 76%, 50% 100%, 26% 76%, 12% 50%, 12% 16%);
}

.ip-security-toast strong{
    display:block;
    color:#fff;
    font-size:14px;
    font-weight:900;
    margin-bottom:4px;
}

.ip-security-toast p{
    margin:0;
    color:#9fb4d8;
    font-size:13px;
    line-height:1.45;
}

.ip-security-toast span{
    color:#8fb6ff;
    font-weight:900;
}

@media(max-width:768px){
    .ip-security-toast{
        bottom:18px;
        padding:14px;
        border-radius:18px;
    }

    .ip-toast-icon{
        width:38px;
        height:38px;
    }

    .ip-security-toast strong{
        font-size:13px;
    }

    .ip-security-toast p{
        font-size:12px;
    }
}
.hero-actions-wrap{
    width:100%;
    max-width:470px;
    margin-top:32px;
}

.hero-actions{
    display:grid !important;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.hero-actions .btn{
    width:100%;
    height:56px;
}

.expert-support-button{
    width:100% !important;
    max-width:none !important;
    height:56px !important;
    margin-top:14px !important;
    border-radius:16px !important;
    font-size:16px !important;
}

@media(max-width:768px){
    .hero-actions-wrap{
        max-width:100%;
    }

    .hero-actions{
        grid-template-columns:1fr !important;
        gap:14px;
    }

    .hero-actions .btn,
    .expert-support-button{
        height:56px !important;
        width:100% !important;
    }
}
/* FINAL EXPERT BUTTON FIX */

.expert-support-button{

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

    width:100% !important;

    height:58px !important;

    margin-top:14px !important;

    border-radius:16px !important;

    background:
    linear-gradient(
        135deg,
        #4f8cff,
        #7b61ff
    ) !important;

    border:none !important;

    color:#fff !important;

    font-size:16px !important;
    font-weight:800 !important;

    text-decoration:none !important;

    box-shadow:
    0 18px 40px rgba(79,140,255,.18);

    transition:.3s ease !important;
}

.expert-support-button:hover{

    transform:translateY(-3px);

    box-shadow:
    0 24px 55px rgba(79,140,255,.28);
}
.hero-actions .btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    white-space:nowrap !important;

    font-size:15px !important;
    line-height:1 !important;

    padding:0 18px !important;
}
/* HERO BUTTONS UP */

@media(min-width:769px){

    .hero-actions-wrap{
        margin-top:10px !important;
    }

}
/* HERO CTA COLOR REWORK */

.hero-actions .btn-secondary{

    background:
    linear-gradient(
        135deg,
        rgba(20,32,54,.96),
        rgba(15,24,42,.98)
    ) !important;

    border:
    1px solid rgba(79,140,255,.18) !important;

    color:#dfe9ff !important;

    box-shadow:
    0 14px 40px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.03);

    transition:.3s ease;
}

.hero-actions .btn-secondary:hover{

    transform:translateY(-3px);

    border-color:
    rgba(79,140,255,.34) !important;

    box-shadow:
    0 22px 60px rgba(79,140,255,.12);
}

/* EXPERT BUTTON */

.expert-support-button{

    background:
    linear-gradient(
        135deg,
        #14c97b,
        #12b981
    ) !important;

    color:#fff !important;

    border:none !important;

    box-shadow:
    0 18px 45px rgba(20,201,123,.22) !important;
}

.expert-support-button:hover{

    transform:translateY(-3px);

    box-shadow:
    0 24px 60px rgba(20,201,123,.34) !important;
}
html{
    scroll-behavior:smooth;
}
/* EXPERT SECTION TOP SPACE FIX */

.expert-support-box{

    padding-top:2px !important;
}

.expert-support-top{

    margin-bottom:22px !important;
}

.expert-support-section .section-head{

    margin-bottom:24px !important;
}

/* ADSNEXT SAAS INDEX FINAL UPDATE */
.text-logo{
    gap:6px !important;
    font-size:26px !important;
    letter-spacing:-.7px;
}
.text-logo strong{
    color:#fff;
    font-weight:900;
}
.text-logo span{
    color:#5b8cff !important;
    font-weight:900;
    margin-left:0 !important;
}
.text-logo img,
.logo img,
.logo-icon{
    display:none !important;
}
.panel-showcase{
    max-width:540px;
    padding:24px;
    cursor:pointer;
    background:linear-gradient(180deg,rgba(14,25,42,.98),rgba(8,16,30,.98));
    border:1px solid rgba(255,255,255,.07);
    position:relative;
    overflow:hidden;
}
.panel-showcase:before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(79,140,255,.20),transparent 65%);
    pointer-events:none;
}
.showcase-top{
    position:relative;
    z-index:2;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:16px;
    margin-bottom:18px;
}
.showcase-top span{
    color:#8db5ff;
    font-size:14px;
}
.showcase-top h3{
    margin-top:7px;
    font-size:26px;
    line-height:1.15;
}
.showcase-status{
    background:rgba(46,213,115,.10);
    border:1px solid rgba(46,213,115,.20);
    color:#7bed9f;
    padding:9px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}
.panel-slider{
    position:relative;
    z-index:2;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    background:#081120;
    min-height:290px;
}
.panel-slider:after{
    content:"Demo paneli aç";
    position:absolute;
    left:16px;
    bottom:16px;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(0,0,0,.48);
    color:#fff;
    font-size:12px;
    font-weight:900;
    backdrop-filter:blur(10px);
}
.panel-track{
    display:flex;
    width:max-content;
    animation:panelSlide 42s linear infinite;
}
.panel-track img{
    width:520px;
    height:300px;
    object-fit:cover;
    flex:0 0 auto;
    opacity:.96;
}
.panel-slider:hover .panel-track{
    animation-play-state:paused;
}
@keyframes panelSlide{
    0%{transform:translateX(0)}
    100%{transform:translateX(-2600px)}
}
.showcase-metrics{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:14px;
}
.showcase-metrics div{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    border-radius:16px;
    padding:13px;
}
.showcase-metrics strong{
    display:block;
    color:#fff;
    font-size:18px;
}
.showcase-metrics span{
    display:block;
    color:#8d9ab0;
    font-size:12px;
    margin-top:4px;
}
.analysis-section{
    padding:70px 0 !important;
}
.premium-analysis{
    padding:26px !important;
}
.analysis-left h2{
    font-size:28px !important;
}
.analysis-left p{
    font-size:14px !important;
}
.analysis-points div{
    min-height:48px !important;
}
.panel-features-section{
    background:linear-gradient(180deg,#07111f,#081120);
}
.panel-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.panel-feature-card{
    background:linear-gradient(180deg,rgba(17,29,49,.96),rgba(8,15,28,.98));
    border:1px solid rgba(255,255,255,.07);
    border-radius:26px;
    padding:28px;
    position:relative;
    overflow:hidden;
    transition:.3s ease;
}
.panel-feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(79,140,255,.24);
}
.panel-feature-card span{
    display:inline-flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(79,140,255,.10);
    color:#8db5ff;
    font-weight:900;
    margin-bottom:22px;
}
.panel-feature-card h3{
    font-size:22px;
    margin-bottom:14px;
}
.panel-feature-card p{
    color:#8d9ab0;
    line-height:1.7;
}
.demo-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(0,0,0,.68);
    backdrop-filter:blur(9px);
    align-items:center;
    justify-content:center;
    padding:20px;
}
.demo-modal.active{
    display:flex;
}
.demo-modal-card{
    width:100%;
    max-width:520px;
    background:linear-gradient(180deg,#111d31,#081120);
    border:1px solid rgba(255,255,255,.10);
    border-radius:28px;
    padding:28px;
    position:relative;
    box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.demo-modal-card > span{
    color:#8db5ff;
    font-weight:800;
}
.demo-modal-card h3{
    font-size:28px;
    margin:12px 0;
}
.demo-modal-card p{
    color:#9ba8bc;
    line-height:1.7;
    margin-bottom:20px;
}
.demo-modal-close{
    position:absolute;
    right:16px;
    top:16px;
    width:36px;
    height:36px;
    border:0;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:22px;
    cursor:pointer;
}
.demo-modal-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}


/* PANEL SHOWCASE CLARITY + FULLSCREEN GALLERY */
.corporate-hero{
    grid-template-columns:0.92fr 1.08fr !important;
    gap:70px !important;
}
.panel-showcase{
    max-width:640px !important;
    width:100%;
    padding:26px !important;
}
.panel-slider{
    min-height:390px !important;
    border-radius:24px !important;
}
.panel-slider:after{
    display:none !important;
}
.panel-track img{
    width:620px !important;
    height:390px !important;
    object-fit:contain !important;
    background:#07111f;
    cursor:zoom-in;
    padding:0 !important;
}
.panel-open-demo{
    position:absolute;
    left:18px;
    bottom:18px;
    z-index:5;
    border:0;
    border-radius:999px;
    padding:11px 15px;
    background:rgba(0,0,0,.58);
    color:#fff;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
    backdrop-filter:blur(12px);
}
.panel-open-demo:hover{
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
}
@keyframes panelSlide{
    0%{transform:translateX(0)}
    100%{transform:translateX(-3100px)}
}
.panel-gallery-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:999999;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(10px);
    align-items:center;
    justify-content:center;
    padding:22px;
}
.panel-gallery-modal.active{
    display:flex;
}
.gallery-open{
    overflow:hidden;
}
.panel-gallery-card{
    width:min(96vw,1320px);
    height:min(92vh,820px);
    background:linear-gradient(180deg,#111d31,#081120);
    border:1px solid rgba(255,255,255,.11);
    border-radius:28px;
    box-shadow:0 40px 120px rgba(0,0,0,.58);
    padding:18px;
    position:relative;
    display:grid;
    grid-template-rows:1fr auto;
    gap:14px;
}
#galleryImage{
    width:100%;
    height:100%;
    min-height:0;
    object-fit:contain;
    background:#06101f;
    border:1px solid rgba(255,255,255,.07);
    border-radius:20px;
}
.gallery-close{
    position:absolute;
    right:20px;
    top:20px;
    width:42px;
    height:42px;
    border:0;
    border-radius:14px;
    background:rgba(255,255,255,.10);
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:3;
}
.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:74px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(8,15,27,.72);
    color:#fff;
    font-size:44px;
    line-height:1;
    border-radius:18px;
    cursor:pointer;
    z-index:3;
    backdrop-filter:blur(10px);
}
.gallery-prev{left:26px;}
.gallery-next{right:26px;}
.gallery-nav:hover,
.gallery-close:hover{
    background:linear-gradient(135deg,#4f8cff,#7b61ff);
}
.gallery-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:4px 4px 2px;
}
.gallery-bottom strong{
    display:block;
    font-size:20px;
}
.gallery-bottom small{
    display:block;
    color:#8d9ab0;
    margin-top:5px;
}
.gallery-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}


/* HERO EQUAL HEIGHT + 20 PANEL SLIDER FINAL */
.hero{
    min-height:100vh !important;
    padding-top:120px !important;
    padding-bottom:54px !important;
    display:flex;
    align-items:center;
}
.hero-grid.corporate-hero{
    min-height:calc(100vh - 180px);
    grid-template-columns:minmax(420px,.92fr) minmax(520px,1.08fr) !important;
    align-items:stretch !important;
    gap:64px !important;
}
.hero-content{
    height:100%;
    min-height:640px;
    justify-content:center;
}
.hero-content h1{
    font-size:clamp(46px,4.2vw,62px) !important;
    line-height:1.05 !important;
    margin-bottom:24px !important;
}
.hero-content p{
    font-size:17px !important;
    line-height:1.75 !important;
    margin-bottom:30px !important;
}
.hero-actions-wrap{
    margin-top:0 !important;
}
.hero-actions{
    margin-bottom:12px !important;
}
.hero-note{
    margin-top:12px !important;
}
.panel-showcase{
    height:100%;
    min-height:640px;
    max-width:680px !important;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-self:center;
}
.showcase-top{
    flex:0 0 auto;
}
.panel-slider{
    flex:1 1 auto;
    min-height:390px !important;
    max-height:440px;
}
.panel-track{
    height:100%;
}
.panel-track img{
    width:650px !important;
    height:100% !important;
    min-height:390px !important;
    object-fit:contain !important;
}
.showcase-metrics{
    grid-template-columns:repeat(4,1fr) !important;
    flex:0 0 auto;
}
.showcase-proof{
    margin-top:14px;
    padding:14px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.07);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    color:#9ba8bc;
    font-size:13px;
    line-height:1.45;
}
.showcase-proof div{
    display:flex;
    align-items:center;
    gap:10px;
}
.showcase-proof span{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#2ed573;
    box-shadow:0 0 0 6px rgba(46,213,115,.10);
    flex:0 0 auto;
}
.showcase-proof a{
    color:#fff;
    font-weight:900;
    white-space:nowrap;
}
@keyframes panelSlide{
    0%{transform:translateX(0)}
    100%{transform:translateX(-6500px)}
}


/* HERO 100VH DESKTOP FIT FINAL FIX */
@media(min-width:1201px){
    .site-header{
        top:18px !important;
    }
    .header-inner{
        height:70px !important;
        max-width:1220px;
    }
    .hero{
        min-height:100vh !important;
        height:100vh !important;
        padding-top:98px !important;
        padding-bottom:28px !important;
        display:flex !important;
        align-items:center !important;
    }
    .hero-grid.corporate-hero{
        min-height:0 !important;
        height:calc(100vh - 126px) !important;
        max-height:760px !important;
        align-items:center !important;
        grid-template-columns:minmax(390px,.92fr) minmax(500px,1.08fr) !important;
        gap:54px !important;
    }
    .hero-content{
        min-height:0 !important;
        height:100% !important;
        justify-content:center !important;
        gap:12px !important;
    }
    .badge{
        margin-bottom:12px !important;
        padding:8px 16px !important;
    }
    .hero-content h1{
        font-size:clamp(42px,3.75vw,56px) !important;
        line-height:1.03 !important;
        margin-bottom:14px !important;
        letter-spacing:-1.7px !important;
    }
    .hero-title{
        gap:2px !important;
    }
    .hero-content p{
        font-size:16px !important;
        line-height:1.58 !important;
        margin-bottom:22px !important;
        max-width:620px !important;
    }
    .hero-actions-wrap{
        margin-top:0 !important;
    }
    .hero-actions{
        margin-bottom:10px !important;
    }
    .hero-actions .btn,
    .expert-support-button{
        min-height:50px !important;
        height:50px !important;
        padding:0 24px !important;
    }
    .hero-note{
        margin-top:8px !important;
        padding:12px 16px !important;
        font-size:13px !important;
        line-height:1.4 !important;
    }
    .panel-showcase{
        min-height:0 !important;
        height:100% !important;
        max-height:650px !important;
        max-width:650px !important;
        padding:22px !important;
        justify-content:center !important;
    }
    .showcase-top{
        margin-bottom:12px !important;
    }
    .showcase-top h3{
        font-size:24px !important;
        margin-top:5px !important;
        line-height:1.12 !important;
    }
    .showcase-status{
        padding:8px 12px !important;
        font-size:12px !important;
    }
    .panel-slider{
        min-height:0 !important;
        height:330px !important;
        max-height:330px !important;
        flex:0 0 330px !important;
    }
    .panel-track img{
        width:610px !important;
        height:330px !important;
        min-height:0 !important;
        object-fit:contain !important;
    }
    .panel-open-demo{
        bottom:14px !important;
        left:14px !important;
        padding:9px 13px !important;
    }
    .showcase-metrics{
        grid-template-columns:repeat(4,1fr) !important;
        gap:9px !important;
        margin-top:12px !important;
    }
    .showcase-metrics div{
        padding:11px !important;
        min-height:62px !important;
    }
    .showcase-metrics strong{
        font-size:18px !important;
    }
    .showcase-metrics span{
        font-size:11px !important;
    }
    .showcase-proof{
        margin-top:10px !important;
        padding:11px 13px !important;
        font-size:12px !important;
        line-height:1.35 !important;
    }
    @keyframes panelSlide{
        0%{transform:translateX(0)}
        100%{transform:translateX(-6100px)}
    }
}

@media(min-width:1201px) and (max-height:820px){
    .header-inner{
        height:64px !important;
    }
    .hero{
        padding-top:86px !important;
        padding-bottom:18px !important;
    }
    .hero-grid.corporate-hero{
        height:calc(100vh - 104px) !important;
        gap:46px !important;
    }
    .hero-content h1{
        font-size:clamp(38px,3.35vw,50px) !important;
    }
    .hero-content p{
        font-size:15px !important;
        line-height:1.52 !important;
        margin-bottom:16px !important;
    }
    .hero-actions .btn,
    .expert-support-button{
        min-height:46px !important;
        height:46px !important;
    }
    .hero-note{
        padding:10px 14px !important;
        font-size:12px !important;
    }
    .panel-showcase{
        max-height:600px !important;
        padding:18px !important;
    }
    .panel-slider{
        height:285px !important;
        max-height:285px !important;
        flex-basis:285px !important;
    }
    .panel-track img{
        width:560px !important;
        height:285px !important;
    }
    .showcase-metrics div{
        min-height:56px !important;
        padding:9px !important;
    }
    .showcase-proof{
        padding:9px 12px !important;
    }
    @keyframes panelSlide{
        0%{transform:translateX(0)}
        100%{transform:translateX(-5600px)}
    }
}
Evet knk CSS ile çözeriz. `style.css` en altına bunu ekle:

```css
/* Mini analiz alanı minimal + eşit görünüm */
.analysis-section{
  padding:70px 0 !important;
}

.premium-analysis{
  max-width:980px !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  align-items:center !important;
  gap:24px !important;
  padding:24px !important;
  border-radius:26px !important;
}

.analysis-left,
.analysis-right{
  min-height:430px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

.analysis-left h2{
  font-size:28px !important;
  line-height:1.12 !important;
  margin:14px 0 !important;
}

.analysis-left p{
  font-size:14px !important;
  line-height:1.6 !important;
  max-width:460px !important;
}

.analysis-points{
  gap:9px !important;
  margin-top:18px !important;
}

.analysis-feature{
  min-height:44px !important;
  padding:11px 14px !important;
  border-radius:14px !important;
  font-size:13px !important;
}

.analysis-right{
  padding:22px !important;
  border-radius:24px !important;
}

.analysis-form{
  gap:11px !important;
}

.analysis-form label{
  font-size:13px !important;
  margin-bottom:2px !important;
}

.analysis-form input{
  height:50px !important;
  border-radius:16px !important;
  padding:0 18px !important;
}

.analysis-form button{
  height:52px !important;
  border-radius:16px !important;
  margin-top:8px !important;
}

.analysis-live{
  margin-bottom:14px !important;
  font-size:13px !important;
}

@media(max-width:900px){
  .premium-analysis{
    grid-template-columns:1fr !important;
  }

  .analysis-left,
  .analysis-right{
    min-height:auto !important;
  }
}
.footer{
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.footer-inner > div:first-child{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  font-size:42px;
  font-weight:900;
  line-height:1;
  margin-bottom:14px;
}

.footer-logo span{
  margin-left:2px;
}

.footer-inner p{
  margin:0;
  color:#8fa7cc;
  max-width:420px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  align-items:center;
  gap:34px;
}

.footer-links a{
  color:#c7d7f3;
  text-decoration:none;
  transition:.25s;
}

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

@media(max-width:768px){

  .footer-inner{
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    gap:28px;
  }

  .footer-inner > div:first-child{
    align-items:center;
  }

  .footer-logo{
    justify-content:center;
    margin-bottom:12px;
  }

  .footer-inner p{
    max-width:320px;
  }

  .footer-links{
    flex-direction:column;
    gap:16px;
  }

}
.footer .footer-logo img{
  display:none !important;
}

.footer .footer-logo{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:0 !important;
  margin:0 0 10px 0 !important;
  padding:0 !important;
  font-size:30px !important;
  line-height:1 !important;
}

.footer .footer-logo span{
  margin-left:0 !important;
}

.footer-inner > div:first-child{
  text-align:left !important;
}

.footer-inner > div:first-child p{
  margin:0 !important;
  text-align:left !important;
}

@media(max-width:768px){
  .footer-inner,
  .footer-inner > div:first-child{
    align-items:center !important;
    text-align:center !important;
  }

  .footer .footer-logo{
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .footer-inner > div:first-child p{
    text-align:center !important;
  }
}
.footer-brand-logo{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:2px !important;
  text-decoration:none !important;
  font-size:30px !important;
  font-weight:900 !important;
  line-height:1 !important;
  color:#fff !important;
  margin:0 0 12px 0 !important;
}

.footer-brand-logo strong{
  color:#fff !important;
}

.footer-brand-logo span{
  color:#5b8cff !important;
}

.footer-inner > div:first-child{
  text-align:left !important;
}

@media(max-width:768px){
  .footer-inner{
    text-align:center !important;
  }

  .footer-inner > div:first-child{
    text-align:center !important;
    align-items:center !important;
  }

  .footer-brand-logo{
    justify-content:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}
.footer-brand-logo{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  text-decoration:none !important;
  font-size:38px !important;
  font-weight:900 !important;
  line-height:1 !important;
  margin:0 0 14px 0 !important;
  letter-spacing:-1px;
}

.footer-brand-logo strong{
  color:#ffffff !important;
  font-weight:900 !important;
}

.footer-brand-logo span{
  color:#4f8cff !important;
  margin-left:2px !important;
  font-weight:900 !important;
}
.footer-company-line{
  margin-top:18px;
  color:#6f86ad;
  font-size:13px;
  text-align:center;
  opacity:.85;
}
