/* Ekipni.co - Modern Design System */

/* Font Loading Optimization */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Primary Brand Colors - Blue (oklch based) */
    --primary-50: oklch(0.97 0.015 197.181);
    --primary-100: oklch(0.93 0.025 197.181);
    --primary-200: oklch(0.85 0.04 197.181);
    --primary-300: oklch(0.75 0.055 197.181);
    --primary-400: oklch(0.60 0.065 197.181);
    --primary-500: oklch(0.50 0.075 197.181);
    --primary-600: oklch(0.456427 0.077679 197.181);
    --primary-700: oklch(0.40 0.077 197.181);
    --primary-800: oklch(0.35 0.075 197.181);
    --primary-900: oklch(0.30 0.070 197.181);

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Shadows */
    --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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--primary-50) 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-700);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-600);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(13, 148, 136, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    box-shadow: 0 6px 20px 0 rgba(13, 148, 136, 0.35);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-primary-nav {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600 !important;
    color: white !important;
}

.btn-block {
    width: 100%;
}

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, var(--primary-50) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-mountains-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background-image: url('ekipnico-mountains.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    transition: opacity var(--transition-slow);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-900) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-badge {
    color: var(--gray-500);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge::before {
    content: '✓';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Services Preview */
.services-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(8px);
    border-color: var(--primary-300);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: var(--primary-700);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-50) 0%, white 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px);
    border-color: var(--primary-300);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    color: var(--primary-700);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.feature-highlight {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-300), var(--primary-400), var(--primary-300));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--primary-600);
    color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.quote {
    color: var(--gray-700);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-300);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    font-family: Georgia, serif;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, var(--primary-50) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-direct {
    background: var(--primary-50);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    border: 2px solid var(--primary-200);
}

.contact-direct p {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-700);
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-email:hover {
    color: var(--primary-800);
    transform: translateX(4px);
}

.contact-email i {
    font-size: 1.125rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.benefit i {
    color: var(--success);
    font-size: 1.25rem;
}

.contact-form-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--gray-50);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-600);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    font-weight: bold;
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.success-message p {
    color: var(--gray-600);
    font-size: 1.0625rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--gray-300);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background-image: url('ekipnico-mountains.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--gray-400);
    margin-top: 1rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    position: relative;
    z-index: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.cookie-text p:first-child {
    margin-bottom: 0.5rem;
}

.cookie-text strong {
    color: var(--gray-900);
    font-size: 1.125rem;
}

.cookie-text a {
    color: var(--primary-600);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--primary-700);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        position: static;
    }

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

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-xl);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height var(--transition-slow), opacity var(--transition-slow), padding var(--transition-slow);
        gap: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-links.active {
        max-height: 400px;
        padding: 1.5rem;
        opacity: 1;
    }

    .nav-links a:not(.btn) {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    /* Enhanced Mobile Hero Section */
    .hero {
        padding: 3rem 0 4rem;
        min-height: 85vh;
        display: flex;
        align-items: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 50%, rgba(249, 250, 251, 0.95) 100%);
    }

    .hero-mountains-bg {
        height: 70%;
        opacity: 0.18;
        background-size: cover;
        background-position: center 70%;
        animation: subtleFloat 8s ease-in-out infinite;
    }

    @keyframes subtleFloat {
        0%, 100% {
            transform: translateY(0) scale(1);
        }
        50% {
            transform: translateY(-10px) scale(1.02);
        }
    }

    .hero::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -20%;
        opacity: 0.25;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-text {
        padding: 2rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(16px);
        box-shadow: var(--shadow-2xl);
        border: 1px solid rgba(226, 232, 240, 0.8);
        animation: fadeInUp 0.6s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 1.25rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.65;
        margin-bottom: 2rem;
        color: var(--gray-600);
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-cta {
        gap: 1.25rem;
    }

    .hero-cta .btn-large {
        width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1.0625rem;
        font-weight: 700;
        box-shadow: 0 8px 20px 0 rgba(13, 148, 136, 0.35);
        animation: pulseGlow 2s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 8px 20px 0 rgba(13, 148, 136, 0.35);
        }
        50% {
            box-shadow: 0 10px 25px 0 rgba(13, 148, 136, 0.45);
        }
    }

    .trust-badge {
        font-size: 0.875rem;
        text-align: center;
        padding: 0.5rem;
        background: linear-gradient(135deg, var(--gray-50), white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-200);
    }

    /* Enhanced Mobile Service Cards */
    .services-preview {
        margin-top: 2rem;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
        border: 2px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .service-card:hover {
        transform: translateY(-4px) scale(1.02);
        border-color: var(--primary-400);
        box-shadow: 0 12px 30px -5px rgba(13, 148, 136, 0.3);
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        background: linear-gradient(135deg, var(--primary-200), var(--primary-300));
        box-shadow: var(--shadow-md);
    }

    .service-card h3 {
        font-size: 1.125rem;
        font-weight: 700;
    }

    .service-card p {
        font-size: 0.875rem;
        color: var(--gray-600);
    }

    /* Enhanced Mobile Sections */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.2;
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    /* Enhanced Mobile Feature Cards */
    .features-grid,
    .testimonials-grid,
    .steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature {
        padding: 2rem;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: var(--shadow-md);
    }

    .feature:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        margin-bottom: 1.25rem;
        box-shadow: var(--shadow-md);
    }

    .feature h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .feature-desc {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .feature-highlight {
        margin-top: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    /* Enhanced Mobile Testimonials */
    .testimonial {
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .testimonial:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.15);
    }

    .quote {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Enhanced Mobile Buttons */
    .btn {
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
        box-shadow: var(--shadow-md);
        min-height: 48px;
    }

    .btn:active {
        transform: scale(0.97);
    }

    /* Enhanced Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer::before {
        height: 200px;
        opacity: 0.08;
    }

    /* Enhanced Cookie Banner for Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-actions .btn {
        width: 100%;
        min-height: 48px;
    }

    /* Contact Form Mobile Enhancement */
    .contact-form-container {
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }

    .contact-form h3 {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem;
        border-width: 2px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-600);
        box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
    }
}

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

    /* Ultra-Mobile Hero Optimization */
    .hero {
        min-height: 90vh;
        padding: 2.5rem 0 3rem;
    }

    .hero-mountains-bg {
        height: 65%;
        opacity: 0.15;
        background-position: center 75%;
    }

    .hero-text {
        padding: 1.75rem 1.5rem;
        border-radius: var(--radius-xl);
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-cta .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 6px 18px 0 rgba(13, 148, 136, 0.35);
    }

    .trust-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
    }

    .trust-badge::before {
        width: 18px;
        height: 18px;
        line-height: 18px;
        font-size: 0.6875rem;
    }

    /* Ultra-Mobile Service Cards */
    .services-preview {
        gap: 0.875rem;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.375rem;
        margin: 0 auto;
    }

    .service-card h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.25rem;
    }

    .service-card p {
        font-size: 0.8125rem;
    }

    /* Ultra-Mobile Sections */
    .section-title {
        font-size: 1.625rem;
        line-height: 1.25;
        padding: 0 0.25rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
        line-height: 1.55;
        margin-bottom: 2rem;
        padding: 0 0.25rem;
    }

    /* Ultra-Mobile Feature Cards */
    .feature {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .feature h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .feature-desc {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .feature-highlight {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    /* Ultra-Mobile Steps */
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1.0625rem;
    }

    .step p {
        font-size: 0.875rem;
    }

    /* Ultra-Mobile Testimonials */
    .testimonial {
        padding: 1.75rem 1.5rem;
    }

    .quote {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .quote::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }

    .author-name {
        font-size: 0.9375rem;
    }

    .author-role {
        font-size: 0.8125rem;
    }

    /* Ultra-Mobile Buttons */
    .btn {
        font-size: 0.875rem;
        padding: 0.8125rem 1.5rem;
    }

    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    /* Ultra-Mobile Contact Section */
    .contact-form-container {
        padding: 1.75rem 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.25rem;
    }

    .contact-direct {
        padding: 1.25rem;
    }

    .contact-email {
        font-size: 1.125rem;
    }

    .benefit {
        font-size: 0.9375rem;
        gap: 0.625rem;
    }

    .benefit i {
        font-size: 1.125rem;
    }

    /* Ultra-Mobile Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand p {
        font-size: 0.9375rem;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .footer-column a {
        font-size: 0.9375rem;
    }

    /* Ultra-Mobile Cookie Banner */
    .cookie-banner {
        padding: 0 0.5rem;
    }

    .cookie-content {
        padding: 1.25rem 1rem;
    }

    .cookie-text strong {
        font-size: 1.0625rem;
    }

    .cookie-text p {
        font-size: 0.9375rem;
    }
}

/* Additional Mobile Breakpoint for Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.625rem;
    }

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

    .service-card {
        padding: 1.125rem 1rem;
    }

    .feature {
        padding: 1.5rem 1.25rem;
    }

    .testimonial {
        padding: 1.5rem 1.25rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0 2.5rem;
    }

    .hero-mountains-bg {
        height: 60%;
    }

    .hero-text {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta .btn-large {
        padding: 0.875rem 1.5rem;
    }
}

/* Performance: Reduce animations on lower-end devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-mountains-bg {
        animation: none;
    }

    .hero-text {
        animation: none;
    }

    .hero-cta .btn-large {
        animation: none;
    }
}

