:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-600: #2563eb;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --secondary-500: #f59e0b;
    --secondary-600: #d97706;
    
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --dark-bg: #0f172a;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-light-gray { color: #cbd5e1; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-bg); }
.bg-primary { background-color: var(--primary-600); }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.875rem;
    color: var(--primary-900);
}

h3 {
    font-size: 1.25rem;
}

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

.text-gradient {
    background: linear-gradient(to right, var(--primary-600), var(--secondary-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-800);
}

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

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

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-900);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* HEADER & NAV */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    padding: 2rem 0;
}

.nav-menu.active {
    left: 0;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-link.active, .nav-link:hover {
    color: var(--primary-600);
}

.mobile-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-dark);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(30, 64, 175, 0.8));
    z-index: -1;
}

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

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.hero p {
    color: #e2e8f0;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* SECTIONS GENERAL */
.section {
    padding: 4rem 0;
}

/* CARDS */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.feature-card .icon-box {
    background-color: var(--primary-50);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* SPLIT SECTIONS */
.row-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.rounded-img {
    border-radius: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-500);
    font-weight: bold;
}

/* TESTIMONIALS */
.testimonial-card {
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    color: var(--white);
    border: 1px solid #334155;
}

.testimonial-card p {
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-card h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--white);
}

.testimonial-card span {
    font-size: 0.875rem;
    color: var(--secondary-500);
}

/* SERVICES PAGE */
.page-header {
    background-color: var(--primary-50);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.service-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-img img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* CONTACT PAGE */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    padding: 2rem 0;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    font-family: inherit;
}

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

/* LEGAL PAGES */
.legal-content h1 {
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

/* FOOTER */
.footer {
    background-color: var(--dark-bg);
    color: #94a3b8;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

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

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-disclaimer {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: #64748b;
    text-align: justify;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

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

/* --------------------- 
   MEDIA QUERIES (TABLET) 
----------------------- */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: row;
    }
    
    .row-split {
        flex-direction: row;
    }
    
    .service-row {
        flex-direction: row;
    }
    
    .service-row.reverse {
        flex-direction: row-reverse;
    }
    
    .service-img, .service-content {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

/* --------------------- 
   MEDIA QUERIES (DESKTOP) 
----------------------- */
@media (min-width: 1024px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        box-shadow: none;
        padding: 0;
        align-items: center;
        gap: 2rem;
    }

    .nav-list {
        flex-direction: row;
        margin-bottom: 0;
        gap: 2rem;
    }

    .mobile-toggle {
        display: none;
    }
}