/* ==========================================================
   MSecure Data Labs
   Main Stylesheet
========================================================== */

:root {
    --bg-primary: #050505;
    --bg-secondary: #0b0b0b;
    --bg-card: #101010;

    --amber: #ffb400;
    --amber-light: #ffca3a;
    --amber-dark: #d99000;

    --white: #ffffff;
    --text: #e6e6e6;
    --text-muted: #9d9d9d;

    --border: rgba(255, 180, 0, .15);

    --shadow:
        0 0 20px rgba(255,180,0,.08);

    --shadow-hover:
        0 0 35px rgba(255,180,0,.25);

    --radius: 24px;

    --container: 1400px;
}

/* ==========================================================
   RESET
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--amber);
    border-radius: 20px;
}

/* ==========================================================
   GLOBAL
========================================================== */

.container {
    width: 92%;
    max-width: var(--container);
    margin: auto;
}

section {
    position: relative;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ==========================================================
   BACKGROUND EFFECTS
========================================================== */

.grid-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;

    background-image:
        linear-gradient(rgba(255,180,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,180,0,.03) 1px, transparent 1px);

    background-size: 80px 80px;
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(circle at center,
            rgba(255,180,0,.03),
            transparent 70%);
}

/* ==========================================================
   HEADER
========================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;
    backdrop-filter: blur(12px);

    background:
        rgba(5,5,5,.75);

    border-bottom:
        1px solid rgba(255,180,0,.08);
}

.navbar {
    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
}

/* ==========================================================
   MENU
========================================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--amber);
}

.nav-links a.active::after {
    content: '';

    position: absolute;
    bottom: -14px;
    left: 0;

    width: 100%;
    height: 2px;

    background: var(--amber);
}

/* ==========================================================
   ACCOUNT BUTTON
========================================================== */

.btn-account {
    padding: 14px 26px;

    border-radius: 16px;

    border:
        1px solid var(--border);

    color: var(--amber);

    display: flex;
    gap: 10px;
    align-items: center;

    transition: .35s;
}

.btn-account:hover {
    transform: translateY(-2px);

    box-shadow: var(--shadow-hover);

    background:
        rgba(255,180,0,.05);
}

/* ==========================================================
   HAMBURGER
========================================================== */

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    display: block;
    margin: 6px 0;

    background: var(--amber);
}

/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu {
    position: fixed;
    top: 95px;
    left: -100%;

    width: 100%;
    height: calc(100vh - 95px);

    background: #070707;

    z-index: 998;

    transition: .4s;

    display: flex;
    flex-direction: column;
    padding: 40px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    color: white;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

/* ==========================================================
   HERO
========================================================== */

.hero {
    padding-top: 170px;
    padding-bottom: 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tagline {
    color: var(--amber);
    font-size: 18px;
    display: inline-block;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;

    font-size: 6rem;
    line-height: 1.05;
    font-weight: 800;

    margin-bottom: 28px;
}

.hero-content h1 span {
    color: var(--amber);
    display: block;
}

.hero-content p {
    max-width: 650px;

    color: var(--text);

    line-height: 1.9;
    font-size: 20px;

    margin-bottom: 40px;
}

/* ==========================================================
   BUTTONS
========================================================== */

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--amber);
    color: #000;

    padding: 18px 32px;

    border-radius: 16px;

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    transition: .35s;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 35px rgba(255,180,0,.35);
}

.btn-secondary {
    border: 1px solid var(--border);

    color: white;

    padding: 18px 32px;

    border-radius: 16px;

    display: inline-flex;
    gap: 12px;
    align-items: center;

    transition: .35s;
}

.btn-secondary:hover {
    background:
        rgba(255,180,0,.05);

    box-shadow: var(--shadow);
}

/* ==========================================================
   HERO VISUAL
========================================================== */

.hero-visual {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-wrapper {
    width: 520px;
    position: relative;
    transform: translateY(-120px);
}

/* ==========================================================
   SHIELD ROTATION
========================================================== */

.hero-shield {
    width: 100%;

    animation:
        rotateShield 12s linear infinite;

    filter:
        drop-shadow(0 0 40px rgba(255,180,0,.35));
}

@keyframes rotateShield {

    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }

}

/* ==========================================================
   FLOATING CARDS
========================================================== */

.floating-card {
    position: absolute;

    background:
        rgba(15,15,15,.95);

    border:
        1px solid rgba(255,180,0,.18);

    border-radius: 20px;

    padding: 18px 22px;

    min-width: 180px;

    backdrop-filter: blur(12px);

    box-shadow: var(--shadow);

    animation:
        floatCard 5s ease-in-out infinite;
}

.floating-card small {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.floating-card strong {
    display: block;
    color: var(--amber);

    font-size: 28px;

    margin-bottom: 8px;
}

.floating-card span {
    color: white;
}

.card-1 {
    top: 60px;
    left: 40px;
}

.card-2 {
    top: 260px;
    left: 0;
}

.card-3 {
    top: 60px;
    right: 20px;
}

.card-4 {
    top: 260px;
    right: 0;
}

@keyframes floatCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

/* ==========================================================
   FEATURE STRIP
========================================================== */

.feature-strip {
    padding-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--amber);
    font-size: 24px;
}

.feature-item span {
    color: var(--text);
}

/* ==========================================================
   STATS BAR
========================================================== */

.stats-bar {
    padding-bottom: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    border:
        1px solid rgba(255,180,0,.15);

    border-radius: 24px;

    overflow: hidden;
}

.stat-item {
    text-align: center;

    padding: 40px 20px;

    border-right:
        1px solid rgba(255,180,0,.10);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 34px;
    color: var(--amber);

    margin-bottom: 16px;
}

.stat-item h3 {
    font-size: 42px;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
}

/* ==========================================================
   SECTION HEADER
========================================================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header span {
    color: var(--amber);
    letter-spacing: 2px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;

    font-size: 3.5rem;

    margin-top: 15px;
}

/* ==========================================================
   SOLUTIONS
========================================================== */

.solutions {
    padding-bottom: 120px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.solution-card {
    background:
        linear-gradient(
            180deg,
            #101010,
            #090909
        );

    border:
        1px solid rgba(255,180,0,.10);

    border-radius: 28px;

    overflow: hidden;

    transition: .4s;
}

.solution-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-hover);
}

.solution-image {
    height: 320px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    padding: 30px;
}

.solution-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    border:
        1px solid rgba(255,180,0,.20);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.solution-icon i {
    color: var(--amber);
    font-size: 26px;
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.solution-content p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 25px;
}

.solution-link {
    color: var(--amber);

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
}
/* ==========================================================
   WHY MSECURE
========================================================== */

.why-msecure {
    padding-bottom: 120px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.section-mini {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 2px;
}

.why-content h2 {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.why-content p {
    color: var(--text-muted);
    line-height: 1.9;
}

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.why-item i {
    color: var(--amber);
    font-size: 28px;
    margin-top: 4px;
}

.why-item h4 {
    margin-bottom: 8px;
}

.why-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.why-laptop img {
    width: 100%;
}

/* ==========================================================
   THREAT MAP
========================================================== */

.threat-intelligence {
    padding-bottom: 120px;
}

.threat-card {
    border: 1px solid rgba(255,180,0,.15);

    border-radius: 28px;

    padding: 50px;

    background:
        linear-gradient(
            180deg,
            #0e0e0e,
            #070707
        );
}

.threat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    margin-bottom: 40px;
}

.threat-top h2 {
    font-size: 3rem;
    margin: 12px 0;
}

.threat-top p {
    color: var(--text-muted);
}

.threat-map {
    margin-bottom: 40px;
}

.threat-map img {
    width: 100%;
}

.threat-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

.threat-stats h3 {
    color: var(--amber);
    font-size: 2rem;
    margin-bottom: 8px;
}

.threat-stats p {
    color: var(--text-muted);
}

/* ==========================================================
   CTA
========================================================== */

.cta-section {
    padding-bottom: 80px;
}

.cta-box {
    border-radius: 28px;

    border:
        1px solid rgba(255,180,0,.15);

    padding: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 40px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon {
    width: 90px;
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding-top: 60px;

    border-top:
        1px solid rgba(255,180,0,.10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;

    padding-bottom: 50px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer h4 {
    color: var(--amber);
    margin-bottom: 25px;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: var(--text-muted);
    transition: .3s;
}

.footer ul li a:hover {
    color: var(--amber);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border:
        1px solid rgba(255,180,0,.15);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--amber);
}

.footer-bottom {
    border-top:
        1px solid rgba(255,180,0,.10);

    padding: 25px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--text-muted);
}


/* ==========================================================
   ABOUT HERO
========================================================== */

.about-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.about-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.breadcrumb{
    display:flex;
    gap:12px;
    align-items:center;
    margin-bottom:30px;
}

.breadcrumb a{
    color:var(--amber);
}

.breadcrumb span{
    color:var(--text-muted);
}

.about-hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.about-hero-content h1 span{
    color:var(--amber);
}

.hero-line{
    width:80px;
    height:3px;
    background:var(--amber);
    margin-bottom:30px;
}

.about-hero-content h2{
    font-size:3.2rem;
    line-height:1.15;
    margin-bottom:25px;
}

.about-hero-content p{
    color:var(--text-muted);
    font-size:20px;
    line-height:1.9;
    max-width:520px;
}

.about-hero-shield{
    text-align:center;
}

.about-hero-shield img{
    width:520px;
    margin:auto;
    filter:
    drop-shadow(0 0 45px rgba(255,180,0,.35));
}

/* ==========================================================
   STORY
========================================================== */

.about-story{
    padding-bottom:120px;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.story-image img{
    width:100%;
    border-radius:28px;

    border:
    1px solid rgba(255,180,0,.10);
}

.story-content h2{
    font-size:3.2rem;
    line-height:1.15;
    margin:18px 0 30px;
}

.story-content h2 span{
    color:var(--amber);
}

.story-content p{
    color:var(--text-muted);
    line-height:2;
    margin-bottom:25px;
}

/* ==========================================================
   MISSION
========================================================== */

.about-mission{
    padding-bottom:120px;
}

.mission-header{
    text-align:center;
    max-width:1000px;
    margin:auto auto 70px;
}

.mission-header h2{
    font-size:3.5rem;
    margin:15px 0 20px;
}

.mission-header h2 span{
    color:var(--amber);
}

.mission-header p{
    color:var(--text-muted);
    line-height:2;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.mission-card{
    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:28px;

    padding:40px 30px;
    text-align:center;

    transition:.4s;
}

.mission-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.mission-icon{
    width:75px;
    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    border:
    1px solid rgba(255,180,0,.15);

    display:flex;
    align-items:center;
    justify-content:center;
}

.mission-icon i{
    color:var(--amber);
    font-size:30px;
}

.mission-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

.mission-card p{
    color:var(--text-muted);
    line-height:1.9;
}

/* ==========================================================
   TRUST
========================================================== */

.about-trust{
    padding-bottom:100px;
}

.trust-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:center;
}

.trust-content h2{
    font-size:3.2rem;
    line-height:1.15;
    margin:20px 0;
}

.trust-content h2 span{
    color:var(--amber);
}

.trust-content p{
    color:var(--text-muted);
    line-height:2;
    margin-bottom:30px;
}

.trust-point{
    display:flex;
    gap:18px;
    align-items:flex-start;

    padding:20px 0;

    border-bottom:
    1px solid rgba(255,180,0,.08);
}

.trust-point:last-child{
    border-bottom:none;
}

.trust-point i{
    color:var(--amber);
    font-size:24px;
    margin-top:3px;
}

.trust-point span{
    line-height:1.8;
}

.trust-image img{
    width:100%;
    border-radius:28px;

    border:
    1px solid rgba(255,180,0,.10);
}

/* ==========================================================
   ABOUT STATS
========================================================== */

.about-stats{
    padding-bottom:100px;
}

.about-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    border:
    1px solid rgba(255,180,0,.15);

    border-radius:28px;

    overflow:hidden;
}

.about-stat-item{
    text-align:center;
    padding:45px 20px;

    border-right:
    1px solid rgba(255,180,0,.10);
}

.about-stat-item:last-child{
    border-right:none;
}

.about-stat-item i{
    color:var(--amber);
    font-size:34px;
    margin-bottom:18px;
}

.about-stat-item h3{
    color:var(--amber);
    font-size:3rem;
    margin-bottom:10px;
}

.about-stat-item p{
    color:white;
    margin-bottom:8px;
}

.about-stat-item span{
    color:var(--text-muted);
}

/* ==========================================================
   CONTACT HERO
========================================================== */

.contact-hero{
    padding-top:170px;
    padding-bottom:100px;
}

.contact-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.contact-hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.contact-hero-content h1 span{
    color:var(--amber);
}

.contact-hero-content h2{
    font-size:3rem;
    margin-bottom:25px;
}

.contact-hero-content p{
    color:var(--text-muted);
    line-height:1.9;
    font-size:20px;
    max-width:600px;
}

.contact-hero-shield{
    text-align:center;
}

.contact-hero-shield img{
    width:500px;
    margin:auto;

    filter:
    drop-shadow(
        0 0 45px
        rgba(255,180,0,.35)
    );
}

/* ==========================================================
   CONTACT MAIN
========================================================== */

.contact-main{
    padding-bottom:120px;
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.5fr;
    gap:35px;
}

.contact-info-card,
.contact-form-card{

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:28px;

    padding:40px;
}

.contact-info-card h3,
.contact-form-card h3{

    font-size:2rem;
    margin-bottom:20px;
}

.contact-line{
    width:70px;
    height:3px;
    background:var(--amber);
    margin-bottom:35px;
}

.contact-info-item{
    display:flex;
    gap:20px;

    margin-bottom:35px;
}

.contact-info-item:last-child{
    margin-bottom:0;
}

.contact-icon{

    width:60px;
    height:60px;

    flex-shrink:0;

    border-radius:50%;

    border:
    1px solid rgba(255,180,0,.15);

    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:var(--amber);
    font-size:22px;
}

.contact-info-item h4{
    margin-bottom:10px;
}

.contact-info-item p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   CONTACT FORM
========================================================== */

.contact-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{

    width:100%;

    background:#0f0f0f;

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:16px;

    padding:18px 20px;

    color:white;

    font-size:15px;

    outline:none;

    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{

    border-color:var(--amber);

    box-shadow:
    0 0 15px
    rgba(255,180,0,.15);
}

.form-group textarea{
    resize:none;
}

/* ==========================================================
   PRODUCTS HERO
========================================================== */

.products-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.products-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.products-hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.products-hero-content h2{
    font-size:3.2rem;
    line-height:1.15;
    margin-bottom:25px;
}

.products-hero-content h2 span{
    color:var(--amber);
}

.products-hero-content p{
    color:var(--text-muted);
    line-height:1.9;
    font-size:20px;
    max-width:600px;
}

.products-hero-image{
    text-align:center;
}

.products-hero-image img{
    width:520px;
    margin:auto;

    filter:
    drop-shadow(0 0 45px rgba(255,180,0,.35));
}

/* ==========================================================
   HOME SOLUTIONS
========================================================== */

.product-category{
    padding-bottom:120px;
}

.product-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.product-showcase-image img{
    width:100%;
    border-radius:28px;

    border:
    1px solid rgba(255,180,0,.10);
}

.product-showcase-content h2{
    font-size:3.2rem;
    margin-bottom:15px;
}

.product-showcase-content h2 span{
    color:var(--amber);
}

.product-showcase-content p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:20px;
}

.mini-products{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;

    margin-top:35px;
}

.mini-product-card{
    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:24px;

    padding:30px;

    transition:.35s;
}

.mini-product-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.mini-product-icon{
    width:65px;
    height:65px;

    border-radius:50%;

    border:
    1px solid rgba(255,180,0,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.mini-product-icon i{
    color:var(--amber);
    font-size:26px;
}

.mini-product-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
}

.mini-product-card p{
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:20px;
}

/* ==========================================================
   BUSINESS
========================================================== */

/* ==========================================================
   BUSINESS SOLUTIONS
========================================================== */

.business-section{
    padding-bottom:120px;
}

.business-wrapper{

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:28px;

    overflow:hidden;
}

.business-header{
    padding:40px 40px 20px;
}

.business-header h2{
    font-size:3.2rem;
    margin-bottom:15px;
}

.business-header h2 span{
    color:var(--amber);
}

.business-header p{
    color:var(--text-muted);
    line-height:1.9;
    max-width:850px;
    margin-bottom:15px;
}

.business-main{

    display:grid;

    grid-template-columns:
    1.4fr
    1fr;

    gap:30px;

    align-items:center;

    padding:
    0
    40px
    40px;
}

.business-products{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:20px;
}

.business-product-card{

    background:
    rgba(255,255,255,.02);

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:22px;

    padding:24px;

    transition:.35s;
}

.business-product-card:hover{

    transform:
    translateY(-6px);

    box-shadow:
    var(--shadow-hover);
}

.business-product-card h3{

    font-size:1.35rem;

    line-height:1.4;

    margin-bottom:15px;
}

.business-product-card p{

    color:
    var(--text-muted);

    line-height:1.8;

    margin-bottom:20px;

    font-size:15px;
}

.business-image{

    height:100%;
}

.business-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:24px;

    border:
    1px solid rgba(255,180,0,.10);

    display:block;
}
/* ==========================================================
   OEM
========================================================== */

.oem-section{
    padding-bottom:120px;
}

.oem-banner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:30px;

    padding:50px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );
}

.oem-content h2{
    font-size:3.2rem;
    margin-bottom:15px;
}

.oem-content h2 span{
    color:var(--amber);
}

.oem-content p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:20px;
}

.oem-image img{
    width:100%;
    border-radius:24px;
}

/* ==========================================================
   BENEFITS
========================================================== */

.why-products{
    padding-bottom:120px;
}

.products-benefits{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-item{
    text-align:center;

    padding:40px 30px;

    border:
    1px solid rgba(255,180,0,.12);

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    transition:.35s;
}

.benefit-item:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.benefit-icon{
    width:75px;
    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    border:
    1px solid rgba(255,180,0,.15);

    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    color:var(--amber);
    font-size:30px;
}

.benefit-item h4{
    font-size:1.4rem;
    margin-bottom:12px;
}

.benefit-item p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   PC DOCTOR TOTAL SECURITY
========================================================== */

.pcts-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.pcts-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.breadcrumb{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:25px;
}

.breadcrumb span{
    color:var(--amber);
    margin:0 10px;
}

.pcts-hero-content h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.pcts-hero-content h1 span{
    color:var(--amber);
}

.pcts-hero-content p{
    color:var(--text-muted);
    font-size:19px;
    line-height:1.9;
    max-width:650px;
}

.offer-box{
    margin-top:35px;
    margin-bottom:35px;

    display:inline-block;

    padding:22px 30px;

    border-radius:20px;

    border:
    1px solid rgba(255,180,0,.15);

    background:
    linear-gradient(
        180deg,
        rgba(255,180,0,.08),
        rgba(255,180,0,.02)
    );
}

.offer-box span{
    display:block;
    color:var(--amber);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.offer-price{
    display:flex;
    align-items:center;
    gap:15px;
}

.offer-price del{
    color:#888;
    font-size:1.2rem;
}

.offer-price strong{
    font-size:2rem;
    color:var(--amber);
}

.pcts-hero-visual{
    position:relative;
    min-height:650px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.pcts-hero-visual .shield-wrapper{
    width:520px;
}

.pcts-hero-visual img{
    width:100%;
        transform: translateY(80px);
}

.feature-badge{
    position:absolute;

    padding:12px 18px;

    background:
    rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    border:
    1px solid rgba(255,180,0,.15);

    border-radius:14px;

    color:#fff;
    font-weight:600;
}

.badge-1{
    top:70px;
    left:0;
}

.badge-2{
    top:140px;
    right:0;
}

.badge-3{
    bottom:130px;
    left:20px;
}

.badge-4{
    bottom:70px;
    right:0;
}

/* ==========================================================
   INTRO
========================================================== */

.pcts-intro{
    padding-bottom:80px;
}

.pcts-intro .section-header{
    max-width:900px;
    margin:auto;
}

/* ==========================================================
   FEATURES
========================================================== */

.pcts-features,
.pcts-features-secondary{
    padding-bottom:120px;
}

.pcts-feature-grid{
    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.pcts-feature-card{

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:24px;

    padding:30px;

    transition:.35s;
}

.pcts-feature-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-hover);
}

.pcts-feature-card i{

    color:
    var(--amber);

    font-size:34px;

    margin-bottom:20px;
}

.pcts-feature-card h3{

    font-size:1.4rem;

    margin-bottom:15px;
}

.pcts-feature-card p{

    color:
    var(--text-muted);

    line-height:1.8;

    font-size:15px;
}

/* ==========================================================
   PROTECTION
========================================================== */

.pcts-protection{
    padding-bottom:120px;
}

.protection-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.protection-card{

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:24px;

    padding:35px;

    transition:.35s;
}

.protection-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    var(--shadow-hover);
}

.protection-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
    1px solid rgba(255,180,0,.15);

    margin-bottom:25px;
}

.protection-icon i{
    color:var(--amber);
    font-size:28px;
}

.protection-card h3{
    margin-bottom:15px;
}

.protection-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   PERFORMANCE
========================================================== */

.pcts-performance{
    padding-bottom:120px;
}

.performance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.performance-image img{
    width:100%;
    border-radius:30px;

    border:
    1px solid rgba(255,180,0,.10);

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);
}

.performance-content h2{
    font-size:3.2rem;
    line-height:1.15;
    margin-bottom:25px;
}

.performance-content h2 span{
    color:var(--amber);
}

.performance-content p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:35px;
}

.performance-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.performance-item{

    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 20px;

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:14px;

    background:
    rgba(255,255,255,.02);
}

.performance-item i{
    color:var(--amber);
}

/* ==========================================================
   REQUIREMENTS
========================================================== */

.pcts-requirements{
    padding-bottom:120px;
}

.requirements-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.requirement-card{

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:28px;

    padding:40px;
}

.requirement-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:
    1px solid rgba(255,180,0,.15);

    margin-bottom:25px;
}

.requirement-icon i{
    color:var(--amber);
    font-size:34px;
}

.requirement-card h3{
    margin-bottom:25px;
}

.requirement-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.requirement-card ul li{

    padding:12px 0;

    border-bottom:
    1px solid rgba(255,180,0,.08);

    color:var(--text-muted);
}

.requirement-card ul li:last-child{
    border-bottom:none;
}

.os-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.os-badge{

    text-align:center;

    padding:18px;

    border-radius:14px;

    border:
    1px solid rgba(255,180,0,.10);

    background:
    rgba(255,255,255,.02);

    font-weight:600;
}

/* ==========================================================
   COMPARISON TABLE
========================================================== */

.pcts-comparison{
    padding-bottom:120px;
}

.comparison-wrapper{

    overflow-x:auto;

    border-radius:30px;

    border:
    1px solid rgba(255,180,0,.10);

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );
}

.comparison-table{
    width:100%;
    border-collapse:collapse;
}

.comparison-table thead{

    background:
    rgba(255,180,0,.08);
}

.comparison-table th{

    padding:25px;

    text-align:left;

    font-size:1rem;
}

.comparison-table td{

    padding:20px 25px;

    border-top:
    1px solid rgba(255,180,0,.08);
}

.comparison-table td:nth-child(2),
.comparison-table td:nth-child(3){
    text-align:center;
}

.comparison-table .fa-check{
    color:#30d158;
    font-size:20px;
}

.comparison-table .fa-xmark{
    color:#ff453a;
    font-size:20px;
}

/* ==========================================================
   STATS
========================================================== */

.pcts-stats{
    padding-bottom:120px;
}

.pcts-stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    border:
    1px solid rgba(255,180,0,.10);

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );
}

.pcts-stat-item{

    padding:45px 25px;

    text-align:center;

    border-right:
    1px solid rgba(255,180,0,.08);
}

.pcts-stat-item:last-child{
    border-right:none;
}

.pcts-stat-item h3{

    color:var(--amber);

    font-size:3rem;

    margin-bottom:10px;
}

.pcts-stat-item p{
    color:var(--text-muted);
}

/* ==========================================================
   CTA FIX
========================================================== */

.cta-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* ==========================================================
   NGAV PRO PAGE
========================================================== */

.ngav-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.ngav-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.ngav-hero-content h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.ngav-hero-content h1 span{
    color:var(--amber);
}

.ngav-hero-content p{
    color:var(--text-muted);
    font-size:19px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

.ngav-hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
}

.ngav-hero-visual .shield-wrapper{

    width:520px;

    transform:
    translateY(10px);
}

.ngav-hero-visual img{
    width:100%;
   
}

.ngav-intro{
    padding-bottom:90px;
}

.ngav-intro .section-header{
    max-width:900px;
    margin:auto;
}

.ngav-intro h2{
    max-width:950px;
    margin:auto;
}

.ngav-features{
    padding-bottom:80px;
}

.ngav-features-secondary{
    padding-bottom:120px;
}

.ngav-performance{
    padding-bottom:90px;
}

.ngav-benefits{
    padding-bottom:120px;
}

.ngav-benefits .products-benefits{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:20px;
}

.ngav-benefits .benefit-item{

    text-align:center;

    padding:35px 20px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.ngav-benefits .benefit-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.ngav-benefits .benefit-item i{

    color:var(--amber);

    font-size:34px;

    margin-bottom:18px;
}

.ngav-benefits .benefit-item h3{

    font-size:1.1rem;

    line-height:1.4;
}

.ngav-requirements{
    padding-bottom:120px;
}

.ngav-stats{
    padding-bottom:120px;
}

.section-mini{

    display:inline-block;

    color:var(--amber);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

    margin-bottom:15px;
}

/* ==========================================================
   MAIL SECURITY PAGE
========================================================== */

.mail-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.mail-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.mail-hero-content h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.mail-hero-content h1 span{
    color:var(--amber);
}

.mail-hero-content p{
    color:var(--text-muted);
}

.mail-hero-content > p:first-of-type{
    font-size:1.5rem;
    font-weight:600;
    color:#fff;
    margin-bottom:15px;
}

.hero-description{
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

.mail-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.mail-hero-image img{
    width:100%;
    max-width:560px;
}

.mail-hero-features{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:50px;
}

.mail-feature-pill{

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    border-radius:50px;

    background:
    rgba(255,180,0,.05);

    border:
    1px solid rgba(255,180,0,.12);
}

.mail-feature-pill i{
    color:var(--amber);
}

/* ==========================================================
   BENEFITS
========================================================== */

.mail-benefits{
    padding-bottom:120px;
}

.mail-benefits-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:22px;
}

.mail-benefit-card{

    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:28px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.mail-benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-hover);
}

.mail-benefit-card i{

    font-size:32px;

    color:var(--amber);

    margin-top:5px;
}

.mail-benefit-card h3{
    margin-bottom:8px;
}

.mail-benefit-card p{
    color:var(--text-muted);
    line-height:1.8;
}

.mail-benefit-wide{
    grid-column:span 2;
}

/* ==========================================================
   WORKFLOW
========================================================== */

.mail-workflow{
    padding-bottom:120px;
}

.mail-workflow .section-header{
    text-align:center;
    margin-bottom:70px;
}

.mail-workflow .section-header span{
    display:block;
    margin-bottom:20px;
}

.mail-workflow .section-header p{
    max-width:900px;
    margin:0 auto;
    color:var(--text-muted);
    line-height:1.8;
}

.workflow-box{

    display:flex;
    align-items:center;
    justify-content:center;

    flex-wrap:wrap;

    gap:20px;
}

.workflow-step{

    width:170px;
    height:170px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:25px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.workflow-step:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-hover);
}

.workflow-step i{

    font-size:42px;

    color:var(--amber);

    margin-bottom:18px;

    display:block;
}

.workflow-step span{

    display:block;

    font-size:1.1rem;

    line-height:1.4;

    font-weight:600;

    color:#fff;
}

.workflow-arrow{

    color:var(--amber);

    font-size:28px;

    flex-shrink:0;
}

/* ==========================================================
   PROTECTION
========================================================== */

.mail-protection{
    padding-bottom:120px;
}

.mail-protection-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.mail-protection-card{

    padding:35px;

    text-align:center;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.mail-protection-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.mail-protection-card i{

    font-size:40px;

    color:var(--amber);

    margin-bottom:20px;
}

.mail-protection-card h3{
    margin-bottom:15px;
}

.mail-protection-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   EMAIL FLOW
========================================================== */

.mail-email-flow{
    padding-bottom:120px;
}

.mail-flow-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.mail-flow-image img{
    width:100%;
}

.mail-flow-content{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.flow-item{

    display:flex;
    align-items:flex-start;
    gap:18px;

    padding:20px;

    border-radius:18px;

    background:
    rgba(255,255,255,.02);

    border:
    1px solid rgba(255,180,0,.08);
}

.flow-number{

    min-width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--amber);

    color:#000;

    font-weight:700;
}

.flow-item p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   PLATFORMS
========================================================== */

.mail-platforms{
    padding-bottom:120px;
}

.mail-platform-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.platform-card{

    padding:40px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);
}

.platform-card h3{
    margin-bottom:30px;
}

.platform-list{
    display:grid;
    gap:15px;
}

.platform-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px;

    border-radius:14px;

    border:
    1px solid rgba(255,180,0,.08);
}

.platform-item i{
    color:var(--amber);
    font-size:22px;
}

.requirements-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.requirements-content ul{
    list-style:none;
    margin:0;
    padding:0;
}

.requirements-content li{

    padding:12px 0;

    color:var(--text-muted);

    border-bottom:
    1px solid rgba(255,180,0,.08);
}

/* ==========================================================
   STATS
========================================================== */

.mail-stats{
    padding-bottom:120px;
}

.mail-stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    border-radius:28px;

    overflow:hidden;

    border:
    1px solid rgba(255,180,0,.10);

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );
}

.mail-stat-item{

    text-align:center;

    padding:45px 25px;

    border-right:
    1px solid rgba(255,180,0,.08);
}

.mail-stat-item:last-child{
    border-right:none;
}

.mail-stat-item i{

    color:var(--amber);

    font-size:32px;

    margin-bottom:15px;
}

.mail-stat-item h3{

    color:var(--amber);

    font-size:2.6rem;

    margin-bottom:10px;
}

.mail-stat-item p{
    color:var(--text-muted);
}

/* ==========================================================
   ATP PAGE
========================================================== */

.atp-hero{
    padding-top:170px;
    padding-bottom:120px;
}

.atp-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.atp-hero-content h1{
    font-size:5rem;
    line-height:1;
    margin-bottom:25px;
}

.atp-hero-content h1 span{
    color:var(--amber);
}

.hero-subtitle{
    font-size:1.5rem;
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

.atp-hero-content .hero-description{
    color:var(--text-muted);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
    margin-bottom:35px;
}

.atp-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.atp-hero-image img{
    width:100%;
    max-width:650px;
}

/* ==========================================================
   BENEFITS
========================================================== */

.atp-benefits{
    padding-bottom:120px;
}

.atp-benefits-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.atp-benefit-item{

    text-align:center;

    padding:30px 20px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.atp-benefit-item:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.atp-benefit-item i{

    color:var(--amber);

    font-size:32px;

    margin-bottom:18px;
}

.atp-benefit-item span{

    display:block;

    font-weight:600;

    line-height:1.5;
}

/* ==========================================================
   CORE ENGINE
========================================================== */

.atp-core,
.atp-security,
.atp-optimization{
    padding-bottom:120px;
}

.atp-core-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.atp-card{

    padding:32px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.atp-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.atp-card-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:
    1px solid rgba(255,180,0,.15);

    margin-bottom:25px;
}

.atp-card-icon i{

    color:var(--amber);

    font-size:28px;
}

.atp-card h3{
    margin-bottom:15px;
}

.atp-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   SECURITY FEATURES
========================================================== */

.atp-security-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.security-card{

    text-align:center;

    padding:35px 28px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.security-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.security-card i{

    color:var(--amber);

    font-size:36px;

    margin-bottom:20px;
}

.security-card h3{
    margin-bottom:15px;
}

.security-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   OPTIMIZATION
========================================================== */

.optimization-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.optimization-card{

    text-align:center;

    padding:35px;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);

    transition:.35s;
}

.optimization-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);
}

.optimization-card i{

    color:var(--amber);

    font-size:36px;

    margin-bottom:20px;
}

.optimization-card h3{
    margin-bottom:15px;
}

.optimization-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/* ==========================================================
   PERFORMANCE
========================================================== */

.atp-performance{
    padding-bottom:120px;
}

.performance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.performance-image img{
    width:100%;
    border-radius:30px;

    border:
    1px solid rgba(255,180,0,.10);
}

.performance-content h2{
    font-size:3.2rem;
    margin-bottom:25px;
    line-height:1.15;
}

.performance-content p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:35px;
}

.performance-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.performance-item{

    display:flex;
    align-items:center;
    gap:12px;

    padding:16px;

    border-radius:14px;

    border:
    1px solid rgba(255,180,0,.10);

    background:
    rgba(255,255,255,.02);
}

.performance-item i{
    color:var(--amber);
}

/* ==========================================================
   LOG VIEWER
========================================================== */

.atp-logviewer{
    padding-bottom:120px;
}

.logviewer-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.log-item{

    text-align:center;

    padding:24px;

    border-radius:18px;

    border:
    1px solid rgba(255,180,0,.10);

    background:
    rgba(255,255,255,.02);

    transition:.35s;
}

.log-item:hover{

    transform:translateY(-5px);

    border-color:
    rgba(255,180,0,.30);
}

/* ==========================================================
   ADMIN CONNECT
========================================================== */

.atp-admin{
    padding-bottom:120px;
}

.admin-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.admin-image img{
    width:100%;
    border-radius:30px;

    border:
    1px solid rgba(255,180,0,.10);
}

.admin-content h2{
    font-size:3rem;
    margin:15px 0 30px;
    line-height:1.15;
}

.admin-feature-list{
    display:grid;
    gap:16px;
}

.admin-feature{

    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 22px;

    border-radius:14px;

    border:
    1px solid rgba(255,180,0,.08);

    background:
    rgba(255,255,255,.02);
}

.admin-feature i{
    color:var(--amber);
}

/* ==========================================================
   REQUIREMENTS
========================================================== */

.atp-requirements{
    padding-bottom:120px;
}

/* Uses existing requirement-card,
   requirement-icon,
   requirements-grid,
   os-grid,
   os-badge styles */

/* ==========================================================
   STATS
========================================================== */

.atp-stats{
    padding-bottom:120px;
}

.atp-stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #101010,
        #080808
    );

    border:
    1px solid rgba(255,180,0,.10);
}

.atp-stat-item{

    text-align:center;

    padding:45px 25px;

    border-right:
    1px solid rgba(255,180,0,.08);
}

.atp-stat-item:last-child{
    border-right:none;
}

.atp-stat-item h3{

    color:var(--amber);

    font-size:3rem;

    margin-bottom:10px;
}

.atp-stat-item p{
    color:var(--text-muted);
}