/* Local Fonts - DSGVO konform */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500 900;
    font-display: swap;
    src: url('../assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500 900;
    font-display: swap;
    src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../assets/fonts/montserrat-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/playfair-italic.woff2') format('woff2');
}

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

:root {
    --primary: #ff6b35;
    --primary-light: #ff8c5a;
    --primary-dark: #e85a2a;
    --primary-glow: rgba(255, 107, 53, 0.5);
    --secondary: #ff4500;
    --accent: #f7931e;
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --gradient-text: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--accent) 100%);
}

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

html, body {
    overscroll-behavior-x: none;
}

/* Skip Link for Accessibility - Desktop only */
.skip-link {
    position: absolute;
    top: -100%;
    left: -9999px;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 0 12px 12px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    top: 0;
    left: 50%;
    outline: none;
    opacity: 1;
    pointer-events: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

main {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 10000;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--secondary);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Cursor nur auf Desktop mit Maus */
@media (hover: none), (pointer: coarse) {
    body {
        cursor: auto !important;
    }
    .cursor, .cursor-dot {
        display: none !important;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

/* Animated Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s ease-in-out infinite;
    box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.2);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* Safe-Area-Padding für Notch-iPhones */
    padding: calc(1.5rem + env(safe-area-inset-top, 0px)) max(5%, env(safe-area-inset-right)) 1.5rem max(5%, env(safe-area-inset-left));
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* iOS Status-Bar: Immer schwarzen Hintergrund */
    background: var(--bg-dark);
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Weniger Padding wenn gescrollt, Safe-Area beibehalten */
    padding: calc(1rem + env(safe-area-inset-top, 0px)) max(5%, env(safe-area-inset-right)) 1rem max(5%, env(safe-area-inset-left));
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

/* Reusable gradient text utility */
.gradient-text-style {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0;
    position: relative;
    background: linear-gradient(90deg, #fff, #ff9f43, #ff6b35, #ff9f43, #fff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    text-decoration: none;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo::before,
.logo::after {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: var(--primary);
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.4s ease;
    pointer-events: none;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-cta {
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: transparent;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #4ade80;
    margin-bottom: 2rem;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
    }
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: reveal 0.8s ease forwards;
}

.hero h1 .line:nth-child(2) .line-inner {
    animation-delay: 0.2s;
}

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

.hero h1 .gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: reveal 0.8s ease 0.2s forwards, gradient-shift 5s ease 1s infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fade-up 0.8s ease 0.5s forwards;
}

.highlight-word {
    color: var(--primary);
    font-weight: 600;
}

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

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fade-up 0.8s ease 0.7s forwards;
}

/* Shared button base styles */
.btn-primary,
.btn-secondary {
    padding: 1.1rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px var(--primary-glow);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--gradient);
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    border-color: transparent;
    transform: translateY(-4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fade-up 0.8s ease 1s forwards;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--text-primary);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: -50%;
    }
    100% {
        top: 150%;
    }
}

/* Hero Floating Frames */
.hero-frames {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-frame {
    position: absolute;
    width: 220px;
    opacity: 0;
    animation: frame-fade-in 1s ease forwards;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.floating-frame video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.frame-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    justify-content: space-around;
    border-radius: 0 0 12px 12px;
}

.frame-stat {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.frame-stat svg {
    width: 10px;
    height: 10px;
}

.frame-stat:first-child svg {
    color: #fe2c55;
}

.frame-1 {
    left: calc(50% - 580px);
    top: 50%;
    transform: translateY(-50%) rotate(-8deg);
    animation-delay: 0.3s;
    --rotate: -8deg;
}

.frame-2 {
    right: calc(50% - 580px);
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    animation-delay: 0.5s;
    --rotate: 10deg;
}

.frame-3 {
    display: none;
}

@keyframes frame-fade-in {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 40px)) rotate(var(--rotate, 0deg));
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(var(--rotate, 0deg));
    }
}

.floating-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.frame-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.35;
    filter: blur(25px);
    z-index: -1;
    animation: frame-glow-pulse 5s ease-in-out infinite;
}

.frame-1 .frame-glow { animation-delay: 0s; }
.frame-2 .frame-glow { animation-delay: 1.5s; }
.frame-3 .frame-glow { animation-delay: 3s; }

@keyframes frame-glow-pulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(1.15);
    }
}

/* Float animation for frames */
.floating-frame {
    animation: frame-fade-in 1s ease forwards, frame-float 6s ease-in-out infinite 1s;
}

.frame-1 { animation-delay: 0.3s, 1.3s; }
.frame-2 { animation-delay: 0.5s, 1.5s; }
.frame-3 { animation-delay: 0.7s, 1.7s; }

@keyframes frame-float {
    0%, 100% {
        transform: translateY(-50%) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(calc(-50% - 12px)) rotate(var(--rotate, 0deg));
    }
}

/* Marquee - Pure CSS infinite scroll */
.marquee-section {
    padding: 2rem 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
}

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

.marquee-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--primary);
}

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

.marquee-item::after {
    content: '✦';
    color: var(--primary);
    font-size: 0.6rem;
    margin-left: 1.5rem;
    opacity: 0.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 5%;
    overflow: hidden;
    position: relative;
}

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

.testimonials-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    flex-shrink: 0;
    width: 400px;
    background: linear-gradient(145deg, rgba(25, 18, 15, 0.95) 0%, rgba(18, 18, 18, 0.9) 50%, rgba(20, 15, 12, 0.95) 100%);
    border: 1px solid rgba(255, 107, 53, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .service-border-glow {
    border-radius: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    flex-shrink: 0;
    overflow: hidden;
}

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

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-handle {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-stats {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.testimonial-followers,
.testimonial-likes {
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.testimonial-followers {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.testimonial-likes {
    background: rgba(255, 70, 70, 0.1);
    color: #ff6b6b;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

.testimonial-platform {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.9;
}

.testimonial-platform svg {
    width: 26px;
    height: 26px;
}

.testimonial-platform.tiktok svg {
    fill: #fff;
    filter: drop-shadow(-1px 0 0 #25f4ee) drop-shadow(1px 0 0 #fe2c55);
}

.testimonial-platform.instagram svg {
    stroke: url(#instagram-gradient);
}

/* Sections Common */
section {
    padding: 10rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

/* .section-title .highlight uses gradient-text-style class */

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: transparent;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 50%;
    overflow: visible;
    aspect-ratio: 1/1;
    background: transparent;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    gap: 1rem;
}

.about-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.about-image-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.about-image-logo svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.about-image-frame {
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 2px solid transparent;
    border-image: var(--gradient) 1;
    border-radius: 30px;
    top: -20px;
    left: -20px;
    opacity: 0.3;
    animation: frame-rotate 10s linear infinite;
}

@keyframes frame-rotate {
    0% {
        border-image: linear-gradient(0deg, var(--primary), var(--secondary)) 1;
    }
    50% {
        border-image: linear-gradient(180deg, var(--primary), var(--secondary)) 1;
    }
    100% {
        border-image: linear-gradient(360deg, var(--primary), var(--secondary)) 1;
    }
}

.about-floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float-badge 5s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.about-floating-badge.badge-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.about-floating-badge.badge-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: -2.5s;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-floating-badge svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.about-floating-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.about-text h2 .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    color: var(--primary);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stat with Chart */
.stat-with-chart {
    position: relative;
    overflow: hidden;
}

.line-chart-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.stat-with-chart .stat-icon,
.stat-with-chart .stat-number,
.stat-with-chart .stat-label {
    position: relative;
    z-index: 1;
}

.chart-line {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

.chart-line.animate {
    animation: drawChart 5s linear forwards;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

/* Services Section */
.services {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.03) 50%, transparent 100%);
}

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

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Shine sweep effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 107, 53, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.service-card:hover::after {
    left: 100%;
}

/* Pulsing glow orb */
.service-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: pulse-glow 3s ease-in-out infinite;
}

.service-card:hover .service-glow {
    opacity: 1;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.service-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 0%,
        transparent 60%,
        var(--primary) 70%,
        var(--secondary) 80%,
        var(--accent) 90%,
        transparent 95%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 4s linear infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-border-glow {
    opacity: 1;
}

/* Testimonial cards use same border glow but different radius */
.testimonial-card .service-border-glow {
    border-radius: 20px;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes border-rotate {
    to {
        --border-angle: 360deg;
    }
}

/* Service Result Badge */
.service-result-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-light);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-result-badge.service-popular {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(255, 69, 0, 0.25) 100%);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.service-card:hover .service-result-badge {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.service-card:hover .service-result-badge.service-popular {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon-glow {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-tags span {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--primary-light);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .service-tags span {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.service-cta:hover {
    gap: 1.25rem;
}

.service-cta:hover::after {
    width: 100%;
}

/* Portfolio Section */
.portfolio {
    background: var(--bg-card);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:first-child {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--bg-dark) 100%);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-dark) 100%);
}

.portfolio-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-placeholder svg {
    opacity: 0.6;
    transform: scale(1.1);
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-video {
    transform: scale(1.05);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-info span {
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.portfolio-item:hover .portfolio-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.portfolio-play svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 4px;
}

/* Video active state - hide play button when playing with sound */
.portfolio-item.video-active .portfolio-play {
    opacity: 0;
    pointer-events: none;
}

.portfolio-item.video-active::before {
    opacity: 0;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.video-modal-player {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    background: black;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* .contact-info h2 .gradient uses gradient-text-style class */

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Badges */
.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-badge:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.contact-badge svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-badge strong {
    color: var(--primary);
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

/* Floating Label Form Design */
.form-group-float {
    position: relative;
    margin-bottom: 2rem;
}

.form-group-float input,
.form-group-float textarea,
.form-group-float select {
    width: 100%;
    padding: 1.5rem 1rem 0.75rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-float label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-float label svg {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.form-group-float textarea ~ label {
    top: 1.25rem;
    transform: none;
}

/* Floating effect on focus/filled */
.form-group-float input:focus ~ label,
.form-group-float input.has-value ~ label,
.form-group-float select:focus ~ label,
.form-group-float select.has-value ~ label,
.form-group-float textarea:focus ~ label,
.form-group-float textarea.has-value ~ label {
    top: 0.5rem;
    transform: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group-float input:focus ~ label,
.form-group-float select:focus ~ label,
.form-group-float textarea:focus ~ label {
    color: var(--primary);
}

.form-group-float input:focus ~ label svg,
.form-group-float select:focus ~ label svg,
.form-group-float textarea:focus ~ label svg {
    color: var(--primary);
}

/* Gradient underline */
.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.form-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: var(--gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.form-group-float input:focus ~ .form-line::after,
.form-group-float select:focus ~ .form-line::after,
.form-group-float textarea:focus ~ .form-line::after {
    width: 100%;
}

/* Glow effect on focus */
.form-group-float input:focus,
.form-group-float select:focus,
.form-group-float textarea:focus {
    outline: none;
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.form-group-float textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 2rem;
}

.form-group-float select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff6b35' 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 1rem center;
    background-size: 18px;
}

.form-group-float select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
    padding: 0.75rem;
}

.form-group-float select option:hover,
.form-group-float select option:checked {
    background-color: var(--primary);
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Field error styling */
.field-error {
    color: #ff4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-left: 0.25rem;
}

.form-group-float.has-error .form-line,
.has-error ~ .form-line {
    background: #ff4444;
}

input.has-error,
textarea.has-error,
select.has-error {
    border-color: #ff4444 !important;
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translate(3px, -3px);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    animation: slideIn 0.4s ease;
    transition: opacity 0.3s ease;
}

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

.form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-message-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-message-success .form-message-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.form-message-error .form-message-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.form-message-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Honeypot - invisible to users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Paper Plane Animation - Rocket Style */
.paperplane-flying {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
    animation: rocket-rise 1s ease-out forwards;
}

/* Trail unter der Rakete */
.paperplane-flying::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    transform: translateX(-50%);
}

@keyframes rocket-rise {
    0% {
        transform: translateY(0) rotate(-45deg) scale(1);
        opacity: 1;
    }
    70% {
        transform: translateY(-320px) rotate(-45deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-350px) rotate(-45deg) scale(0);
        opacity: 0;
    }
}

/* Mobile: kürzere Flughöhe */
@media (max-width: 768px) {
    .paperplane-flying {
        animation: rocket-rise-mobile 1s ease-out forwards !important;
    }
}

@keyframes rocket-rise-mobile {
    0% {
        transform: translateY(0) rotate(-45deg) scale(1);
        opacity: 1;
    }
    70% {
        transform: translateY(-180px) rotate(-45deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) rotate(-45deg) scale(0);
        opacity: 0;
    }
}

/* Firework Burst */
.firework-container {
    position: fixed;
    z-index: 10001;
    pointer-events: none;
}

.firework-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 107, 53, 0.6);
}

.firework-particle:nth-child(1) { animation: fw-1 0.75s ease-out forwards; }
.firework-particle:nth-child(2) { animation: fw-2 0.75s ease-out forwards; }
.firework-particle:nth-child(3) { animation: fw-3 0.75s ease-out forwards; }
.firework-particle:nth-child(4) { animation: fw-4 0.75s ease-out forwards; }
.firework-particle:nth-child(5) { animation: fw-5 0.75s ease-out forwards; }
.firework-particle:nth-child(6) { animation: fw-6 0.75s ease-out forwards; }
.firework-particle:nth-child(7) { animation: fw-7 0.75s ease-out forwards; }
.firework-particle:nth-child(8) { animation: fw-8 0.75s ease-out forwards; }

@keyframes fw-1 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(60px, 0) scale(0); opacity:0; } }
@keyframes fw-2 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(42px, -42px) scale(0); opacity:0; } }
@keyframes fw-3 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(0, -60px) scale(0); opacity:0; } }
@keyframes fw-4 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(-42px, -42px) scale(0); opacity:0; } }
@keyframes fw-5 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(-60px, 0) scale(0); opacity:0; } }
@keyframes fw-6 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(-42px, 42px) scale(0); opacity:0; } }
@keyframes fw-7 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(0, 60px) scale(0); opacity:0; } }
@keyframes fw-8 { 0% { transform: translate(0,0) scale(1); opacity:1; } 100% { transform: translate(42px, 42px) scale(0); opacity:0; } }

/* Success Overlay */
.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    padding: 2rem;
    max-width: 90vw;
}

.success-overlay.active .success-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-checkmark svg {
    width: 50px;
    height: 50px;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.success-checkmark svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkmark-draw 0.6s ease 0.4s forwards;
}

@keyframes checkmark-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-close {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Footer */
footer {
    background: var(--bg-dark);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.footer-column ul a:hover::before {
    width: 100%;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Impressum Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border-radius: 28px;
    padding: 3.5rem;
    max-width: 650px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gradient);
    color: white;
    transform: rotate(90deg);
}

.modal h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.modal h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.modal p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%) translateY(30px) scale(0.5);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.scroll-to-top:active {
    transform: translateX(-50%) translateY(-2px) scale(0.95);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu a:active,
.mobile-menu a:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Reset active state on touch devices */
@media (hover: none) {
    .mobile-menu a:active {
        transform: translateY(0);
        color: var(--text-primary);
    }
}

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

    .about-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .portfolio-item:first-child {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    /* Floating Frames Tablet */
    .floating-frame {
        width: 140px;
    }

    .frame-1 {
        left: calc(50% - 420px);
        top: 50%;
        transform: translateY(-50%) rotate(-8deg);
    }

    .frame-2 {
        right: calc(50% - 420px);
        top: 50%;
        transform: translateY(-50%) rotate(10deg);
    }

    .frame-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        cursor: auto;
        overflow-x: hidden;
        touch-action: pan-y;
    }

    /* Hide skip link on mobile completely */
    .skip-link,
    .skip-link:focus {
        display: none !important;
        visibility: hidden !important;
    }

    .cursor, .cursor-dot {
        display: none;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        left: auto;
        transform: translateY(20px);
        width: 44px;
        height: 44px;
    }

    .scroll-to-top.visible {
        transform: translateY(0);
    }

    .scroll-to-top:hover {
        transform: translateY(-3px);
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

    section {
        padding: 4rem 5%;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: none;
    }

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

    .footer-legal {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .marquee-section {
        padding: 1rem 0;
    }

    .marquee {
        animation-duration: 20s;
    }

    .marquee-item {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        gap: 0.5rem;
    }

    .marquee-item svg {
        width: 18px;
        height: 18px;
    }

    .marquee-item::after {
        font-size: 0.5rem;
        margin-left: 1rem;
    }

    .about-floating-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .about-floating-badge.badge-1 {
        top: -10px;
        right: 10px;
    }

    .about-floating-badge.badge-2 {
        bottom: -10px;
        left: 10px;
    }

    .about-floating-badge svg {
        width: 16px;
        height: 16px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonials-header {
        padding: 0 5%;
        margin-bottom: 1rem;
    }

    .testimonials-header h2 {
        font-size: 1.25rem;
    }

    .testimonials-track {
        gap: 0.75rem;
    }

    .testimonial-card {
        width: 220px;
        padding: 0.85rem;
    }

    .testimonial-header {
        margin-bottom: 0.6rem;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        width: 32px;
        height: 32px;
    }

    .testimonial-name {
        font-size: 0.8rem;
    }

    .testimonial-handle {
        font-size: 0.65rem;
    }

    .testimonial-stats {
        gap: 0.25rem;
    }

    .testimonial-followers,
    .testimonial-likes {
        font-size: 0.55rem;
        padding: 0.15rem 0.3rem;
    }

    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .testimonial-platform {
        top: 0.75rem;
        right: 0.75rem;
    }

    .testimonial-platform svg {
        width: 16px;
        height: 16px;
    }

    /* Hero Mobile */
    .hero {
        padding: 0 5%;
        min-height: 100svh;
    }

    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Floating Frames Mobile - smaller and repositioned */
    .floating-frame {
        width: 70px;
        /* Mobile version of float animation without translateY(-50%) */
        animation: frame-fade-in-mobile 1s ease forwards, frame-float-mobile 6s ease-in-out infinite 1s;
    }

    @keyframes frame-fade-in-mobile {
        from {
            opacity: 0;
            transform: translateY(20px) rotate(var(--rotate, 0deg));
        }
        to {
            opacity: 1;
            transform: rotate(var(--rotate, 0deg));
        }
    }

    @keyframes frame-float-mobile {
        0%, 100% {
            transform: translateY(0) rotate(var(--rotate, 0deg));
        }
        50% {
            transform: translateY(-10px) rotate(var(--rotate, 0deg));
        }
    }

    .frame-1 {
        left: calc(50% - 190px);
        top: 28%;
        transform: rotate(-6deg);
        --rotate: -6deg;
        animation-delay: 0.3s;
    }

    .frame-2 {
        right: calc(50% - 190px);
        top: 28%;
        transform: rotate(8deg);
        --rotate: 8deg;
        animation-delay: 0.5s;
    }

    .frame-3 {
        display: none;
    }

    .frame-glow {
        opacity: 0.2;
        filter: blur(15px);
    }

    .frame-stats {
        padding: 4px 3px;
    }

    .frame-stat {
        font-size: 0.5rem;
        gap: 2px;
    }

    .frame-stat svg {
        width: 7px;
        height: 7px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* About Section Mobile */
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 1.5rem;
        padding: 0.85rem 0.5rem;
        gap: 0.25rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 14px;
        border: 1px solid rgba(255, 107, 53, 0.3);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .about-image {
        overflow: visible;
    }

    .about-image-wrapper {
        aspect-ratio: 1/1;
        max-width: 280px;
        margin: 0 auto;
        overflow: visible;
    }

    .about-image-logo {
        padding: 15px;
        overflow: visible;
    }

    .about-image-logo svg {
        overflow: visible;
    }

    /* Service Cards Mobile */
    .service-card {
        padding: 1.25rem;
    }

    .service-desc {
        display: none;
    }

    .service-glow {
        display: none;
    }

    .service-icon-glow {
        display: none;
    }

    .service-border-glow {
        opacity: 0.3;
        animation: none;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, transparent 100%);
    }

    .service-result-badge {
        position: static;
        display: inline-block;
        margin-bottom: 0.75rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.6rem;
        margin-top: 0;
        border-radius: 12px;
    }

    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .service-tags {
        gap: 0.35rem;
    }

    .service-tags span {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }

    /* Hide second tag on very small screens if too long */
    .service-tags span:nth-child(2) {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-cta {
        margin-top: 1rem;
        font-size: 0.85rem;
    }

    /* Portfolio Mobile */
    .portfolio-grid {
        gap: 1rem;
    }

    .portfolio-info h3 {
        font-size: 1.1rem;
    }

    .portfolio-info span {
        font-size: 0.8rem;
    }

    .portfolio-play {
        width: 60px;
        height: 60px;
    }

    .portfolio-play svg {
        width: 20px;
        height: 20px;
    }

    /* Contact Mobile - Stylish */
    .contact-form {
        padding: 1.25rem;
        border-radius: 16px;
        background: var(--bg-card);
    }

    .contact-info h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-info > p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .contact-badges {
        display: none;
    }

    .contact-badge {
        padding: 0.6rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        flex: 1;
        justify-content: center;
    }

    .contact-badge svg {
        width: 14px;
        height: 14px;
        min-width: 14px;
        max-width: 14px;
        min-height: 14px;
        max-height: 14px;
    }

    /* Floating Form Mobile - Match Desktop */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group-float {
        margin-bottom: 1.25rem;
    }

    .form-group-float input,
    .form-group-float textarea,
    .form-group-float select {
        padding: 1.4rem 1rem 0.7rem 2.75rem;
        font-size: 0.95rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .form-group-float label {
        font-size: 0.9rem;
        left: 1rem;
        gap: 0.5rem;
    }

    .form-group-float label svg {
        width: 16px;
        height: 16px;
    }

    .form-group-float input:focus ~ label,
    .form-group-float input.has-value ~ label,
    .form-group-float select:focus ~ label,
    .form-group-float select.has-value ~ label,
    .form-group-float textarea:focus ~ label,
    .form-group-float textarea.has-value ~ label {
        font-size: 0.6rem;
        top: 0.45rem;
        left: 1rem;
    }

    .form-group-float textarea {
        min-height: 110px;
        padding-top: 1.8rem;
    }

    .form-group-float textarea ~ label {
        top: 1.1rem;
    }

    .form-group-float input:focus,
    .form-group-float select:focus,
    .form-group-float textarea:focus {
        background: rgba(255, 107, 53, 0.05);
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    }

    .form-line {
        height: 2px;
        border-radius: 0 0 12px 12px;
    }

    .btn-submit {
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 12px;
        gap: 0.6rem;
        margin-top: 0.5rem;
    }

    .btn-submit svg {
        width: 18px;
        height: 18px;
    }

    /* Stats Mobile - Compact horizontal strip */
    .stat {
        flex: 1;
        padding: 0.5rem 0.25rem;
        background: transparent;
        border: none;
        border-radius: 0;
        position: relative;
    }

    .stat:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 60%;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.02em;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }

    .stat-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Footer Mobile */
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand .logo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

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

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

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

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

    .social-links {
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    /* Modal Mobile */
    .modal {
        padding: 1.5rem;
        border-radius: 16px;
        max-height: 85vh;
    }

    .modal h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .modal h3 {
        font-size: 0.95rem;
        margin-top: 1.5rem;
    }

    .modal p {
        font-size: 0.85rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: 1rem;
        right: 1rem;
    }
}

/* Extra Small Devices (phones in portrait) */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .testimonial-card {
        width: 200px;
        padding: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.7rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .contact-form {
        padding: 1.25rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Prevent horizontal page scroll when swiping testimonials */
    .testimonials-track {
        touch-action: pan-y pinch-zoom;
    }

    /* Larger tap targets */
    .nav-links a {
        padding: 0.75rem 0;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 48px;
    }

    .social-link {
        min-width: 48px;
        min-height: 48px;
    }

    /* Remove hover-only effects on touch */
    .service-card:hover {
        transform: none;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .portfolio-item:hover {
        transform: none;
    }

    .stat:hover {
        transform: none;
    }

    /* Show portfolio info always on touch */
    .portfolio-info {
        opacity: 1;
        transform: translateY(0);
    }

    .portfolio-item::before {
        opacity: 1;
    }

    .portfolio-play {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Landscape phone orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 5% 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    .hero {
        padding-left: max(5%, env(safe-area-inset-left));
        padding-right: max(5%, env(safe-area-inset-right));
    }

    nav {
        padding-left: max(5%, env(safe-area-inset-left));
        padding-right: max(5%, env(safe-area-inset-right));
    }

    footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cursor, .cursor-dot {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
}
