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

:root {
    --bg-main: #0b0b0c;
    --bg-dark: #090909;
    --bg-card: #151518;
    --border: #242428;
    --text-main: #ffffff;
    --text-muted: #b8b8b8;
    --brand-red: #d90429;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

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

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;

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

    padding: 0 25px;

    background: rgba(11, 11, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f1f22;

    z-index: 999;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a,
.dropdown {
    color: var(--text-main);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.menu a:hover,
.dropdown:hover {
    color: var(--brand-red);
}

/* DESKTOP DROPDOWN */

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    right: 0;

    min-width: 180px;

    background: rgba(15, 15, 17, 0.98);
    border: 1px solid var(--border);
    border-radius: 16px;

    padding: 12px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: rgba(217, 4, 41, 0.12);
}

/* MOBILE MENU */

.mobile-menu-button {
    width: 42px;
    height: 42px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    cursor: pointer;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);

    transition: 0.3s;
}

.mobile-menu-button:hover {
    border-color: rgba(217, 4, 41, 0.5);
}

.mobile-menu-button span {
    width: 18px;
    height: 2px;

    background: var(--text-main);
    border-radius: 10px;

    transition: 0.3s;
}

.mobile-menu-button.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.mobile-menu-button.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;

    width: 100%;
    height: calc(100vh - 80px);

    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(12px);

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

    gap: 28px;

    z-index: 998;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: var(--brand-red);
}

/* ANNIVERSARY BADGE */

.anniversary-badge {
    position: absolute;

    top: 65px;
    right: 70px;

    z-index: 20;

    transform: rotate(14deg);
    animation: floatingBadge 6s ease-in-out infinite;
}

.anniversary-badge img {
    width: 195px;
    height: auto;

    display: block;

    filter: drop-shadow(0 0 25px rgba(217, 4, 41, 0.18));
}

@keyframes floatingBadge {
    0% {
        transform: rotate(14deg) translateY(0);
    }

    50% {
        transform: rotate(14deg) translateY(-10px);
    }

    100% {
        transform: rotate(14deg) translateY(0);
    }
}

/* GENERIC */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 28px;

    border-radius: 14px;

    text-decoration: none;
    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    background: var(--brand-red);
    color: var(--text-main);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #2a2a2f;
    color: var(--text-main);
}

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

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

.section-title span,
.difference-label,
.ai-label,
.contact-label {
    display: inline-block;

    color: var(--brand-red);

    text-transform: uppercase;
    letter-spacing: 2px;

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

    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 48px;
    line-height: 1.2;

    max-width: 800px;

    margin: 20px auto 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO */

.hero {
    min-height: 100vh;

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

    padding: 140px 80px 80px;

    gap: 60px;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(217, 4, 41, 0.15);

    border-radius: 50%;

    top: -150px;
    right: -150px;

    filter: blur(100px);

    z-index: 0;
}

.hero-content {
    flex: 1;

    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;

    line-height: 1.1;

    max-width: 750px;

    margin-bottom: 25px;
}

.hero-content p {
    color: var(--text-muted);

    font-size: 18px;

    line-height: 1.7;

    max-width: 650px;

    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;

    display: flex;

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

    position: relative;

    z-index: 2;
}

.hero-visual::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    background: radial-gradient(
        circle,
        rgba(217, 4, 41, 0.22) 0%,
        rgba(217, 4, 41, 0) 70%
    );

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 0;

    filter: blur(40px);
}

.hero-phone-image {
    width: auto;

    max-width: 290px;
    max-height: 500px;

    display: block;

    position: relative;
    z-index: 2;

    animation: floatingPhone 5s ease-in-out infinite;

    filter: drop-shadow(0 0 40px rgba(217, 4, 41, 0.12));
}

@keyframes floatingPhone {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }

}

/* HERO RESPONSIVE */

@media (max-width: 1100px) {

    .hero {
        flex-direction: column;

        text-align: center;

        padding: 140px 40px 80px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;

        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

}

@media (max-width: 700px) {

    .hero {
        padding: 130px 25px 70px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-phone-image {
        max-width: 220px;
        max-height: 380px;
    }

}
/* SERVICES */

.services,
.featured-services,
.clients-section {
    padding: 120px 80px;
    position: relative;
}

.services-grid,
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card,
.client-card,
.featured-card,
.difference-box,
.stat-box {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid var(--border);
    border-radius: 28px;

    transition: 0.3s;
}

.service-card,
.client-card {
    padding: 40px;
}

.service-card {
    background: var(--bg-card);
}

.service-card:hover,
.client-card:hover,
.featured-card:hover,
.difference-box:hover,
.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 4, 41, 0.4);
    box-shadow: 0 0 35px rgba(217, 4, 41, 0.08);
}

.service-icon,
.client-icon {
    color: var(--text-main);
    font-size: 44px;
    margin-bottom: 25px;
}

.service-card h3,
.client-card h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.client-card {
    text-align: center;
}

.client-card h3 {
    margin-bottom: 0;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* DIFFERENCE */

.difference {
    padding: 140px 80px;
    position: relative;
    overflow: hidden;
}

.difference::before {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(217, 4, 41, 0.08);
    border-radius: 50%;

    top: -150px;
    left: -150px;

    filter: blur(120px);
}

.difference-header {
    text-align: center;

    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 80px;
}

.difference-header h2 {
    font-size: 64px;
    line-height: 1.1;

    margin-bottom: 30px;
}

.difference-header p {
    color: var(--text-muted);

    font-size: 20px;
    line-height: 1.8;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

    position: relative;
    z-index: 2;
}

.difference-box {
    padding: 45px;
}

.difference-icon {
    width: 72px;
    height: 72px;

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

    border-radius: 18px;

    background: rgba(217, 4, 41, 0.08);

    margin-bottom: 30px;
}

.difference-icon i {
    color: var(--text-main);
    font-size: 32px;
}

.difference-box h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.difference-box p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

/* STATS */

.stats-section {
    padding: 40px 80px 120px;
}

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

.stat-box {
    padding: 45px 30px;
    text-align: center;
}

.stat-box h2 {
    color: var(--text-main);
    font-size: 54px;
    margin-bottom: 14px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.5;
}

/* FEATURED SERVICES */

.featured-services::before {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(217, 4, 41, 0.06);
    border-radius: 50%;

    right: -150px;
    bottom: -100px;

    filter: blur(120px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    position: relative;
    z-index: 2;
}

.featured-card {
    padding: 45px;
    overflow: hidden;
}

.featured-card span {
    display: inline-block;

    color: var(--brand-red);

    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;

    margin-bottom: 25px;
}

.featured-card h3 {
    font-size: 30px;
    line-height: 1.2;

    max-width: 450px;

    margin-bottom: 20px;
}

.featured-card p {
    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.7;
}

/* AI SECTION */

.ai-section {
    padding: 140px 80px;

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

    gap: 80px;

    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(217, 4, 41, 0.08);
    border-radius: 50%;

    left: -200px;
    top: 50px;

    filter: blur(140px);
}

.ai-content,
.ai-visual {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ai-content h2 {
    font-size: 56px;
    line-height: 1.1;

    max-width: 700px;

    margin-bottom: 30px;
}

.ai-content p {
    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.8;

    max-width: 650px;

    margin-bottom: 45px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-bottom: 45px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--text-main);
    font-size: 17px;
}

.ai-feature span {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 20px;
}

.ai-visual {
    display: flex;
    justify-content: center;
}

.ai-window {
    width: 100%;
    max-width: 520px;

    background: #131316;
    border: 1px solid var(--border);
    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 0 50px rgba(217, 4, 41, 0.08);
}

.ai-window-top {
    height: 60px;

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

    padding: 0 20px;

    border-bottom: 1px solid var(--border);
}

.ai-window-top div {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #2c2c31;
}

.ai-messages {
    padding: 35px;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ai-message {
    max-width: 85%;

    padding: 18px 22px;

    border-radius: 20px;

    font-size: 15px;
    line-height: 1.7;
}

.ai-message.bot {
    align-self: flex-start;

    background: #1b1b20;
    border: 1px solid #2a2a2f;
}

.ai-message.user {
    align-self: flex-end;
    background: var(--brand-red);
}

/* CONTACT */

.contact-section {
    padding: 140px 80px;

    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(217, 4, 41, 0.08);
    border-radius: 50%;

    right: -200px;
    top: -100px;

    filter: blur(140px);
}

.contact-box {
    max-width: 1000px;

    margin: 0 auto;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0.02)
    );

    border: 1px solid var(--border);
    border-radius: 32px;

    padding: 70px;

    text-align: center;

    position: relative;
    z-index: 2;
}

.contact-box h2 {
    font-size: 58px;
    margin-bottom: 25px;
}

.contact-box p {
    color: var(--text-muted);

    font-size: 18px;
    line-height: 1.8;

    max-width: 700px;

    margin: 0 auto 45px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    justify-content: center;
    gap: 30px;
}

.contact-info div {
    min-height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.contact-info strong {
    display: block;

    font-size: 18px;

    margin-bottom: 12px;
}

.contact-info span,
.contact-info a {
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

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

.cnmc-badge {
    margin-top: 70px;
    text-align: center;
    opacity: 0.9;
}

.cnmc-badge img {
    width: 450px;
    max-width: 100%;
    height: auto;

    display: block;

    margin: 0 auto;
}

/* FOOTER */

.footer {
    padding: 70px 80px 40px;

    border-top: 1px solid #1f1f22;

    background: var(--bg-dark);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.footer-logo {
    height: 42px;
    width: auto;

    display: block;

    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.7;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;

    border-top: 1px solid #1f1f22;

    color: #777;
    font-size: 14px;
    text-align: center;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 30px 80px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid,
    .clients-grid,
    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px;
    }

    .ai-content h2 {
        font-size: 42px;
    }

    .ai-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ai-features {
        align-items: center;
    }

}

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .difference-header h2 {
        font-size: 46px;
    }

    .stats-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .stat-box h2 {
        font-size: 42px;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .contact-info div {
        min-height: 150px;
        padding: 22px;
    }

    .anniversary-badge {
        top: 58px;
        right: 20px;
    }

    .anniversary-badge img {
        width: 135px;
    }

}

@media (min-width: 901px) {

    .mobile-menu {
        display: none;
    }

}

@media (max-width: 700px) {

    .services,
    .featured-services,
    .clients-section,
    .difference,
    .ai-section,
    .contact-section {
        padding: 100px 25px;
    }

    .stats-section {
        padding: 30px 25px 100px;
    }

    .services-grid,
    .clients-grid,
    .difference-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .contact-box h2,
    .section-title h2,
    .difference-header h2,
    .ai-content h2 {
        font-size: 34px;
    }

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

    .hero-content p,
    .contact-box p,
    .difference-header p,
    .ai-content p {
        font-size: 16px;
    }

    .featured-card,
    .difference-box,
    .service-card,
    .client-card {
        padding: 35px;
    }

    .featured-card h3 {
        font-size: 24px;
    }

    .ai-window {
        max-width: 100%;
    }

    .ai-messages {
        padding: 25px;
    }

    .cnmc-badge img {
        width: 300px;
    }

    .footer {
        padding: 60px 25px 30px;
    }

    .footer-top {
        flex-direction: column;
    }

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

}

@media (max-width: 420px) {

    .hero-phone-image {
        max-width: 340px;
    }

    .anniversary-badge img {
        width: 120px;
    }

    .mobile-menu a {
        font-size: 23px;
    }

}
/* LEGAL PAGE */

.legal-hero {
    padding: 180px 80px 100px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.legal-hero::before {
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(217, 4, 41, 0.08);

    border-radius: 50%;

    top: -150px;
    right: -150px;

    filter: blur(120px);
}

.legal-label {
    display: inline-block;

    color: #d90429;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 18px;

    margin-bottom: 25px;

    position: relative;
    z-index: 2;
}

.legal-hero h1 {
    font-size: 72px;

    margin-bottom: 25px;

    position: relative;
    z-index: 2;
}

.legal-hero p {
    max-width: 800px;

    margin: 0 auto;

    color: #b8b8b8;

    font-size: 20px;

    line-height: 1.8;

    position: relative;
    z-index: 2;
}

/* LEGAL CONTENT */

.legal-content {
    padding: 0 80px 120px;

    max-width: 1200px;

    margin: 0 auto;
}

.legal-card {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border: 1px solid #242428;

    border-radius: 32px;

    padding: 60px;

    margin-bottom: 40px;
}

.legal-card h2 {
    font-size: 38px;

    margin-bottom: 30px;
}

.legal-card p {
    color: #b8b8b8;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 25px;
}

.legal-card ul {
    padding-left: 20px;
}

.legal-card li {
    color: #b8b8b8;

    margin-bottom: 14px;

    line-height: 1.7;
}

.legal-card strong {
    color: #ffffff;
}

/* RESPONSIVE LEGAL */

@media (max-width: 900px) {

    .legal-hero h1 {
        font-size: 52px;
    }

}

@media (max-width: 700px) {

    .legal-hero {
        padding: 160px 25px 80px;
    }

    .legal-content {
        padding: 0 25px 100px;
    }

    .legal-card {
        padding: 35px 25px;
    }

    .legal-hero h1 {
        font-size: 40px;
    }

    .legal-hero p {
        font-size: 17px;
    }

    .legal-card h2 {
        font-size: 28px;
    }

}
/* SLA PAGE */

.sla-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.sla-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.sla-table th,
.sla-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #242428;
}

.sla-table th {
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sla-table td {
    color: #b8b8b8;
    font-size: 16px;
}

.sla-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.legal-download {
    text-align: center;
    margin-top: 50px;
}