:root {
    --color-base-light: #FBF5F3;
    --color-accent-orange: #ED952B;
    --color-deep-oxide: #9B5419;
    --color-obsidian-dark: #5B4012;
    --color-white: #ffffff;
    --color-gray: #6c757d;
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-obsidian-dark);
    background: var(--color-base-light);
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: var(--color-obsidian-dark);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--color-accent-orange);
}

.nav-link {
    color: var(--color-obsidian-dark);
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-accent-orange);
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-orange);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-obsidian-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-deep-oxide);
    max-width: 900px;
    margin: 0 auto;
}

.hero-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(91, 64, 18, 0.15);
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-obsidian-dark);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-deep-oxide);
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--color-deep-oxide);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-accent-orange);
}

.section-analysis img,
.section-hygiene img,
.section-ml-defense img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(91, 64, 18, 0.12);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.tech-item {
    padding: 2rem;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(91, 64, 18, 0.08);
    transition: var(--transition);
    height: 100%;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(237, 149, 43, 0.2);
}

.tech-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--color-accent-orange);
    filter: drop-shadow(4px 4px 0px var(--color-deep-oxide));
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-obsidian-dark);
    margin-bottom: 1rem;
}

.tech-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-deep-oxide);
}

.contact-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    border: 3px solid var(--color-accent-orange);
    box-shadow: 0 10px 30px rgba(91, 64, 18, 0.1);
}

.form-control {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(237, 149, 43, 0.15);
    outline: none;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 20px;
}

.btn-primary {
    background: var(--color-obsidian-dark);
    color: var(--color-accent-orange);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-deep-oxide);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 64, 18, 0.3);
}

.footer a {
    text-decoration: none;
    transition: var(--transition);
}

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

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-obsidian-dark);
    color: var(--color-base-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--color-accent-orange);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--color-accent-orange);
    color: var(--color-obsidian-dark);
}

.btn-cookie-accept:hover {
    background: var(--color-deep-oxide);
    color: var(--color-white);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--color-base-light);
    border: 2px solid var(--color-base-light);
}

.btn-cookie-decline:hover {
    background: var(--color-base-light);
    color: var(--color-obsidian-dark);
}

.about-hero {
    padding: 11rem 0 6rem;
    background: linear-gradient(135deg, rgba(155, 84, 25, 0.1) 0%, rgba(237, 149, 43, 0.05) 100%);
}

.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 20px;
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(91, 64, 18, 0.9) 0%, transparent 100%);
    color: var(--color-base-light);
}

.values-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    box-shadow: 0 15px 40px rgba(237, 149, 43, 0.3);
}

.values-circle i {
    font-size: 4rem;
    color: var(--color-white);
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-obsidian-dark);
    margin-bottom: 1rem;
}

.policy-content {
    padding: 11rem 0 6rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-obsidian-dark);
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-obsidian-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content p,
.policy-content ul li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-deep-oxide);
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 2rem;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(91, 64, 18, 0.15);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--color-white);
}

.thanks-box h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-obsidian-dark);
    margin-bottom: 1rem;
}

.thanks-box p {
    font-size: 1.125rem;
    color: var(--color-deep-oxide);
    margin-bottom: 2rem;
}

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

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

    .tech-item {
        margin-bottom: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

    .section-title {
        font-size: 1.75rem;
    }

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

    .navbar-fixed {
        padding: 0.75rem 0;
    }
}