:root {
    --primary-color: #1c382f;
    --secondary-color: #e5c583;
    --dark-color: #121f1a;
    --light-color: #f7f9f8;
    --white-color: #ffffff;
    --text-color: #33423d;
    --gray-color: #8c9c96;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
    --max-width: 1200px;
    --max-width-sm: 800px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

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

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

p {
    margin-bottom: 1.25rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: var(--max-width-sm);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.light-bg {
    background-color: var(--light-color);
}

.black-bg {
    background-color: var(--dark-color);
}

.text-white {
    color: var(--white-color);
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4 {
    color: var(--white-color);
}

.text-center {
    text-center: center;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.btn-primary-dark {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary-dark:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 31, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.burger-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white-color);
    transition: var(--transition);
}

/* Hero */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: contrast(1.1) brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 31, 26, 0.9) 0%, rgba(18, 31, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.tagline {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Grids */
.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Section Header */
.section-header {
    max-width: var(--max-width-sm);
    margin-bottom: 4rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.95;
}

/* Benefit Cards */
.benefit-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 31, 26, 0.08);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Numbers */
.number-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.number-desc {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Pricing Pricing */
.solution-card {
    background-color: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.solution-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(18, 31, 26, 0.06);
}

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

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--gray-color);
}

.pricing-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-list li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 6px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
    color: var(--dark-color);
}

.user-role {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: var(--max-width-sm);
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-toggle {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.faq-item.active .faq-toggle::after {
    content: '−';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: var(--text-color);
}

/* Contacts & Form */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-wrapper {
    margin-top: 1.5rem;
    border-radius: 6px;
    overflow: hidden;
}

.contact-form {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    background-color: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

/* Legal Content */
.legal-navbar {
    position: relative;
    background-color: var(--dark-color);
    margin-bottom: 2rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

.thank-you-main {
    padding: 10rem 0;
}

.success-icon {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white-color);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: 1100;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .cookie-banner {
        left: auto;
        max-width: 450px;
    }
}

.cookie-header h3 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.cookie-body p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-cookie-primary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

.btn-cookie-save {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}

/* Images adjustments */
.rounded {
    border-radius: 6px;
}

.shadow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.img-responsive {
    width: 100%;
    display: block;
    height: auto;
}

/* Responsiveness */
@media (max-width: 991px) {
    .grid-4, .grid-3, .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }
    .nav-menu.active {
        display: flex;
    }
    .burger-btn {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .grid-4, .grid-3, .steps-container {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
}
