:root {
    --primary: #F4511E;
    --secondary: #FF7043;
    --dark: #0F0F0F;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #E0E0E0;
    --text: #1C1C1C;
    --muted: #4F4F4F;
    --radius: 12px;
    --transition: all 0.3s ease;
    --max-width: 1140px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-toggle {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.desktop-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

.desktop-nav a {
    font-weight: 600;
    color: var(--muted);
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--primary);
}

.nav-toggle-label {
    display: none;
    width: 32px;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    height: 3px;
    background: var(--dark);
    margin-bottom: 6px;
    border-radius: 2px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.92);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

#nav-toggle:checked + .site-header .mobile-nav-overlay {
    visibility: visible;
    opacity: 1;
}

main {
    overflow-x: hidden;
}

section {
    padding: 80px 0;
}

.hero {
    background: linear-gradient(120deg, rgba(244, 81, 30, 0.12), rgba(0, 0, 0, 0.08));
    padding-top: 110px;
}

.inner-hero {
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 18px;
}

.hero-content p {
    color: var(--muted);
    margin-bottom: 24px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.metric-label {
    display: block;
    font-size: 0.95rem;
    color: var(--muted);
}

.hero-image {
    position: relative;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: #121212;
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.82);
}

.section-dark h2 {
    color: var(--white);
}

.section-accent {
    background: rgba(244, 81, 30, 0.12);
}

h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-dark h3 {
    color: var(--white);
}

.card-grid {
    display: grid;
    gap: 28px;
}

.card-grid.two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-grid.three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: var(--light);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: 0 18px 35px rgba(15, 15, 15, 0.08);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
}

.section-dark .card {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

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

.step {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.section-dark .step {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-light .step {
    background: var(--light);
    color: var(--text);
}

.highlight-list {
    list-style: none;
    margin-top: 16px;
}

.highlight-list li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 12px;
    color: var(--muted);
}

.highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.image-frame {
    background: var(--light);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(15, 15, 15, 0.08);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.timeline-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray);
}

.section-dark .timeline-item {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

table th,
table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
    color: var(--muted);
}

table th {
    background: var(--light);
    color: var(--dark);
}

.section-dark table {
    background: rgba(255, 255, 255, 0.04);
}

.section-dark table th,
.section-dark table td {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: center;
}

.contact-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-weight: 600;
    color: var(--dark);
}

input,
textarea {
    border: 1px solid var(--gray);
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(244, 81, 30, 0.18);
}

textarea {
    resize: vertical;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--secondary);
}

.form-feedback {
    background: rgba(244, 81, 30, 0.12);
    color: var(--dark);
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.site-footer {
    background: #0B0B0B;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 12px;
}

.footer-nav {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-nav a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: calc(100% - 40px);
    z-index: 2000;
    transition: var(--transition);
}

.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 20px);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.legal h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.legal h2 {
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal p,
.legal ul {
    color: var(--muted);
    margin-bottom: 12px;
}

.legal ul {
    padding-left: 18px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact-info-card {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(15, 15, 15, 0.08);
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-layout,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 90px;
    }
}

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

    .nav-toggle-label {
        display: block;
    }

    section {
        padding: 64px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    table th,
    table td {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content p {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .timeline-item,
    .card,
    .contact-info-card {
        padding: 20px;
    }

    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 24px);
    }
}