/*
Theme Name: Netlook Agency Theme
Theme URI: https://netlook.org
Author: Netlook
Author URI: https://netlook.org
Description: Ein modernes, Apple-inspiriertes WordPress Theme für digitale Agenturen mit umfangreichen Animationen und Customizer-Optionen.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netlook
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready

Netlook Agency Theme - Digitale Exzellenz neu definiert.
*/

/* ==================== CSS VARIABLES ==================== */
:root {
    --nl-white: #ffffff;
    --nl-black: #000000;
    --nl-gray-50: #fbfbfd;
    --nl-gray-100: #f5f5f7;
    --nl-gray-200: #e8e8ed;
    --nl-gray-300: #d2d2d7;
    --nl-gray-400: #86868b;
    --nl-gray-500: #6e6e73;
    --nl-gray-600: #424245;
    --nl-gray-700: #1d1d1f;
    --nl-blue: #0071e3;
    --nl-blue-hover: #0077ed;
    --nl-purple: #5856D6;
    --nl-pink: #AF52DE;
    --nl-green: #34C759;
    --nl-orange: #FF9500;
    --nl-red: #FF3B30;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--nl-white);
    color: var(--nl-gray-700);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h1 { font-size: clamp(48px, 9vw, 80px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--nl-gray-500);
}

/* ==================== NAVIGATION ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(251, 251, 253, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(251, 251, 253, 0.92);
}

.nav-container {
    width: 100%;
    max-width: 980px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.site-logo {
    font-size: 21px;
    font-weight: 600;
    color: var(--nl-gray-700);
    text-decoration: none;
    letter-spacing: -0.5px;
    opacity: 0;
    animation: navFadeIn 1s ease forwards 0.5s;
}

.site-logo span {
    color: var(--nl-blue);
}

.site-logo img {
    height: 28px;
    width: auto;
}

/* Primary Navigation */
.primary-navigation {
    display: flex;
    gap: 36px;
    list-style: none;
}

.primary-navigation li {
    opacity: 0;
    animation: navFadeIn 0.8s ease forwards;
}

.primary-navigation li:nth-child(1) { animation-delay: 0.6s; }
.primary-navigation li:nth-child(2) { animation-delay: 0.7s; }
.primary-navigation li:nth-child(3) { animation-delay: 0.8s; }
.primary-navigation li:nth-child(4) { animation-delay: 0.9s; }
.primary-navigation li:nth-child(5) { animation-delay: 1s; }
.primary-navigation li:nth-child(6) { animation-delay: 1.1s; }

.primary-navigation a {
    font-size: 12px;
    color: var(--nl-gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.primary-navigation a:hover {
    color: var(--nl-blue);
}

.nav-cta-button {
    font-size: 12px;
    color: var(--nl-white);
    background: var(--nl-blue);
    padding: 8px 16px;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    animation: navFadeIn 0.8s ease forwards 1.2s;
}

.nav-cta-button:hover {
    background: var(--nl-blue-hover);
    color: var(--nl-white);
}

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

.mobile-menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--nl-gray-700);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(251, 251, 253, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    list-style: none;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--nl-gray-200);
}

.mobile-navigation.active {
    display: flex;
}

.mobile-navigation a {
    font-size: 16px;
    color: var(--nl-gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--nl-gray-100);
}

@keyframes navFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    background: var(--nl-gray-50);
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(120, 119, 198, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(0, 113, 227, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(52, 199, 89, 0.08), transparent);
    animation: gradientMove 15s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.light-beam {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 113, 227, 0.3), transparent);
    animation: beamFloat 8s ease-in-out infinite;
    opacity: 0.5;
}

.light-beam:nth-child(1) { left: 10%; height: 40vh; animation-delay: 0s; }
.light-beam:nth-child(2) { left: 25%; height: 35vh; animation-delay: -2s; }
.light-beam:nth-child(3) { left: 50%; height: 45vh; animation-delay: -4s; }
.light-beam:nth-child(4) { left: 75%; height: 30vh; animation-delay: -6s; }
.light-beam:nth-child(5) { left: 90%; height: 38vh; animation-delay: -1s; }

@keyframes beamFloat {
    0%, 100% { transform: translateY(100vh) scaleY(0); opacity: 0; }
    10% { opacity: 0.5; }
    50% { transform: translateY(-20vh) scaleY(1); opacity: 0.3; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scaleY(0); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nl-gray-500);
    margin-bottom: 20px;
    opacity: 0;
    animation: eyebrowReveal 1s ease forwards 0.3s;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--nl-gray-300);
    animation: lineExpand 0.8s ease forwards 0.8s;
}

@keyframes lineExpand {
    to { width: 40px; }
}

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

.hero-headline {
    font-size: clamp(48px, 9vw, 80px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--nl-gray-700);
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-headline .line {
    display: block;
    overflow: hidden;
}

.hero-headline .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-headline .line:nth-child(1) .line-inner { animation-delay: 0.4s; }
.hero-headline .line:nth-child(2) .line-inner { animation-delay: 0.5s; }

@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero-headline .gradient-text {
    background: linear-gradient(90deg, #007AFF, #5856D6, #AF52DE, #007AFF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.hero-subtitle {
    font-size: clamp(17px, 2.2vw, 21px);
    color: var(--nl-gray-500);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-subtitle .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-90deg);
    animation: wordReveal 0.6s ease forwards;
}

@keyframes wordReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: ctaReveal 1s ease forwards 1.5s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 980px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--nl-blue);
    color: var(--nl-white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.4);
    color: var(--nl-white);
}

.btn-secondary {
    color: var(--nl-blue);
    background: transparent;
}

.btn-secondary::after {
    content: '\203A';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
    transform: translateX(5px);
}

.btn-secondary:hover {
    color: var(--nl-blue-hover);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: scrollReveal 1s ease forwards 2s;
    z-index: 1;
    pointer-events: none;
}

@keyframes scrollReveal {
    to { opacity: 1; }
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--nl-gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--nl-gray-300), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--nl-blue);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(-20px); opacity: 0; }
    50% { transform: translateY(60px); opacity: 1; }
}

/* ==================== MARQUEE SECTION ==================== */
.marquee-section {
    padding: 48px 0;
    background: var(--nl-white);
    border-top: 0.5px solid var(--nl-gray-200);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 35s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nl-gray-400);
    white-space: nowrap;
    transition: all 0.4s ease;
}

.marquee-item:hover {
    color: var(--nl-gray-700);
    transform: scale(1.05);
}

.marquee-item svg {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: 100px 24px;
    background: var(--nl-black);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(0, 113, 227, 0.15), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--nl-white);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nl-blue);
    transition: all 0.6s ease;
    transform: translateX(-50%);
}

.stat-item:hover .stat-number::after {
    width: 60px;
}

.stat-number span {
    font-size: 0.5em;
    color: var(--nl-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--nl-gray-400);
    letter-spacing: 0.02em;
}

/* ==================== PRODUCT SECTIONS ==================== */
.product-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.product-section.dark {
    background: var(--nl-black);
    color: var(--nl-white);
}

.product-section.light {
    background: var(--nl-gray-100);
    color: var(--nl-gray-700);
}

.product-section.white {
    background: var(--nl-white);
    color: var(--nl-gray-700);
}

.product-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--nl-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.product-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.product-subtitle {
    font-size: clamp(19px, 2.5vw, 24px);
    color: var(--nl-gray-500);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.product-section.dark .product-subtitle {
    color: var(--nl-gray-400);
}

.product-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 21px;
    color: var(--nl-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link::after {
    content: '\203A';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.product-link:hover::after {
    transform: translateX(5px);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== DEVICE MOCKUPS ==================== */
.product-visual {
    width: 100%;
    max-width: 980px;
    margin-top: 32px;
}

.visual-devices {
    display: flex;
    justify-content: center;
    gap: 32px;
    perspective: 1200px;
}

.device {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.35),
        0 0 1px rgba(0, 0, 0, 0.2);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.device.laptop {
    width: 640px;
    background: #1a1a1a;
    padding: 12px 12px 20px;
    border-radius: 16px;
    transform: rotateX(2deg) rotateY(-3deg);
}

.device.laptop:hover {
    transform: rotateX(0) rotateY(0) translateY(-10px);
    box-shadow:
        0 60px 120px -30px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(0, 0, 0, 0.2);
}

.device.phone {
    width: 180px;
    background: #1a1a1a;
    padding: 10px;
    border-radius: 28px;
    transform: rotateX(2deg) rotateY(3deg);
}

.device.phone:hover {
    transform: rotateX(0) rotateY(0) translateY(-10px);
}

.device-screen {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.device.phone .device-screen {
    border-radius: 20px;
}

.screen-content {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: screenGradient 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.device.phone .screen-content {
    aspect-ratio: 9/19;
}

@keyframes screenGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.screen-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.screen-text {
    color: white;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 1;
}

.device.phone .screen-text {
    font-size: 14px;
}

/* ==================== CODE WINDOW ==================== */
.code-window {
    max-width: 720px;
    margin: 0 auto;
    background: #1d1d1f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-window:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 60px 100px -30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.code-header {
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.code-window:hover .code-dot {
    animation: dotBounce 0.5s ease;
}

.code-dot:nth-child(1) { background: #ff5f57; animation-delay: 0s; }
.code-dot:nth-child(2) { background: #febc2e; animation-delay: 0.1s; }
.code-dot:nth-child(3) { background: #28c840; animation-delay: 0.2s; }

@keyframes dotBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.code-body {
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.9;
    color: #a1a1a6;
    overflow: hidden;
}

.code-line {
    display: flex;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.code-line.visible {
    opacity: 1;
    transform: translateX(0);
}

.code-number {
    width: 32px;
    color: #48484a;
    text-align: right;
    margin-right: 20px;
    user-select: none;
}

.code-keyword { color: #ff7ab2; }
.code-function { color: #78c2b3; }
.code-string { color: #ff8170; }
.code-comment { color: #6c7986; font-style: italic; }
.code-variable { color: #dabaff; }

.code-cursor {
    display: inline-block;
    width: 2px;
    height: 17px;
    background: #007AFF;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ==================== CHAT INTERFACE ==================== */
.chat-window {
    max-width: 400px;
    margin: 0 auto;
    background: var(--nl-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.15),
        0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 60px 100px -30px rgba(0, 0, 0, 0.2),
        0 0 1px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background: linear-gradient(135deg, #34c759, #30d158);
    padding: 24px;
    color: white;
}

.chat-header-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.chat-header-subtitle {
    font-size: 13px;
    opacity: 0.9;
}

.chat-body {
    padding: 20px;
    min-height: 280px;
    background: var(--nl-gray-50);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-message.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-message.bot {
    background: var(--nl-white);
    color: var(--nl-gray-700);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.chat-message.user {
    background: linear-gradient(135deg, #34c759, #30d158);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chat-footer {
    padding: 16px 20px;
    background: var(--nl-white);
    border-top: 1px solid var(--nl-gray-100);
    display: flex;
    gap: 12px;
}

.chat-input {
    flex: 1;
    border: none;
    background: var(--nl-gray-100);
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    background: var(--nl-gray-200);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #34c759, #30d158);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 120px 24px;
    background: var(--nl-gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 19px;
    color: var(--nl-gray-500);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.feature-card {
    background: var(--nl-white);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,113,227,0.03), rgba(88,86,214,0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.feature-icon.blue { background: linear-gradient(135deg, #007AFF, #5856D6); }
.feature-icon.purple { background: linear-gradient(135deg, #AF52DE, #5856D6); }
.feature-icon.green { background: linear-gradient(135deg, #34C759, #30D158); }
.feature-icon.orange { background: linear-gradient(135deg, #FF9500, #FF3B30); }
.feature-icon.pink { background: linear-gradient(135deg, #FF2D55, #AF52DE); }
.feature-icon.teal { background: linear-gradient(135deg, #5AC8FA, #007AFF); }

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 15px;
    color: var(--nl-gray-500);
    line-height: 1.55;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: 140px 24px;
    background: var(--nl-white);
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--nl-blue), #5856D6, #AF52DE, #FF2D55);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 0;
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
    text-align: right;
    padding-right: 80px;
    padding-left: 0;
}

.process-content {
    flex: 1;
    padding-left: 80px;
    position: relative;
    z-index: 2;
    background: var(--nl-white);
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--nl-white);
    border: 3px solid var(--nl-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--nl-blue);
    z-index: 1;
    transition: all 0.4s ease;
}

.process-item:hover .process-number {
    background: var(--nl-blue);
    color: white;
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 113, 227, 0.4);
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-item:nth-child(1) .process-icon { background: linear-gradient(135deg, #007AFF, #5856D6); }
.process-item:nth-child(2) .process-icon { background: linear-gradient(135deg, #AF52DE, #5856D6); }
.process-item:nth-child(3) .process-icon { background: linear-gradient(135deg, #34C759, #30D158); }
.process-item:nth-child(4) .process-icon { background: linear-gradient(135deg, #FF9500, #FF3B30); }

.process-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.process-description {
    font-size: 16px;
    color: var(--nl-gray-500);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 140px 24px;
    background: var(--nl-black);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 0% 0%, rgba(88, 86, 214, 0.15), transparent),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(0, 113, 227, 0.1), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.testimonials-header p {
    font-size: 19px;
    color: var(--nl-gray-400);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 24px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
    fill: #FFD60A;
}

.testimonial-quote {
    font-size: clamp(20px, 3vw, 26px);
    color: white;
    line-height: 1.5;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: var(--nl-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--nl-gray-400);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--nl-blue);
    transform: scale(1.2);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 120px 24px;
    background: var(--nl-white);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    padding: 24px;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.team-member:hover {
    background: var(--nl-gray-50);
    transform: translateY(-8px);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    color: white;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member:hover .team-avatar {
    transform: scale(1.08);
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed transparent;
    transition: all 0.5s ease;
}

.team-member:hover .team-avatar::after {
    border-color: var(--nl-blue);
    animation: spin 10s linear infinite;
}

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

.team-avatar.gradient-1 { background: linear-gradient(135deg, #007AFF, #5856D6); }
.team-avatar.gradient-2 { background: linear-gradient(135deg, #AF52DE, #5856D6); }
.team-avatar.gradient-3 { background: linear-gradient(135deg, #34C759, #30D158); }
.team-avatar.gradient-4 { background: linear-gradient(135deg, #FF9500, #FF3B30); }

.team-name {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--nl-gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nl-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nl-gray-600);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--nl-blue);
    color: white;
    transform: translateY(-3px);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
    padding: 120px 24px;
    background: var(--nl-gray-50);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--nl-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.portfolio-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ==================== AWARDS/CLIENTS SECTION ==================== */
.clients-section {
    padding: 100px 24px;
    background: var(--nl-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-logo img {
    max-height: 48px;
    width: auto;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 120px 24px;
    background: var(--nl-gray-100);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--nl-white);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--nl-gray-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--nl-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--nl-gray-400);
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 32px 24px;
    font-size: 16px;
    color: var(--nl-gray-500);
    line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 160px 24px;
    background: var(--nl-black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-section p {
    font-size: 19px;
    color: var(--nl-gray-400);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--nl-blue);
    color: white;
    padding: 18px 36px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
}

.cta-button:hover::before {
    animation: shimmer 1s ease;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 113, 227, 0.5);
    color: white;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--nl-gray-100);
    padding: 48px 24px;
    border-top: 0.5px solid var(--nl-gray-200);
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 0.5px solid var(--nl-gray-200);
}

.footer-logo {
    font-size: 21px;
    font-weight: 600;
    color: var(--nl-gray-700);
}

.footer-logo span {
    color: var(--nl-blue);
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--nl-gray-700);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 12px;
    color: var(--nl-gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--nl-blue);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--nl-gray-500);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--nl-gray-500);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--nl-blue);
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Grain overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.02;
    z-index: 10000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .portfolio-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .process-timeline::before {
        left: 28px;
    }

    .process-item,
    .process-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .process-item:nth-child(even) .process-content {
        text-align: left;
        padding-right: 0;
    }

    .process-number {
        left: 28px;
    }

    .process-content {
        padding-left: 0;
        background: var(--nl-white);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .primary-navigation,
    .nav-cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-headline {
        font-size: clamp(36px, 10vw, 56px);
    }

    .visual-devices {
        flex-direction: column;
        align-items: center;
    }

    .device.laptop {
        width: 100%;
        max-width: 400px;
    }

    .device.phone {
        width: 160px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* WordPress specific */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Admin bar fix */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
