/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Desert Color Palette */
    --sand-light: #f5e6d3;
    --sand-medium: #e8d4bb;
    --sand-dark: #d4b896;
    --earth-light: #c19a6b;
    --earth-medium: #a67c52;
    --earth-dark: #8b6f47;
    --accent-warm: #d97d54;
    --accent-gold: #c9a961;
    --white: #ffffff;
    --black: #2d2520;
    --gray-light: #f8f4ef;
    --gray-medium: #8b7f73;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-medium) 100%);
    color: var(--white);
    padding: var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--earth-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--earth-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-warm);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--earth-dark);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 125, 84, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--earth-dark);
}

.btn-nav {
    background: var(--earth-medium);
    color: var(--white);
    padding: 10px 24px;
}

.btn-nav:hover {
    background: var(--earth-dark);
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 125, 84, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    color: var(--white);
    padding: 16px 50px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    margin: var(--spacing-md) auto 0;
    display: block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 125, 84, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

.dune-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--sand-medium) 0%, transparent 100%);
    clip-path: ellipse(100% 100% at 50% 100%);
    animation: dune-float 8s ease-in-out infinite;
    opacity: 0.4;
}

.dune-wave-2 {
    animation: dune-float 10s ease-in-out infinite reverse;
    height: 250px;
    opacity: 0.3;
}

@keyframes dune-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease;
}

.hero-image {
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    object-fit: cover;
    height: 450px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Section Styles ===== */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: var(--spacing-lg);
}

/* ===== Services Section ===== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--sand-medium);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ===== Benefits Section ===== */
.benefits {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--sand-light) 100%);
}

.benefits-grid {
    display: grid;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.benefit-item:nth-child(even) .benefit-image {
    order: 2;
}

.benefit-image img {
    border-radius: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.benefit-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== Contact Form Section ===== */
.contact-form {
    background: var(--white);
}

.form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--earth-dark);
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--sand-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 3px rgba(217, 125, 84, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-error {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    min-height: 20px;
}

.form-input.error {
    border-color: #d32f2f;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label .link {
    color: var(--accent-warm);
    text-decoration: underline;
}

.checkbox-label .link:hover {
    color: var(--earth-dark);
}

.form-success {
    display: none;
    background: #4caf50;
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    margin-top: var(--spacing-md);
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* ===== Contact Info Section ===== */
.contact-info {
    background: linear-gradient(135deg, var(--sand-medium) 0%, var(--sand-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.contact-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
}

.contact-icon svg {
    width: 35px;
    height: 35px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.contact-link {
    color: var(--accent-warm);
    font-weight: 600;
}

.contact-link:hover {
    color: var(--earth-dark);
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--earth-dark) 0%, var(--earth-medium) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    font-size: 0.875rem;
    font-style: italic;
}

/* ===== Process Section ===== */
.process {
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    position: relative;
    padding-left: var(--spacing-md);
}

.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + var(--spacing-lg));
    background: linear-gradient(to bottom, var(--accent-warm), var(--sand-medium));
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(217, 125, 84, 0.3);
}

.process-content {
    flex: 1;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.process-content p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ===== Industries Section ===== */
.industries {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.industry-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--earth-light) 0%, var(--earth-medium) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
}

.industry-icon svg {
    width: 30px;
    height: 30px;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-xs);
}

.industry-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.pricing-card {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    border-color: var(--accent-warm);
    box-shadow: 0 15px 40px rgba(217, 125, 84, 0.3);
    position: relative;
}

.pricing-featured::before {
    content: 'SUOSITUIN';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-gold) 100%);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--earth-dark);
    margin-bottom: var(--spacing-sm);
}

.pricing-badge {
    display: inline-block;
    background: var(--earth-light);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--earth-dark);
    font-family: var(--font-heading);
}

.price-period {
    color: var(--gray-medium);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: var(--gray-medium);
    border-bottom: 1px solid var(--sand-medium);
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    background: var(--sand-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    border-left: 4px solid var(--accent-warm);
}

.pricing-note p {
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.8;
}

/* ===== Statistics Section ===== */
.statistics {
    background: linear-gradient(135deg, var(--earth-medium) 0%, var(--earth-dark) 100%);
    color: var(--white);
}

.statistics .section-title,
.statistics .section-subtitle {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--earth-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 184, 150, 0.2);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-warm);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--gray-medium);
    line-height: 1.8;
    margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .benefit-item,
    .benefit-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .benefit-item:nth-child(even) .benefit-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    
    .process-step::before {
        display: none;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

