:root {
    --color-navy: #0B1A2E;
    --color-electric: #2D6BFF;
    --color-neon: #2EE6A6;
    --color-ash: #A7B0BF;
    --color-white: #FFFFFF;
    --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --shadow-soft: 0 20px 45px rgba(13, 36, 79, 0.25);
    --glass: rgba(11, 26, 46, 0.75);
    --transition: 0.4s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: linear-gradient(160deg, #050c16 0%, var(--color-navy) 55%, #16263e 100%);
    color: var(--color-white);
    line-height: 1.6;
}

a {
    color: var(--color-neon);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus {
    color: var(--color-electric);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(11, 26, 46, 0.85);
    border-bottom: 1px solid rgba(45, 107, 255, 0.25);
}

.nav-toggle {
    display: none;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.branding span {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: var(--color-white);
}

.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--color-ash);
}

.desktop-nav a:hover,
.desktop-nav a:focus {
    color: var(--color-neon);
}

.burger {
    display: none;
    color: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid rgba(46, 230, 166, 0.4);
    padding: 0.6rem 1rem;
    border-radius: 1.5rem;
    letter-spacing: 0.08em;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 22, 0.95);
    display: none;
    padding: 2rem;
}

.nav-toggle:checked ~ .mobile-menu {
    display: block;
}

.mobile-menu-content {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu .close {
    align-self: flex-end;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-neon);
    border: 1px solid rgba(46, 230, 166, 0.4);
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu nav a {
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 500;
}

main {
    padding-top: 0;
}

.section {
    padding: 4.5rem 1.5rem;
}

.section .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    padding-top: 6rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.15;
    margin: 0;
    color: var(--color-white);
}

.hero p {
    max-width: 680px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
}

.keyword-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.keyword-grid span {
    background: rgba(45, 107, 255, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(46, 230, 166, 0.2);
    color: var(--color-neon);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(45, 107, 255, 0.12);
    border: 1px solid rgba(46, 230, 166, 0.2);
    box-shadow: var(--shadow-soft);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
    background: rgba(11, 26, 46, 0.65);
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(45, 107, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-card h3 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--color-neon);
}

.stat-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: rgba(11, 26, 46, 0.6);
    border-radius: 1.5rem;
    border: 1px solid rgba(45, 107, 255, 0.2);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.card h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 1.25rem;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
}

.layout-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.image-frame {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(45, 107, 255, 0.25);
    background: rgba(45, 107, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.process-flow {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.process-step {
    background: rgba(11, 26, 46, 0.6);
    border-radius: 1.5rem;
    border: 1px solid rgba(46, 230, 166, 0.2);
    padding: 2rem;
    position: relative;
}

.process-step span {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    font-weight: 700;
    color: var(--color-neon);
}

.process-step h4 {
    margin-top: 0;
    color: var(--color-white);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
    background: rgba(11, 26, 46, 0.6);
    border-radius: 1.5rem;
    padding: 1.8rem;
    border: 1px solid rgba(45, 107, 255, 0.25);
}

.faq-item h4 {
    margin: 0 0 0.75rem;
    color: var(--color-white);
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
    background: rgba(11, 26, 46, 0.65);
    border-radius: 1.6rem;
    padding: 2.5rem;
    border: 1px solid rgba(46, 230, 166, 0.25);
    box-shadow: var(--shadow-soft);
}

.contact-info {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
    margin: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

form {
    display: grid;
    gap: 1.2rem;
}

form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

input,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(45, 107, 255, 0.35);
    background: rgba(11, 26, 46, 0.45);
    color: var(--color-white);
    font-size: 1rem;
    transition: border var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-neon);
    box-shadow: 0 0 0 3px rgba(46, 230, 166, 0.25);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: 2rem;
    border: none;
    background: linear-gradient(120deg, var(--color-electric), var(--color-neon));
    color: #051021;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(46, 230, 166, 0.35);
}

.footer {
    background: rgba(5, 12, 22, 0.95);
    border-top: 1px solid rgba(45, 107, 255, 0.25);
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-branding img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-branding p {
    margin: 0.4rem 0;
    color: rgba(255, 255, 255, 0.74);
}

.footer-nav h4 {
    margin: 0 0 0.9rem;
    color: var(--color-white);
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 500;
}

.footer-legal {
    border-top: 1px solid rgba(45, 107, 255, 0.2);
    padding: 1.2rem 1.5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    background: rgba(5, 12, 22, 0.95);
    border-radius: 1.2rem;
    padding: 1.6rem;
    border: 1px solid rgba(46, 230, 166, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    z-index: 1200;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-banner button {
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(120deg, var(--color-electric), var(--color-neon));
    color: #051021;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 1.2rem;
    border: 1px solid rgba(45, 107, 255, 0.25);
    background: rgba(11, 26, 46, 0.6);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 1rem 1.2rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(45, 107, 255, 0.15);
}

th {
    color: var(--color-white);
    font-weight: 600;
    background: rgba(45, 107, 255, 0.15);
}

.highlight {
    color: var(--color-neon);
    font-weight: 600;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(45, 107, 255, 0.18);
    border: 1px solid rgba(46, 230, 166, 0.25);
    padding: 0.45rem 0.85rem;
    border-radius: 1rem;
    color: var(--color-neon);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

blockquote {
    margin: 0;
    padding: 1.5rem 2rem;
    background: rgba(45, 107, 255, 0.12);
    border-left: 4px solid var(--color-electric);
    border-radius: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

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

    .burger {
        display: inline-flex;
    }

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

    .header-inner {
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3.5rem 1.2rem;
    }

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

    .contact-panel {
        padding: 2rem 1.5rem;
    }

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

    .cookie-banner {
        width: calc(100% - 2.4rem);
        left: 1.2rem;
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(160deg, #03070d 0%, #0B1A2E 45%, #101d33 100%);
    }

    input,
    textarea {
        background: rgba(5, 12, 22, 0.6);
    }
}