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

:root {
    /* Colors - Official Shift Color brand colors */
    --primary-color: #F39200;        /* Official orange */
    --primary-dark: #d17a00;         /* Darker orange */
    --secondary-color: #D5085D;      /* Official red/pink */
    --secondary-light: #e33574;      /* Lighter red */
    --accent-color: #4a5568;         /* Gray accent */
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --background: #ffffff;
    --surface: #f7fafc;
    --surface-accent: #fef5e7;       /* Light orange tint */
    --border: #e2e8f0;
    --success-color: #38a169;        /* Green */
    --warning-color: #F39200;        /* Orange */
    --error-color: #D5085D;          /* Red */
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px 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-colored: 0 4px 14px 0 rgb(243 146 0 / 0.15);
    
    /* Gradients with official colors */
    --gradient-primary: linear-gradient(135deg, #F39200 0%, #D5085D 100%);
    --gradient-accent: linear-gradient(135deg, #F39200 0%, #e33574 100%);
    --gradient-warm: linear-gradient(135deg, #fef5e7 0%, #fce7f3 100%);
    --gradient-cool: linear-gradient(135deg, #f0f4f8 0%, #fef5e7 100%);
    
    /* Typography - System fonts only */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    
    /* Footer specific colors for light mode */
    --footer-bg: #1a202c;
    --footer-text: white;
    --footer-text-muted: #94a3b8;
    --footer-border: #374151;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-dark: #f7fafc;
    --text-light: #a0aec0;
    --background: #1a202c;
    --surface: #2d3748;
    --surface-accent: #2b2b2b;
    --border: #4a5568;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-colored: 0 4px 14px 0 rgb(243 146 0 / 0.25);
    
    /* Footer specific colors for dark mode */
    --footer-bg: #0f172a;
    --footer-text: #f1f5f9;
    --footer-text-muted: #94a3b8;
    --footer-border: #334155;
}

/* System preference detection for auto dark mode */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --text-dark: #f7fafc;
        --text-light: #a0aec0;
        --background: #1a202c;
        --surface: #2d3748;
        --surface-accent: #2b2b2b;
        --border: #4a5568;
        --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
        --shadow-colored: 0 4px 14px 0 rgb(243 146 0 / 0.25);
        
        /* Footer specific colors for system dark mode */
        --footer-bg: #0f172a;
        --footer-text: #f1f5f9;
        --footer-text-muted: #94a3b8;
        --footer-border: #334155;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--space-4);
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: var(--space-2);
}

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

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.95) 0%, rgba(213, 8, 93, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: var(--space-1) 0;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.98) 0%, rgba(213, 8, 93, 0.98) 100%);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    transition: all 0.4s ease;
}

.header.scrolled .nav {
    padding: var(--space-3) var(--space-6);
}

.nav__brand {
    display: flex;
    align-items: center;
}

.nav__logo {
    height: 45px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.header.scrolled .nav__logo {
    height: 35px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--space-6);
    align-items: center;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-3);
    position: relative;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 80%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    margin-right: var(--space-4);
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.theme-toggle__icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: absolute;
}

.theme-toggle__icon--light {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle__icon--dark {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle__icon--light {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle__icon--dark {
    opacity: 1;
    transform: rotate(0deg);
}

/* System dark mode detection for theme toggle */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) .theme-toggle__icon--light {
        opacity: 0;
        transform: rotate(180deg);
    }
    
    :root:not([data-theme]) .theme-toggle__icon--dark {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .theme-toggle {
        margin-right: var(--space-2);
        width: 36px;
        height: 36px;
    }
    
    .theme-toggle__icon {
        width: 18px;
        height: 18px;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(243, 146, 0, 0.98) 0%, rgba(213, 8, 93, 0.98) 100%);
        flex-direction: column;
        padding: var(--space-6);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
    }
    
    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__toggle {
        display: flex;
        padding: var(--space-2);
    }
    
    .nav__link {
        width: 100%;
        text-align: center;
        padding: var(--space-4);
        margin: var(--space-2) 0;
        border-radius: var(--border-radius);
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

/* Video Overlay */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        #F39200AB 0%,
        #D5085DF5 100%
    );
    z-index: -1;
}

/* Hero Content Styling */
.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Logo and Claim */
.hero__logo-claim {
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.hero__logo {
    height: 120px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero__claim {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__accent {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.hero__buttons .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero__buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero__buttons .btn--outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero__buttons .btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        min-height: 100vh;
    }
    
    .hero__logo {
        display: none; /* Hide logo on mobile phones (portrait mode) */
    }
    
    .hero__claim {
        font-size: var(--font-size-base);
        letter-spacing: 2px;
        padding: var(--space-2) var(--space-4);
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__description {
        font-size: var(--font-size-base);
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__buttons .btn {
        min-width: 200px;
    }
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section__title {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    background: linear-gradient(135deg, #D5085D 0%, #F39200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1px;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--space-20) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service__card {
    background-color: var(--background);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.service__card:hover::before {
    transform: scaleX(1);
}

.service__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    position: relative;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
}

.service__card:hover .service__icon {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 8px 25px 0 rgb(255 107 53 / 0.25);
}

.service__icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service__title {
    color: var(--text-dark);
    margin-bottom: var(--space-4);
}

.service__description {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* Focus Areas Section */
.focus-areas {
    padding: var(--space-20) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.focus-areas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .focus-areas__grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: none;
    }
}

.focus-area__card {
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-area__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.focus-area__card:hover::before {
    transform: scaleX(1);
}

.focus-area__icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
}

.focus-area__card:hover .focus-area__icon {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 8px 25px 0 rgb(255 107 53 / 0.25);
}

.focus-area__icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.focus-area__title {
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.focus-area__description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Detailed Explanation Section */
.detailed-explanation {
    padding: var(--space-20) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.detail__item {
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

.detail__item:hover::before {
    transform: scaleX(1);
}

.detail__item:hover .detail__icon {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 8px 25px 0 rgb(255 107 53 / 0.25);
}

.detail__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.detail__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-colored);
}

.detail__icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.detail__header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: var(--font-size-lg);
}

.detail__item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__description {
        font-size: var(--font-size-base);
    }
    
    .about__story .story__widget p {
        font-size: var(--font-size-sm) !important;
    }
    
    /* Footer text size fixes for landscape */
    .footer__section p {
        font-size: var(--font-size-sm) !important;
    }
    
    .footer__bottom p {
        font-size: var(--font-size-sm) !important;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .focus-areas__grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .detail__item {
        padding: var(--space-4);
    }
}

/* About Section */
.about {
    padding: var(--space-20) 0;
    background: var(--surface);
    position: relative;
    border-bottom: 1px solid var(--border);
}


.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.feature__icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-light);
}

.about__image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.gallery__item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 3/2;
}

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Company Milestones */
.company-milestones {
    margin: var(--space-8) 0;
    display: grid;
    gap: var(--space-4);
}

.milestone {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.milestone:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.milestone:nth-child(2) { border-left-color: var(--secondary-color); }
.milestone:nth-child(3) { border-left-color: var(--accent-color); }
.milestone:nth-child(4) { border-left-color: var(--primary-color); }

.milestone__year {
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-accent);
    border-radius: var(--border-radius);
    padding: var(--space-2);
}

.milestone__content h4 {
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-base);
}

.milestone__content p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about__content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .company-timeline {
        padding: var(--space-4);
    }
    
    .milestone {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .milestone__year {
        margin-bottom: var(--space-2);
    }
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact__item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-colored);
    transition: all 0.3s ease;
}

.contact__item:hover .contact__icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact__icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact__details h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-lg);
}

.contact__details p {
    color: var(--text-light);
    margin: 0;
}

/* Contact Form */
.contact__form {
    background-color: var(--surface);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: var(--space-6);
}

.form__label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
}

.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: var(--background);
    color: var(--text-dark);
}

.form__group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    background-size: 16px;
    padding-right: var(--space-10);
    appearance: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.1);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success and Error Messages */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    font-size: 48px;
    margin-bottom: var(--space-3);
    display: block;
}

.success-message h3 {
    color: white;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-xl);
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: var(--font-size-lg);
}

.error-messages {
    margin-bottom: var(--space-6);
}

.error-message {
    background-color: #fef2f2;
    color: #dc2626;
    padding: var(--space-4);
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    margin-bottom: var(--space-3);
    font-weight: 500;
}

.error-message:last-child {
    margin-bottom: 0;
}

/* Landscape mobile optimization for contact section */
@media (max-width: 768px) and (orientation: landscape) {
    .contact__content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .success-message {
        padding: var(--space-4);
    }
    
    .success-icon {
        font-size: 36px;
    }
    
    .success-message h3 {
        font-size: var(--font-size-lg);
    }
}

/* FAQ Section */
.faq {
    padding: var(--space-20) 0;
    background: var(--surface);
    margin-top: 72px;
}

.faq__content {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: var(--background);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-4);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq__question {
    padding: var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq__question:hover {
    background: var(--surface-accent);
}

.faq__question h3 {
    color: var(--text-dark);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
}

.faq__toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: var(--space-4);
    cursor: pointer;
    font-size: 0; /* Hide any text content */
    color: transparent; /* Make text invisible */
}

.faq__toggle::before,
.faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.faq__toggle::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.faq__toggle::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    border-radius: 1px;
}

.faq__item.active .faq__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.active .faq__toggle::before {
    background: var(--primary-color);
}

.faq__question:hover .faq__toggle::before,
.faq__question:hover .faq__toggle::after {
    background: var(--primary-color);
}

.faq__answer {
    padding: 0 var(--space-6) var(--space-6);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq__item.active .faq__answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 var(--space-6) var(--space-6);
}

.faq__answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq__question {
        padding: var(--space-4);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    
    .faq__toggle {
        align-self: flex-end;
        margin-left: 0;
    }
    
    .faq__answer {
        padding: 0 var(--space-4) var(--space-4);
    }
    
    .faq__item.active .faq__answer {
        padding: 0 var(--space-4) var(--space-4);
        max-height: 300px;
    }
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--space-16) 0 var(--space-8);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-4);
}

.footer__description {
    color: var(--footer-text-muted);
    line-height: 1.7;
}

.footer__title {
    color: var(--footer-text);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__links a {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--footer-text);
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--footer-border);
    text-align: center;
    color: var(--footer-text-muted);
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* SVG Logo Animation */
.hero__logo .st0 {
    fill: white;
    opacity: 0;
}

.hero__logo .logo-path {
    animation: logoAppear 0.8s ease-in-out forwards;
}

.hero__logo .shift-part .logo-path {
    animation-delay: 0.2s;
}

.hero__logo .digitaldruck-part .logo-path {
    animation-delay: 0.6s;
}

.nav__logo .st0 {
    fill: white;
}

.footer__logo .st0 {
    fill: var(--footer-text);
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 404 Error Page Styles */
.error-page {
    padding: var(--space-24) 0 var(--space-20);
    margin-top: 72px;
    min-height: calc(100vh - 300px);
    background: var(--surface);
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-header {
    margin-bottom: var(--space-12);
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.8;
    margin-bottom: var(--space-4);
}

.error-title {
    font-size: var(--font-size-3xl);
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

.error-page .error-message {
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: var(--background);
    padding: var(--space-6);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.error-page .error-message p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.error-suggestions {
    background: var(--background);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-12);
    text-align: left;
    box-shadow: var(--shadow);
}

.error-suggestions h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    text-align: center;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    padding: var(--space-2) 0;
    position: relative;
    padding-left: var(--space-6);
    color: var(--text-light);
}

.error-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.error-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-16);
    flex-wrap: wrap;
}

.error-popular-links {
    background: var(--background);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.error-popular-links h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-6);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.popular-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--surface);
    text-align: center;
}

.popular-link:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.popular-link svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.popular-link h4 {
    color: var(--text-dark);
    margin: 0 0 var(--space-1) 0;
    font-size: var(--font-size-base);
}

.popular-link p {
    color: var(--text-light);
    margin: 0;
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    .error-page {
        padding: var(--space-16) 0;
        margin-top: 60px;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: var(--font-size-2xl);
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: var(--space-24) 0 var(--space-20);
    margin-top: 72px;
    min-height: calc(100vh - 200px);
    background: var(--surface);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: var(--font-size-4xl);
    color: var(--text-dark);
    margin-bottom: var(--space-12);
    text-align: center;
    position: relative;
}


.legal-section {
    margin-bottom: var(--space-10);
    padding: var(--space-6);
    background: var(--background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-4);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-bottom: var(--space-3);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.company-info h3 {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.address {
    font-style: normal;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.contact-item-legal {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--surface);
    border-radius: var(--border-radius);
}

.contact-label {
    font-weight: 500;
    color: var(--text-dark);
    min-width: 60px;
}

.contact-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-value a:hover {
    text-decoration: underline;
}

.register-info p {
    background: var(--surface-accent);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.copyright-section {
    background: var(--surface-accent);
    border-left-color: var(--secondary-color);
}

.copyright-section h2 {
    color: var(--secondary-color);
}

.contact-info-privacy {
    background: var(--surface-accent);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    margin: var(--space-4) 0;
}

.contact-info-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-privacy a:hover {
    text-decoration: underline;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.rights-list li {
    background: var(--surface);
    margin: var(--space-3) 0;
    padding: var(--space-4);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.rights-list li strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: var(--space-2);
}

.legal-section ul:not(.rights-list) {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.legal-section ul:not(.rights-list) li {
    margin: var(--space-2) 0;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .legal-page {
        padding: var(--space-16) 0;
        margin-top: 60px;
    }

    .legal-title {
        font-size: var(--font-size-3xl);
    }

    .legal-section {
        padding: var(--space-4);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-list li {
        padding: var(--space-3);
    }
    
    .legal-section ul:not(.rights-list) {
        padding-left: var(--space-4);
    }
}

/* New About Section Styles */
.about__content {
    display: block;
    margin-bottom: var(--space-16);
}

.about__story .story__widget {
    background: var(--background);
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.about__story .story__widget h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-6);
    font-weight: 600;
}

.about__story .story__widget p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.about__story .story__widget p:last-child {
    margin-bottom: 0;
}

.story__highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.highlight {
    padding: var(--space-3);
    background: var(--background);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.highlight h4 {
    font-size: var(--font-size-sm);
    color: var(--text-dark);
    margin-bottom: var(--space-1);
    font-weight: 600;
}

.highlight p {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}


.about__timeline {
    margin-bottom: var(--space-16);
}

.about__timeline h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-8);
    font-weight: 600;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline__line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--border) 0px,
        var(--border) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.timeline__item {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 240px;
    margin: 0 var(--space-2);
}

.timeline__marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: white;
}

.timeline__marker {
    background: var(--gradient-primary);
}

.timeline__marker:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.timeline__content {
    background: var(--background);
    padding: var(--space-4);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-top: var(--space-2);
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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


.timeline__content h4 {
    font-size: var(--font-size-base);
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.timeline__content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: var(--font-size-sm);
    margin: 0;
}

.about__services {
    text-align: center;
    background: var(--surface-accent);
    padding: var(--space-8);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--secondary-color);
}

.about__services h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.about__services p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .story__highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }
    
    .timeline__item {
        max-width: 400px;
        margin: 0;
    }
    
    .timeline__line {
        display: none;
    }
    
    .timeline__content {
        height: auto;
        min-height: 120px;
    }
}

@media (max-width: 600px) {
    .story__highlights {
        grid-template-columns: 1fr;
    }
    
    .timeline__marker {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xs);
    }
    
    .timeline__content {
        min-height: 100px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(243, 146, 0, 0.98) 0%, rgba(213, 8, 93, 0.98) 100%);
    color: white;
    padding: var(--space-4) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__text h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: white;
}

.cookie-banner__text p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__text a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner__text a:hover {
    color: #FFD700;
}

.cookie-banner__actions {
    display: flex;
    gap: var(--space-3);
    flex-shrink: 0;
}

.cookie-banner .btn {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-4);
    white-space: nowrap;
}

.cookie-banner .btn--outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cookie-banner .btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner .btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

/* Responsive Design */
@media (max-width: 480px) {
    :root {
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
        --space-20: 3rem;
        --space-16: 2.5rem;
    }
    
    .btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--font-size-xs);
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .service__card {
        padding: var(--space-6);
    }
}