/* JANNIK HANSEN - ULTRA PREMIUM LIGHT & BRIGHT WEBSITE */
/* Clean, Modern, Sophisticated - Apple meets Luxury */

:root {
    --primary-blue: #0066CC;
    --accent-gold: #FFB800;
    --bright-coral: #FF6B6B;
    --fresh-teal: #4ECDC4;
    --soft-purple: #9B59B6;
    --pure-white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-dark: #212529;
    --text-gray: #6C757D;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-sunny: linear-gradient(135deg, #FFB800 0%, #FF6B6B 100%);
    --gradient-ocean: linear-gradient(135deg, #0066CC 0%, #4ECDC4 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

/* PREMIUM LOADER */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--medium-gray);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ULTRA PREMIUM NAVIGATION - LIGHT */
.nav-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--medium-gray);
}

.nav-premium.scrolled {
    padding: 15px 50px;
    box-shadow: 0 5px 30px var(--shadow-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-ocean);
    color: var(--pure-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.3);
}

/* HERO SECTION - BRIGHT & BOLD */
.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F7FA 0%, #C3CFE2 100%);
    padding-top: 100px;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 102, 204, 0.1) 35px, rgba(0, 102, 204, 0.1) 70px);
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-sunny);
    opacity: 0.1;
    animation: float-shape 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    right: 10%;
    animation-delay: 3s;
    background: var(--gradient-ocean);
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    animation-delay: 7s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 30px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title .gradient-text {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--text-gray);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-top: 10px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-premium {
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 30px;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: var(--pure-white);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: var(--pure-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

/* ABOUT SECTION - CLEAN & MODERN */
.about-premium {
    padding: 120px 50px;
    background: var(--pure-white);
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-light);
    position: relative;
    z-index: 2;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-sunny);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
}

.about-content {
    animation: fadeInRight 1s ease-out;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding: 6px 15px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: var(--pure-white);
    box-shadow: 0 15px 35px var(--shadow-light);
    border-color: var(--primary-blue);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.highlight-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ACHIEVEMENTS TIMELINE - BRIGHT VERSION */
.achievements-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

.timeline {
    max-width: 1200px;
    margin: 80px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-ocean);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 60px;
    position: relative;
    margin-bottom: 80px;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
    margin-left: 50%;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.timeline-content {
    background: var(--pure-white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
    background: var(--gradient-ocean);
    color: var(--pure-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -80px;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border: 4px solid var(--pure-white);
    border-radius: 50%;
    right: -68px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -68px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* PROJECTS SHOWCASE */
.projects-showcase {
    padding: 120px 50px;
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--light-gray) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--pure-white);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-ocean);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: transparent;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.project-status {
    background: var(--gradient-ocean);
    color: var(--pure-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.project-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.tech-badge:hover {
    background: var(--primary-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
}

/* SERVICES/EXPERTISE SECTION - CLEAN CARDS */
.services-premium {
    padding: 120px 50px;
    background: var(--pure-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 80px auto 0;
}

.service-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ocean);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-light);
    border-color: transparent;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 25px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.service-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
}

/* TESTIMONIALS - LIGHT & CLEAN */
.testimonials-premium {
    padding: 120px 50px;
    background: var(--light-gray);
    position: relative;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    text-align: center;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
    color: var(--text-gray);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-blue);
    position: absolute;
    top: -30px;
    left: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary-blue);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-gray);
}

/* CTA SECTION - BRIGHT & ENGAGING */
.cta-premium {
    padding: 120px 50px;
    background: var(--gradient-ocean);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--pure-white);
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-premium .btn-premium {
    background: var(--pure-white);
    color: var(--primary-blue);
}

.cta-premium .btn-premium:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* FOOTER - CLEAN & MINIMAL */
.footer-premium {
    padding: 60px 50px 30px;
    background: var(--pure-white);
    border-top: 1px solid var(--medium-gray);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient-ocean);
    color: var(--pure-white);
    transform: translateY(-5px);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 10001;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 80px;
    }
    
    .timeline-dot {
        left: 22px !important;
        right: auto !important;
    }
    
    .timeline-year {
        right: auto !important;
        left: 80px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-premium {
        padding: 15px 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--medium-gray);
        box-shadow: 0 10px 30px var(--shadow-light);
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}