/* ============================================
   PAGES/HOME.CSS - Hero, Day&Nite, Why-Design, Services, Team, Contact
   ============================================ */

/* Hero Section */
.hero {
            position: relative;
            width: 100vw;
            margin-left: calc((100vw - 100%) / -2);
            margin-right: calc((100vw - 100%) / -2);
            padding: 3rem 0 2rem;
            min-height: 100vh;
            overflow: hidden;
            background: var(--bg-primary);
        }

        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            pointer-events: none;
            z-index: 1;
            transition: opacity 0.4s ease;
        }

        .hero::before {
            inset: -10% 0;
            background: radial-gradient(circle at 5% 40%, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0));
            opacity: 0.45;
        }

        .hero::after {
            width: 35vw;
            height: 80vh;
            left: 50%;
            top: 48%;
            transform: translate(-50%, -35%);
            background: radial-gradient(circle at center, rgba(181, 124, 255, 0.25), rgba(35, 20, 60, 0));
            filter: blur(20px);
            opacity: 0.3;
            max-width: calc(50vw - 2rem);
            right: auto;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding-left: clamp(2rem, 18vw, 18rem);
            padding-top: clamp(2rem, 8vh, 5rem);
            align-items: flex-start;
            position: relative;
            z-index: 3;
        }

        .hero-eyebrow {
            font-size: 14px;
            font-weight: 500;
            color: #C9B3FF;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            opacity: 0.85;
            animation: fadeInUp 0.8s ease-out 2s forwards;
            margin-left: 0;
            margin-bottom: 1.25rem;
        }

        .hero-content h1 {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.05;
            margin: 0 0 calc(2.25rem + 12px) 0;
            letter-spacing: -0.5px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 3s forwards;
        }

        @media (min-width: 1440px) {
            .hero-content h1 {
                letter-spacing: -1px;
            }
        }

        .hero-content h1 .intelligence-purple {
            background: linear-gradient(90deg, #b987ff 0%, #a271ff 100%);
            -webkit-background-clip: text;
            color: transparent;
            background-clip: text;
        }

        .hero-content .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 4s forwards;
            margin-left: 0;
            max-width: 420px;
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1.25rem;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            align-items: center;
            grid-column: 1 / -1;
            position: relative;
            z-index: 3;
        }

        .hero-bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            object-fit: cover;
            object-position: center;
            opacity: 0.2;
            z-index: 0;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(0,0,0,0.75),
                rgba(0,0,0,0.45),
                rgba(0,0,0,0.20)
            );
            z-index: 1;
        }

        .hero-buttons .btn-primary {
            opacity: 0;
            animation: fadeInUpButton 0.8s ease-out 4.5s forwards;
            padding: 0.75rem 1.35rem;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 0 15px rgba(142, 68, 255, 0.25),
                0 0 30px rgba(142, 68, 255, 0.15),
                inset 0 1px 2px rgba(0, 0, 0, 0.05),
                inset 0 0 1px rgba(0, 0, 0, 0.03);
        }

        .hero-buttons .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.04) 50%,
                transparent 100%
            );
            border-radius: 8px 8px 0 0;
            pointer-events: none;
            z-index: 1;
        }

        .hero-buttons .btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 
                0 0 18px rgba(142, 68, 255, 0.3),
                0 0 35px rgba(142, 68, 255, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 2px rgba(0, 0, 0, 0.05),
                inset 0 0 1px rgba(0, 0, 0, 0.03) !important;
        }

        .hero-buttons .btn-primary span,
        .hero-buttons .btn-primary {
            position: relative;
            z-index: 2;
        }

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

        @keyframes fadeInUpButton {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-left: -10%;
            z-index: 3;
            overflow: visible;
        }

        .hero-logo-placeholder {
            width: 450px;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            perspective: 800px;
            cursor: pointer;
            overflow: visible;
        }

        .hero-logo-placeholder::before {
            content: '';
            position: absolute;
            width: 115%;
            height: 115%;
            background: radial-gradient(circle, rgba(75, 0, 130, 0.3) 0%, rgba(75, 0, 130, 0.2) 35%, rgba(75, 0, 130, 0.1) 55%, transparent 75%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(20px);
            opacity: 0;
            animation: revealGlow 1.5s ease-out 0.5s forwards;
        }

        .hero-logo-placeholder::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 70%;
            left: -10%;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
            background: radial-gradient(ellipse at right center, rgba(142, 68, 255, 0.15) 0%, rgba(142, 68, 255, 0.1) 30%, rgba(142, 68, 255, 0.05) 50%, transparent 70%);
            z-index: -2;
            filter: blur(25px);
            opacity: 0;
            animation: revealGlowDiagonal 1.8s ease-out 0.7s forwards;
            pointer-events: none;
        }

        .hero-logo-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: scale(0.8);
            animation: revealOwl 1.5s ease-out 0.5s forwards, lookAround 8s ease-in-out 2s infinite;
            transition: transform 0.15s ease-out, opacity 0.15s ease-out;
            transform-style: preserve-3d;
            will-change: transform;
            backface-visibility: hidden;
            transform-origin: center center;
            visibility: visible;
            display: block;
        }

        .hero-logo-light-rim {
            position: absolute;
            top: 0;
            right: 0;
            width: 25%;
            height: 25%;
            background: radial-gradient(
                ellipse at top right,
                rgba(255, 255, 255, 0.03) 0%,
                rgba(255, 255, 255, 0.02) 30%,
                transparent 70%
            );
            border-radius: 50%;
            filter: blur(12px);
            z-index: 3;
            pointer-events: none;
            opacity: 0;
            animation: revealOwl 1.5s ease-out 0.5s forwards;
        }

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

        @keyframes revealGlow {
            from {
                opacity: 0;
            }
            to {
                opacity: 0.4;
            }
        }

        @keyframes revealGlowDiagonal {
            from {
                opacity: 0;
                transform: translateY(-50%) rotate(-15deg) translateX(20px);
            }
            to {
                opacity: 0.6;
                transform: translateY(-50%) rotate(-15deg) translateX(0);
            }
        }

        @keyframes lookAround {
            0%, 100% {
                transform: translateX(0) rotate(0deg);
            }
            25% {
                transform: translateX(-8px) rotate(-1.5deg);
            }
            50% {
                transform: translateX(0) rotate(0deg);
            }
            75% {
                transform: translateX(8px) rotate(1.5deg);
            }
        }

        .hero-video-gradient-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(
                    to bottom,
                    rgba(5, 5, 9, 1) 0%,
                    rgba(5, 5, 9, 0) 18%,
                    rgba(5, 5, 9, 0) 70%,
                    rgba(5, 5, 9, 0.7) 85%,
                    rgba(5, 5, 9, 0.95) 95%,
                    rgba(5, 5, 9, 1) 100%
                ),
                linear-gradient(
                    to right,
                    rgba(5, 5, 9, 1) 0%,
                    rgba(5, 5, 9, 0.8) 5%,
                    rgba(5, 5, 9, 0.4) 8%,
                    rgba(5, 5, 9, 0) 12%,
                    rgba(5, 5, 9, 0) 100%
                );
            background-blend-mode: multiply;
            pointer-events: none;
            z-index: 2;
        }

/* Why Design-first Section */
.why-design {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .why-design-eyebrow {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--purple-accent);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .why-design-content h2 {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
        }

        @media (min-width: 1400px) {
            .why-design-content h2 {
                letter-spacing: -1px;
            }
        }

        .why-design-content p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 600px;
        }

        .why-design-content p:last-of-type {
            margin-bottom: 0;
        }

        .why-design-statements {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .statement-slider-wrapper {
            position: relative;
            height: 100%;
            width: 100%;
            transition: transform 0.1s ease-out;
        }

        .statement-slider {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .statement-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
            pointer-events: none;
        }

        .statement-slide.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .statement-item {
            padding: 2rem;
            position: relative;
            background: rgba(10, 10, 15, 0.6);
            border-radius: 8px;
            width: 100%;
            height: fit-content;
            transition: all 0.3s ease-out;
        }

        .statement-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--purple-primary), var(--purple-accent));
            border-radius: 0 2px 2px 0;
            box-shadow: 0 0 8px rgba(142, 68, 255, 0.4);
        }

        .statement-item p {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-primary);
            margin: 0;
            padding-left: 1.5rem;
        }

/* Day&Nite Section */
.daynite {
            padding: 3rem 0 2rem;
            text-align: center;
            max-height: 950px;
            overflow: hidden;
            position: relative;
        }

        .daynite-header {
            max-width: 800px;
            margin: 0 auto;
        }

        .daynite-label {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--purple-accent);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .daynite-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .daynite-logo-icon,
        .daynite-logo-text {
            opacity: 1; /* Standardmäßig sichtbar - wird durch JavaScript animiert */
            transform: translateY(0);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out, letter-spacing 0.6s ease-out;
        }
        
        /* Nur wenn JavaScript läuft, starte mit opacity: 0 für Animation */
        .js-enabled .daynite-logo-icon,
        .js-enabled .daynite-logo-text {
            opacity: 0;
            transform: translateY(12px);
        }

        .daynite-logo-icon {
            height: 75px;
            width: auto;
            filter: drop-shadow(0 8px 20px rgba(197, 153, 255, 0.25));
            transition-delay: 0.05s;
        }

        .daynite-logo-text {
            height: 120px;
            width: auto;
            letter-spacing: 0.2em;
            transition-delay: 0.15s;
        }

        .daynite-tagline {
            font-family: 'Geist', 'Inter', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            opacity: 1; /* Standardmäßig sichtbar */
            transform: translateY(0);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            transition-delay: 0.25s;
        }

        @media (min-width: 1400px) {
            .daynite-tagline {
                letter-spacing: -1px;
            }
        }

        .daynite-descriptors {
            max-width: 600px;
            margin: 0 auto 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: nowrap;
        }

        .daynite-descriptor {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            position: relative;
            opacity: 1; /* Standardmäßig sichtbar */
            transform: translateY(0);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        
        /* Nur wenn JavaScript läuft, starte mit opacity: 0 für Animation */
        .js-enabled .daynite-descriptor {
            opacity: 0;
            transform: translateY(15px);
        }

        .daynite-descriptor:not(:last-child)::after {
            content: '·';
            margin-left: 1.5rem;
            color: var(--text-muted);
            opacity: 0.5;
        }

        .daynite-slider-wrapper {
            position: relative;
            margin: 1rem auto 1rem;
            max-width: 1400px;
            padding: 0 2rem;
        }

        .daynite-slider {
            overflow: hidden;
            padding: 2rem 0;
        }

        .daynite-slider-track {
            display: flex;
            gap: 2rem;
            width: calc(200%);
            animation: dayniteScroll 30s linear infinite;
            animation-play-state: paused;
        }

        .daynite.is-visible .daynite-slider-track:not(.paused) {
            animation-play-state: running;
        }

        @keyframes dayniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .daynite-slide {
            flex: 0 0 auto;
            scroll-snap-align: center;
            width: 155px;
            position: relative;
            cursor: pointer;
            opacity: 1; /* Standardmäßig sichtbar */
            --parallaxX: 0px;
            --parallaxY: 0px;
            transform: translate3d(var(--parallaxX), var(--parallaxY), 0) scale(1);
            transition: opacity 0.65s ease-out, transform 0.65s ease-out, box-shadow 0.35s ease-out;
        }
        
        /* Nur wenn JavaScript läuft, starte mit opacity: 0 für Animation */
        .js-enabled .daynite-slide {
            opacity: 0;
            transform: translate3d(var(--parallaxX), calc(var(--parallaxY) + 40px), 0) scale(0.96);
        }

        .daynite-slide img {
            width: 100%;
            height: auto;
            border-radius: 38px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(142, 68, 255, 0.15);
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
        }

        .daynite-slide::before {
            content: '';
            position: absolute;
            inset: -20%;
            border-radius: 40px;
            background: radial-gradient(circle, rgba(142, 68, 255, 0.35), rgba(0, 0, 0, 0));
            filter: blur(20px);
            opacity: 0.15;
            transition: opacity 0.25s ease-out, transform 0.25s ease-out;
            z-index: -1;
        }

        .daynite-slide:hover::before {
            opacity: 0.55;
            transform: scale(1.05);
        }

        .daynite-slide:hover img {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 70px rgba(142, 68, 255, 0.35);
        }

        .daynite-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease-out;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .daynite-slider-nav:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .daynite-slider-nav.prev {
            left: 1rem;
        }

        .daynite-slider-nav.next {
            right: 1rem;
        }

        .daynite-slider-nav svg {
            width: 20px;
            height: 20px;
        }

        .daynite-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        @keyframes phoneFloat {
            0% {
                transform: translate3d(var(--parallaxX), var(--parallaxY), 0) scale(1);
            }
            50% {
                transform: translate3d(calc(var(--parallaxX) + 2px), calc(var(--parallaxY) - 6px), 0) scale(1.01);
            }
            100% {
                transform: translate3d(var(--parallaxX), calc(var(--parallaxY) + 4px), 0) scale(1);
            }
        }

        @keyframes glowBlink {
            0% {
                opacity: 0.05;
            }
            40% {
                opacity: 0.6;
            }
            100% {
                opacity: 0.2;
            }
        }

        @keyframes goldenPulse {
            0% {
                filter: drop-shadow(0 0 0 rgba(255, 214, 107, 0.2));
            }
            50% {
                filter: drop-shadow(0 0 18px rgba(255, 214, 107, 0.65));
            }
            100% {
                filter: drop-shadow(0 8px 20px rgba(197, 153, 255, 0.25));
            }
        }

        .daynite.is-visible .daynite-logo-icon {
            opacity: 1;
            transform: translateY(0);
            animation: goldenPulse 2.4s ease-out 0.2s forwards;
        }

        .daynite.is-visible .daynite-logo-text {
            opacity: 1;
            transform: translateY(0);
            letter-spacing: 0.05em;
        }

        .daynite.is-visible .daynite-tagline {
            opacity: 1;
            transform: translateY(0);
        }

        .daynite-descriptor:nth-child(1) { transition-delay: 0.3s; }
        .daynite-descriptor:nth-child(2) { transition-delay: 0.38s; }
        .daynite-descriptor:nth-child(3) { transition-delay: 0.46s; }
        .daynite-descriptor:nth-child(4) { transition-delay: 0.54s; }

        .daynite.is-visible .daynite-descriptor {
            opacity: 1;
            transform: translateY(0);
        }

        .daynite-descriptor:hover {
            color: var(--text-primary);
        }

        .daynite-slide:nth-child(1) { transition-delay: 0.35s; --phone-delay: 0s; }
        .daynite-slide:nth-child(2) { transition-delay: 0.41s; --phone-delay: 0.05s; }
        .daynite-slide:nth-child(3) { transition-delay: 0.47s; --phone-delay: 0.1s; }
        .daynite-slide:nth-child(4) { transition-delay: 0.53s; --phone-delay: 0.15s; }
        .daynite-slide:nth-child(5) { transition-delay: 0.59s; --phone-delay: 0.2s; }
        .daynite-slide:nth-child(6) { transition-delay: 0.65s; --phone-delay: 0.25s; }
        .daynite-slide:nth-child(7) { transition-delay: 0.71s; --phone-delay: 0.3s; }
        .daynite-slide:nth-child(8) { transition-delay: 0.77s; --phone-delay: 0.35s; }
        .daynite-slide:nth-child(9) { transition-delay: 0.83s; --phone-delay: 0.4s; }
        .daynite-slide:nth-child(10) { transition-delay: 0.89s; --phone-delay: 0.45s; }

        .daynite.is-visible .daynite-slide {
            opacity: 1;
            transform: translate3d(var(--parallaxX), var(--parallaxY), 0) scale(1);
            animation: phoneFloat 6s ease-in-out infinite alternate;
            animation-delay: var(--phone-delay, 0s);
        }

        .daynite.is-visible .daynite-slide::before {
            animation: glowBlink 1.1s ease-out forwards;
            animation-delay: calc(var(--phone-delay, 0s) + 0.15s);
        }

        .daynite.is-visible .daynite-slide:nth-child(odd) {
            animation-duration: 6.5s;
        }

        .daynite.is-visible .daynite-slide:nth-child(even) {
            animation-duration: 5.5s;
        }

        .daynite-link-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.875rem 1.75rem;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease-out;
            display: inline-block;
        }

        .daynite-link-secondary:hover {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 15px rgba(142, 68, 255, 0.2);
            transform: translateY(-2px);
        }

/* Responsive Design */

        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 4rem 0;
            }

            .hero-inner {
                grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
                gap: 2rem;
                padding: 0 1.5rem;
            }

            .hero-content {
                padding-left: 0;
                align-items: flex-start;
            }

            .hero-logo-placeholder {
                width: 360px;
                height: 360px;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-eyebrow {
                margin-left: 0;
            }

            .hero-content .hero-subtitle {
                margin-left: 0;
                max-width: 100%;
            }

            .hero-visual {
                margin-left: 0;
            }

            .daynite {
                padding: 4rem 0;
                max-height: none;
            }

            .daynite-header {
                margin-bottom: 2rem;
            }

            .daynite-logo-icon {
                height: 70px;
            }

            .daynite-logo-text {
                height: 112px;
            }

            .daynite-tagline {
                font-size: 2.5rem;
                margin-bottom: 0.75rem;
            }

            .daynite-descriptors {
                gap: 1rem;
                margin-bottom: 2rem;
                flex-wrap: wrap;
            }

            .daynite-descriptor {
                font-size: 0.75rem;
            }

            .daynite-descriptor:not(:last-child)::after {
                margin-left: 1rem;
            }

            .daynite-slider-wrapper {
                padding: 0 1rem;
            }

            .daynite-slider-nav {
                display: none;
            }

            .why-design {
                grid-template-columns: 1fr;
            }

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

            .service-icon {
                width: 100px;
                height: 100px;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            main {
                padding: 0 1rem;
            }

            section {
                padding: 2rem 0;
            }

            .hero {
                padding: 2rem 0;
                min-height: auto;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                letter-spacing: -0.3px;
                margin-bottom: calc(1.5rem + 8px);
            }

            .hero-content .hero-subtitle {
                font-size: 1rem;
                margin-left: 0;
                max-width: 100%;
            }

            .hero-eyebrow {
                margin-left: 0;
            }

            .hero-logo-placeholder {
                width: 270px;
                height: 270px;
            }

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

            .services-grid,
            .work-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .service-icon {
                width: 80px;
                height: 80px;
            }

            .daynite {
                padding: 2rem 0;
            }

            .daynite-header {
                margin-bottom: 3rem;
            }

            .daynite-logo-icon {
                height: 60px;
            }

            .daynite-logo-text {
                height: 96px;
            }

            .daynite-tagline {
                font-size: 2rem;
                margin-top: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .daynite-descriptors {
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .daynite-descriptor {
                font-size: 0.95rem;
            }

            .daynite-slide {
                width: 160px;
            }

            .contact-form {
                padding: 2rem;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons,
            .daynite-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary,
            .daynite-buttons .btn-primary,
            .daynite-buttons .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
                letter-spacing: -0.2px;
            }
            
            .hero-eyebrow {
                font-size: 13px;
                letter-spacing: 0.1em;
            }

            .logo-text img {
                height: 50px;
            }

            .hero-logo-placeholder {
                width: 250px;
                height: 250px;
            }

            .nav-links {
                font-size: 0.85rem;
                gap: 0.75rem;
            }
            
            .daynite-tagline {
                letter-spacing: -0.3px;
                line-height: 1.1;
            }
            
            .daynite-descriptor {
                font-size: 0.85rem;
            }
        }


