/* ==========================================================
   IT Monkee - Futuristic MSP Theme
   File: /assets/css/style.css
   ========================================================== */

/* ---------- Root Variables ---------- */
:root {
    --black: #050505;
    --dark: #0d0d0f;
    --white: #ffffff;
    --muted: #b8b8b8;
    --line: rgba(255, 255, 255, 0.14);

    /* Accent Colors */
    --red: #e50914;
    --red-dark: #9f0610;

    /* Layout */
    --max-width: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Links ---------- */
a {
    color: inherit;
    text-decoration: none;
}

/* ---------- Header ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* ---------- Navigation Links ---------- */
.navlinks {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navlinks a {
    color: #f3f3f3;
    opacity: 0.92;
    transition: all 0.2s ease;
}

.navlinks a:hover {
    color: var(--red);
    opacity: 1;
}

/* ---------- Client Portal Button ---------- */
.portal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4px;

    transition: all 0.2s ease;
}

.portal-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.35);
}

/* ---------- Mobile Menu Button ---------- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ---------- Utility Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .navlinks {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .portal-btn {
        display: none;
    }

    .logo img {
        height: 52px;
    }
}

@media (max-width: 640px) {
    .feature-list,
    .guard-stats {
        grid-template-columns: 1fr;
    }

    .monkeeguard-section {
        padding: 70px 0;
    }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 36%, rgba(0,0,0,.58) 68%, rgba(0,0,0,.95) 100%),
        radial-gradient(circle at 70% 35%, rgba(229,9,20,.18), transparent 30%),
        linear-gradient(135deg, #050505, #1a1a1a);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 92px 24px 70px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--red);
    display: inline-block;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: -4px;
    font-weight: 1000;
    margin-bottom: 26px;
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.82);
}

.hero p {
    color: #e7e7e7;
    max-width: 600px;
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 178px;
    padding: 15px 24px;
    border-radius: 3px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .4px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 0 28px rgba(229,9,20,.28);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.75);
    color: var(--white);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
}

.trust-pill {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #f0f0f0;
}

.hero-card {
    position: relative;
    min-height: 440px;
    border: 1px solid rgba(255,255,255,.16);
    background:
        linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
        #0c0c0d;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 65% 35%, rgba(229,9,20,.34), transparent 26%);
    opacity: .8;
}

.screen {
    position: relative;
    height: 280px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
    background: #020202;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 5px);
    opacity: .22;
}

.screen-logo {
    position: relative;
    z-index: 2;
    font-size: 42px;
    font-weight: 1000;
    letter-spacing: -1.5px;
}

.screen-sub {
    position: relative;
    z-index: 2;
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 900;
    margin-top: 10px;
}

.status-grid {
    position: relative;
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.status {
    background: rgba(0,0,0,.45);
    border: 1px solid var(--line);
    padding: 14px;
    border-radius: 12px;
}

.status strong {
    display: block;
    font-size: 24px;
}

.status span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

@media (max-width: 1020px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding-top: 56px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .trust-row,
    .status-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Hero Slider ---------- */
.hero-slider {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: #050505;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide:nth-child(1) {
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 38%, rgba(0,0,0,.58) 70%, rgba(0,0,0,.95) 100%),
        radial-gradient(circle at 72% 35%, rgba(229,9,20,.18), transparent 32%),
        linear-gradient(135deg, #050505, #1a1a1a);
}

.hero-slide:nth-child(2) {
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 42%, rgba(25,0,3,.68) 100%),
        radial-gradient(circle at 72% 40%, rgba(229,9,20,.32), transparent 30%),
        linear-gradient(135deg, #050505, #190003);
}

.hero-slide:nth-child(3) {
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.72) 100%),
        radial-gradient(circle at 75% 45%, rgba(255,255,255,.12), transparent 32%),
        linear-gradient(135deg, #050505, #171717);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
    pointer-events: none;
}

.hero-slider .hero-inner {
    position: relative;
    z-index: 5;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 24px 90px;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.hero-slider .hero-content {
    max-width: 680px;
}

.hero-slider h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: -4px;
    font-weight: 1000;
    margin-bottom: 26px;
}

.hero-slider h1 span {
    color: var(--red);
    -webkit-text-stroke: 0;
}

.hero-slider p {
    color: #e7e7e7;
    max-width: 620px;
    font-size: 20px;
    margin-bottom: 32px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
}

.slider-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 34px;
    height: 4px;
    border: none;
    background: rgba(255,255,255,.32);
    cursor: pointer;
}

.dot.active {
    background: var(--red);
}

@media (max-width: 900px) {

    .slider-arrow {
        display: none;
    }

    .hero-slider .hero-inner {
        padding-top: 76px;
        min-height: 620px;
    }

    .hero-slider h1 {
        letter-spacing: -2px;
    }
}

/* ---------- Services Section ---------- */
.services-section {
    background: #f5f5f5;
    color: #080808;
    padding: 82px 0;
}

.section-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.section-heading span {
    display: inline-block;
    color: var(--red);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.section-heading p {
    color: #555;
    font-size: 18px;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 30px 20px;
    min-height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.service-card.featured {
    background: #080808;
    color: #ffffff;
    border-color: var(--red);
    box-shadow: 0 18px 44px rgba(229,9,20,.18);
}

.service-icon {
    width: 58px;
    height: 58px;
    border: 2px solid currentColor;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 17px;
    margin-bottom: 12px;
}

.service-card p {
    color: #444;
    font-size: 14px;
    margin-bottom: 22px;
}

.service-card.featured p {
    color: #d0d0d0;
}

.service-card a {
    color: #111;
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 13px;
}

.service-card.featured a {
    color: #ffffff;
}

.service-card a:hover {
    color: var(--red);
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        padding: 64px 0;
    }
}

/* ---------- MonkeeGuard Section ---------- */
.monkeeguard-section {
    background: linear-gradient(135deg, #050505, #121212);
    color: #ffffff;
    padding: 90px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.monkeeguard-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--red);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 13px;
    margin-bottom: 12px;
}

.monkeeguard-content h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.monkeeguard-content h2 span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
}

.monkeeguard-content p {
    color: #d7d7d7;
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 620px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
    color: #f0f0f0;
}

.monkeeguard-panel {
    position: relative;
}

.guard-screen {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        #0c0c0d;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.guard-header {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.guard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.guard-dot.red { background: #ff5f57; }
.guard-dot.yellow { background: #febc2e; }
.guard-dot.green { background: #28c840; }

.guard-body {
    padding: 36px 28px;
}

.guard-title {
    font-size: 32px;
    font-weight: 1000;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.guard-subtitle {
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 28px;
}

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

.guard-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 12px;
}

.guard-stat strong {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.guard-stat span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .monkeeguard-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Why Choose Section ---------- */
.why-section {
    background: #ffffff;
    color: #000;
    padding: 86px 0;
}

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

.why-card {
    position: relative;
    background: #f7f7f7;
    border: 1px solid #dedede;
    padding: 34px 24px;
    min-height: 260px;
    overflow: hidden;
    transition: 0.2s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 18px 36px rgba(0,0,0,.10);
}

.why-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(229,9,20,0.08);
}

.why-number {
    color: var(--red);
    font-size: 15px;
    font-weight: 1000;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #000;
}

.why-card p {
    color: #4e4e4e;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-section {
        padding: 68px 0;
    }
}


/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background: #050505;
    color: #ffffff;
    padding: 86px 0;
    border-top: 1px solid var(--line);
}

.dark-heading h2 {
    color: #ffffff;
}

.dark-heading p {
    color: #cfcfcf;
}

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

.testimonial-card {
    background: linear-gradient(180deg, #0b0b0b, #111111);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 34px 28px;
    min-height: 280px;
    transition: 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: 0 18px 36px rgba(0,0,0,.35);
}

.featured-testimonial {
    border-color: rgba(229,9,20,0.6);
    box-shadow: 0 18px 44px rgba(229,9,20,.14);
}

.stars {
    color: var(--red);
    letter-spacing: 3px;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-card h4 {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Final CTA Section ---------- */
.cta-section {
    background: #f5f5f5;
    color: #080808;
    padding: 90px 0;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 60px 50px;
    box-shadow: 0 24px 50px rgba(0,0,0,.08);
}

.cta-box h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 34px;
}

.cta-box .section-label {
    margin-bottom: 14px;
}

.cta-box .btn-secondary {
    color: #111;
    border-color: #111;
}

.cta-box .btn-secondary:hover {
    color: #ffffff;
    border-color: var(--red);
}

@media (max-width: 640px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-box {
        padding: 42px 28px;
    }

    .cta-box p {
        font-size: 18px;
    }
}


/* ---------- Footer ---------- */
.site-footer {
    background: #020202;
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 420px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-column h4 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #cfcfcf;
    line-height: 1.7;
}

.footer-column a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #9a9a9a;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 60px;
    }
}


/* ---------- Interior Page Hero ---------- */
.page-hero {
    background:
        linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.78)),
        radial-gradient(circle at 75% 35%, rgba(229,9,20,.22), transparent 32%),
        #050505;
    color: #ffffff;
    padding: 90px 0;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -2px;
    max-width: 900px;
    margin-bottom: 20px;
}

.page-hero p {
    color: #d8d8d8;
    font-size: 20px;
    max-width: 760px;
}

/* ---------- Contact Page ---------- */
.contact-section {
    background: #f5f5f5;
    color: #080808;
    padding: 24px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 46px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.contact-info p {
    color: #555;
    font-size: 18px;
    margin-bottom: 26px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 20px;
    margin-bottom: 14px;
}

.contact-card strong {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 1.2px;
    margin-bottom: 6px;
}

.contact-card a,
.contact-card span {
    color: #111;
    font-weight: 700;
}

.contact-form {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 34px;
    box-shadow: 0 20px 48px rgba(0,0,0,.08);
}

.contact-form label {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .7px;
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 14px;
    border: 1px solid #cfcfcf;
    background: #f9f9f9;
    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: #ffffff;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

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

/* ---------- About Page ---------- */
.about-section {
    background: #f5f5f5;
    color: #080808;
    padding: 86px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.about-content p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-panel {
    background: #080808;
    color: #ffffff;
    border: 1px solid rgba(229,9,20,0.5);
    padding: 36px;
    box-shadow: 0 24px 54px rgba(0,0,0,.14);
}

.about-panel h3 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 24px;
}

.about-list {
    display: grid;
    gap: 12px;
}

.about-list div {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    padding: 14px 16px;
    font-weight: 800;
}

/* ---------- Mission Section ---------- */
.mission-section {
    background: #050505;
    color: #ffffff;
    padding: 84px 0;
}

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

.mission-card {
    background: linear-gradient(180deg, #0b0b0b, #111111);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 34px 28px;
    min-height: 250px;
}

.mission-card span {
    color: var(--red);
    font-weight: 1000;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 18px;
}

.mission-card h3 {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 14px;
}

.mission-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Services Page Feature Section ---------- */
.service-feature-section {
    background: #050505;
    color: #ffffff;
    padding: 88px 0;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
}

.service-feature-grid h2 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.service-feature-grid p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.feature-checklist {
    background: linear-gradient(180deg, #0b0b0b, #111111);
    border: 1px solid rgba(229,9,20,0.45);
    padding: 36px;
}

.feature-checklist h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature-checklist ul {
    list-style: none;
}

.feature-checklist li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    color: #e0e0e0;
    font-weight: 700;
}

.feature-checklist li::before {
    content: "✓";
    color: var(--red);
    font-weight: 1000;
    margin-right: 10px;
}

/* ---------- Support Types ---------- */
.support-types-section {
    background: #f5f5f5;
    color: #080808;
    padding: 84px 0;
}

.support-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.support-type-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 42px;
    box-shadow: 0 20px 46px rgba(0,0,0,.06);
}

.support-type-card h3 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.support-type-card p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.support-type-card a {
    font-weight: 1000;
    text-transform: uppercase;
    color: #111;
}

.support-type-card a:hover {
    color: var(--red);
}

@media (max-width: 900px) {
    .service-feature-grid,
    .support-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Pricing Page ---------- */
.pricing-section {
    background: #f5f5f5;
    color: #080808;
    padding: 86px 0;
}

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

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 38px 30px;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 46px rgba(0,0,0,.06);
}

.pricing-card h3 {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.price {
    font-size: 42px;
    font-weight: 1000;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.price span {
    display: block;
    font-size: 15px;
    color: #555;
    letter-spacing: 0;
    margin-top: 4px;
}

.pricing-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
    color: #333;
    font-weight: 700;
}

.pricing-card li::before {
    content: "✓";
    color: var(--red);
    font-weight: 1000;
    margin-right: 10px;
}

.featured-pricing {
    background: #080808;
    color: #ffffff;
    border-color: var(--red);
    box-shadow: 0 24px 60px rgba(229,9,20,.20);
    transform: translateY(-10px);
}

.featured-pricing p,
.featured-pricing li {
    color: #d0d0d0;
    border-bottom-color: rgba(255,255,255,0.10);
}

.featured-pricing .price span {
    color: #cfcfcf;
}

.pricing-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--red);
    color: #ffffff;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.pricing-badge.beta {
    background: #111111;
    color: #ffffff;
    border: 1px solid var(--red);
}

.pricing-card .btn-secondary {
    color: #111111;
    border-color: #111111;
}

.pricing-card .btn-secondary:hover {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
}

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .featured-pricing {
        transform: none;
    }
}

.pricing-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .pricing-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .pricing-grid-four {
        grid-template-columns: 1fr;
    }
}


/* ---------- FAQ Page ---------- */
.faq-section {
    background: #f5f5f5;
    color: #080808;
    padding: 86px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.faq-intro p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 26px 28px;
    box-shadow: 0 14px 36px rgba(0,0,0,.05);
}

.faq-item h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }
}

/* ---------- Legal Pages ---------- */
.legal-section {
    background: #f5f5f5;
    color: #080808;
    padding: 86px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    padding: 48px;
    box-shadow: 0 20px 48px rgba(0,0,0,.06);
}

.legal-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 36px 0 14px;
}

.legal-content p,
.legal-content li {
    color: #555;
    font-size: 17px;
    line-height: 1.9;
}

.legal-content ul {
    margin: 10px 0 20px 24px;
}

.legal-content a {
    color: var(--red);
    font-weight: 700;
}

@media (max-width: 640px) {
    .legal-content {
        padding: 32px 24px;
    }
}


/* ---------- Alerts ---------- */
.alert-success,
.alert-error {
    padding: 16px 20px;
    margin-bottom: 24px;
    font-weight: 700;
    border-radius: 4px;
}

.alert-success {
    background: #eaf8ef;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* ---------- Mobile Navigation ---------- */
@media (max-width: 1024px) {
    .nav {
        position: relative;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: #050505;
        border: 1px solid var(--line);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,.45);
    }

    .navlinks.active {
        display: flex;
    }

    .portal-btn.mobile-active {
        display: inline-flex;
    }
}

/* ---------- Dropdown Navigation ---------- */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #050505;
    border: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(0,0,0,.55);
    padding: 12px 0;
    z-index: 2000;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #f3f3f3;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(229,9,20,.14);
    color: var(--red);
}

/* Desktop hover */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile menu + dropdowns */
@media (max-width: 1024px) {
    .nav {
        position: relative;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: #050505;
        border: 1px solid var(--line);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        box-shadow: 0 20px 40px rgba(0,0,0,.45);
    }

    .navlinks.active {
        display: flex;
    }

    .navlinks > a,
    .dropdown-toggle {
        display: block;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,.08);
        background: #0d0d0f;
        margin-top: 6px;
        padding: 6px 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 11px 14px;
        font-size: 12px;
    }
}



/* ---------- Hero Slider Image Fix ---------- */
.hero-slider .hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.hero-slider .hero-content {
    width: 52%;
    max-width: 680px;
}

.hero-visual {
    position: relative;
    z-index: 5;
    width: 50%;
    height: 430px;
    max-width: 760px;
    margin-left: auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 40px rgba(229,9,20,.12);
    background: #050505;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-slider .hero-inner {
        display: block;
    }

    .hero-slider .hero-content {
        width: 100%;
    }

    .hero-visual {
        display: none;
    }
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229,9,20,0.30);
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block !important;
        position: relative;
        z-index: 10000;
    }

    .nav {
        position: relative;
    }

    .navlinks {
        display: none !important;
    }

    .navlinks.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: #050505;
        border: 1px solid var(--line);
        padding: 18px;
        z-index: 9999;
    }
}