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

:root {
    --primary-color: #1f2937;
    --primary-dark: #0b1120;
    --accent-color: #f97316;
    --accent-soft: #fff7ed;
    --text-color: #111827;
    --muted-color: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --bg-section: #f3f4f6;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    scroll-behavior: smooth;
}

 


header.fixed-top {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

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

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
    color: #e5e7eb;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
}

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

.navbar-toggler {
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    border-color: rgba(249, 115, 22, 0.6);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.6);
}



.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: brightness(0.6) saturate(1.1);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    padding: 120px 0 110px;
    width: 100%;
    background: radial-gradient(circle at 0 0, rgba(249, 115, 22, 0.12), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.1), transparent 55%),
                linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.85));
    color: #f9fafb;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 40rem;
    margin: 0 auto;
    color: #e5e7eb;
}



section {
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--muted-color);
    max-width: 34rem;
    margin: 0.5rem auto 0;
}

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



p {
    line-height: 1.7;
    color: var(--muted-color);
}



.benefit-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.1rem 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    background: #fefce8;
}

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



.stat-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
    height: 100%;
}

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

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



.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.article-content p + p {
    margin-top: 0.4rem;
}



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

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

.form-control {
    border-radius: 999px;
    border-color: var(--border-color);
    font-size: 0.95rem;
    padding: 0.55rem 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}



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

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

.contact-email {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.contact-email:hover {
    color: #ea580c;
    opacity: 0.9;
}



.btn-accent {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 999px;
    border: none;
    padding: 0.55rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(249, 115, 22, 0.6);
    filter: brightness(1.03);
    color: #020617;
}

.btn-accent:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.5);
}



.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -160px;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 -12px 28px rgba(15, 23, 42, 0.7);
    transform: translateY(0);
    transition: bottom var(--transition-normal);
}

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

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.cookie-banner a {
    color: #f97316;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}



.thank-you-section {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
    background: radial-gradient(circle at top left, #fef3c7, transparent 55%),
                radial-gradient(circle at bottom right, #e0f2fe, transparent 55%),
                #f9fafb;
}

.thank-you-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 2.6rem 2.4rem 2.4rem;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

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

.thank-you-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: var(--primary-color);
}

.thank-you-message {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.thank-you-submessage {
    font-size: 0.96rem;
    color: var(--muted-color);
    max-width: 34rem;
    margin: 0.2rem auto 0;
}

.thank-you-actions .btn-accent {
    padding-inline: 1.8rem;
}



footer {
    background: #020617;
    color: #e5e7eb;
    font-size: 0.92rem;
}

footer h5,
footer h6 {
    font-weight: 600;
    margin-bottom: 0.6rem;
}

footer p {
    color: #cbd5f5;
    margin-bottom: 0.4rem;
}

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

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

footer hr {
    border-color: rgba(148, 163, 184, 0.6);
}



img.rounded {
    border-radius: var(--radius-md) !important;
}



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



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

    .hero-overlay {
        padding: 110px 0 80px;
        text-align: center;
    }

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

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

    .thank-you-card {
        padding: 2.2rem 1.7rem 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .thank-you-section {
        padding: 110px 0 70px;
    }

    .thank-you-title {
        font-size: 1.7rem;
    }

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

    .contact-form {
        padding: 1.6rem 1.3rem;
    }
}
