:root {
    --primary-color: #0f172a;
    --primary-soft: #111827;
    --accent-color: #2563eb;
    --accent-color-alt: #7c3aed;
    --accent-soft: rgba(37, 99, 235, 0.14);
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-soft: #e5e7eb;
    --bg-light: #f3f4f6;
    --bg-soft: #f9fafb;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.15);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-pill: 999px;
}



*,
*::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;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-soft);
    font-weight: 700;
}



header {
    z-index: 1000;
}

.navbar {
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}

.navbar-dark .navbar-nav .nav-link {
    color: #cbd5f5;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-left: 0.15rem;
    font-size: 0.95rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
    background: rgba(15, 23, 42, 0.6);
}

.navbar-dark .navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-alt));
    color: #ffffff;
}



.hero-section {
    position: relative;
    padding: 170px 0 140px;
    color: #ffffff;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.4), transparent 55%),
        #020617;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    z-index: 1;
    filter: saturate(1.1);
}

.hero-title {
    font-size: clamp(2.3rem, 3.1vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.1rem;
    letter-spacing: 0.03em;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(226, 232, 240, 0.9);
}



.section-header h2 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
}

.section-header p {
    max-width: 640px;
    margin: 0.5rem auto 0;
}

.section-bg {
    background: var(--bg-soft);
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #020617;
    color: #e5e7eb;
    padding: 0.85rem 0;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.5);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1100;
    font-size: 0.9rem;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner p {
    margin-bottom: 0;
    color: #e5e7eb;
}

.cookie-banner a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #bfdbfe;
}



.btn-accent {
    border-radius: var(--radius-pill);
    border: none;
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-alt));
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-accent:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.45);
}

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



.benefit-item {
    padding: 1rem 0.2rem;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-right: 0.9rem;
    background: var(--accent-soft);
    color: var(--accent-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    font-size: 0.92rem;
}



.stat-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.35rem;
}

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



.article-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

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



.contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.contact-form .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-soft);
}

.contact-form .form-control {
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
    background-color: #ffffff;
}

.contact-info {
    font-size: 0.95rem;
}

.contact-info span,
.contact-info a {
    color: var(--text-main);
}

.contact-info .material-icons-outlined {
    color: var(--accent-color);
}

.contact-email {
    color: var(--accent-color);
}

.contact-email:hover {
    color: var(--accent-color-alt);
}



.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.14), transparent 55%),
        var(--bg-soft);
}

.thank-you-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem 2.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.thank-you-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-color);
    font-size: 2.8rem;
}

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

.thank-you-message {
    font-size: 0.98rem;
    max-width: 640px;
    margin: 0.75rem auto;
}

.thank-you-submessage {
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0.25rem auto 0;
}



footer.bg-dark {
    background: #020617 !important;
    color: #e5e7eb;
}

footer h5,
footer h6 {
    color: #f9fafb;
}

footer a {
    color: #cbd5f5;
    font-size: 0.92rem;
}

footer a:hover {
    color: #e5e7eb;
}



.mt-5 {
    margin-top: 3rem !important;
}



@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .navbar-collapse {
        background: rgba(15, 23, 42, 0.96);
        border-radius: 0 0 16px 16px;
        padding: 0.4rem 0.4rem 0.8rem;
        margin-top: 0.4rem;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.5rem 0.9rem;
        margin: 0.2rem 0;
    }

    .hero-section {
        padding: 140px 0 110px;
    }

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

@media (max-width: 575.98px) {
    .thank-you-title {
        font-size: 1.7rem;
    }

    .thank-you-message,
    .thank-you-submessage {
        font-size: 0.93rem;
    }

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