:root {
    --bg-main: #040617;
    --bg-alt: #050b1f;
    --bg-soft: #0b1024;
    --card-bg: #050816;
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.12);
    --accent-strong: #fb923c;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.28);
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(30, 64, 175, 0.38), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.95), #020617);
    color: var(--text-main);
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
    color: #f9fafb;
}

p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover {
    text-decoration: underline;
}



header {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    padding: 0.55rem 0.9rem;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease-out;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #f9fafb;
}

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: saturate(1.05) brightness(0.9) contrast(1.02);
    transform: scale(1.03);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 4rem;

    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), transparent 60%),
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.55),
            rgba(15, 23, 42, 0.78));
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.1rem);
    margin-bottom: 1.3rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.1rem);
    margin-bottom: 1.3rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-muted);
}



section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.section-bg {
    background:
        radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), transparent 55%),
        linear-gradient(to bottom, #020617, #020617);
}

.section-header h2 {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-header p {
    color: var(--text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -100%;
    background: rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    padding: 0.9rem 0;
    font-size: 0.9rem;
    z-index: 1040;
    transition: bottom 0.25s ease-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.cookie-banner a {
    color: var(--accent-strong);
    font-weight: 500;
}



.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border: none;
    color: #020617;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    padding: 0.7rem 1.7rem;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        filter 0.16s ease;
}

.btn-accent:hover {
    color: #020617;
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.55);
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.95);
}



.benefit-item {
    padding: 0.6rem 0.4rem;
}

.benefit-icon {
    flex-shrink: 0;
    font-size: 1.9rem;
    margin-right: 0.9rem;
    color: var(--accent-strong);
}

.benefit-item h5 {
    margin-bottom: 0.2rem;
    font-size: 1.02rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}



.stat-card {
    background: radial-gradient(circle at top, var(--accent-soft), var(--bg-soft));
    border-radius: 1.2rem;
    padding: 1.9rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    min-height: 100%;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fefce8;
    margin-bottom: 0.55rem;
}

.stat-text {
    font-size: 0.96rem;
    color: var(--text-muted);
}



.article-content h4 {
    font-size: 1.28rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    font-size: 0.97rem;
}



.contact-form {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.23), #020617);
    border-radius: 1.4rem;
    padding: 2.2rem 1.9rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.contact-form .form-label {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-form .form-control {
    background-color: var(--bg-main);
    border-radius: 999px;
    border: 1px solid rgba(51, 65, 85, 0.95);
    color: #f9fafb;
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    transition:
        border-color 0.16s ease,
        box-shadow 0.16s ease,
        background-color 0.16s ease;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
    border-color: var(--accent);
    background-color: #020617;
}

.contact-form .form-control::placeholder {
    color: #6b7280;
}



.contact-info span,
.contact-info a {
    font-size: 0.96rem;
}

.contact-info a {
    color: #e5e7eb;
    transition: color 0.16s ease;
}

.contact-info a:hover {
    color: var(--accent-strong);
}



main {
    padding-top: 6.3rem;
    padding-bottom: 4.5rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.18rem;
}

.content-section p {
    font-size: 0.96rem;
    color: var(--text-main);
}



.thank-you-section {
    min-height: 100vh;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.24), rgba(15, 23, 42, 0.98));
    border-radius: 1.6rem;
    padding: 3.1rem 2.6rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.thank-you-icon span {
    font-size: 3.1rem;
    color: var(--accent-strong);
}

.thank-you-title {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    color: var(--text-main);
    font-size: 1rem;
}

.thank-you-submessage {
    color: var(--text-muted);
    font-size: 0.96rem;
}



footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.9rem;
}

footer h5 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

footer h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
}

footer p {
    color: var(--text-muted);
}

footer a {
    color: #e5e7eb;
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--accent-strong);
}



@media (max-width: 991.98px) {
    .hero-overlay {
        padding-top: 6.3rem;
        padding-bottom: 3.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .thank-you-card {
        padding: 2.4rem 1.9rem;
    }

    .contact-form {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    section {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .thank-you-section {
        padding-top: 6.8rem;
    }

    .thank-you-card {
        padding: 2.1rem 1.6rem;
    }
}