/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    line-height: 1.6;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

::selection {
    background-color: rgba(253, 100, 0, 0.3);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.highlight {
    color: #fd6400;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #fd6400 0%, transparent 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #fd6400;
    color: #000000;
    box-shadow: 0 4px 14px 0 rgba(253, 100, 0, 0.39);
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(253, 100, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fd6400;
    border: 2px solid #fd6400;
}

.btn-secondary:hover {
    background-color: #fd6400;
    color: #000000;
    box-shadow: 0 0 20px rgba(253, 100, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fd6400;
    border: 2px solid #fd6400;
}

.btn-outline:hover {
    background-color: #fd6400;
    color: #000000;
}

.btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(225, 48, 108, 0.4);
}

.btn-icon {
    padding: 0.5rem;
    background: transparent;
    color: #fd6400;
    border: 2px solid #fd6400;
}

.btn-icon:hover {
    background-color: #fd6400;
    color: #000000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fd6400 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #fd6400;
}

.social-icons {
    display: none;
    margin-top: 8px;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fd6400;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #fd6400;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #9ca3af;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-mobile a:hover {
    color: #fd6400;
    background-color: rgba(45, 45, 45, 0.5);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #161515;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .social-icons {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid #161515;
    opacity: 0.3;
}

.shape-1 {
    top: 5rem;
    left: 2rem;
    width: 8rem;
    height: 8rem;
    transform: rotate(45deg);
}

.shape-2 {
    bottom: 8rem;
    right: 4rem;
    width: 6rem;
    height: 6rem;
    border-color: #fd6400;
    transform: rotate(12deg);
    opacity: 0.4;
}

.glow {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor;
}

.glow-1 {
    top: 25%;
    right: 25%;
    background-color: #fd6400;
    color: #fd6400;
    opacity: 0.6;
}

.glow-2 {
    bottom: 33%;
    left: 20%;
    background-color: #ff8533;
    color: #ff8533;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title .subtitle {
    display: block;
    color: #9ca3af;
}

.hero-description {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 32rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fd6400;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Visual */
.hero-visual {
    display: none;
    justify-content: center;
    align-items: center;
    position: relative;
}

.music-player {
    position: relative;
    width: 24rem;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-ring {
    position: relative;
    width: 16rem;
    height: 16rem;
    border: 2px solid #fd6400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111010;
    animation: rotate 20s linear infinite;
}

.music-icon {
    color: #fd6400;
    opacity: 0.8;
}

.floating-dots {
    position: absolute;
}

.dot {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.dot-1 {
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background-color: #fd6400;
    color: #fd6400;
    opacity: 0.8;
}

.dot-2 {
    bottom: 0;
    right: 2rem;
    width: 1rem;
    height: 1rem;
    background-color: #ff8533;
    color: #ff8533;
    opacity: 0.6;
}

.dot-3 {
    top: 33%;
    left: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #ffffff;
    color: #ffffff;
    opacity: 0.4;
}

.dot-4 {
    top: 66%;
    right: -0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #9ca3af;
    color: #9ca3af;
    opacity: 0.5;
}

.audio-bars {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 0.25rem;
}

.bar {
    width: 0.25rem;
    background-color: #fd6400;
    border-radius: 0.125rem 0.125rem 0 0;
    animation: pulse 2s ease-in-out infinite alternate;
}

.bar:nth-child(1) {
    height: 0.75rem;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    height: 1.5rem;
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    height: 1rem;
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    height: 2rem;
    animation-delay: 0.3s;
}

.bar:nth-child(5) {
    height: 1.25rem;
    animation-delay: 0.4s;
}

.bar:nth-child(6) {
    height: 1.75rem;
    animation-delay: 0.5s;
}

.bar:nth-child(7) {
    height: 0.875rem;
    animation-delay: 0.6s;
}

.bar:nth-child(8) {
    height: 1.5rem;
    animation-delay: 0.7s;
}

.bar:nth-child(9) {
    height: 1.125rem;
    animation-delay: 0.8s;
}

.bar:nth-child(10) {
    height: 2rem;
    animation-delay: 0.9s;
}

.bar:nth-child(11) {
    height: 0.75rem;
    animation-delay: 1s;
}

.bar:nth-child(12) {
    height: 1.25rem;
    animation-delay: 1.1s;
}

.bar:nth-child(13) {
    height: 1.5rem;
    animation-delay: 1.2s;
}

.bar:nth-child(14) {
    height: 1rem;
    animation-delay: 1.3s;
}

.bar:nth-child(15) {
    height: 0.625rem;
    animation-delay: 1.4s;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        display: flex;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #111010;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #fd6400;
    box-shadow: 0 0 30px rgba(253, 100, 0, 0.2);
    transform: translateY(-4px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fd6400;
    color: #000000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    background-color: #fd6400;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-cta {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.services-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    padding: .4rem .7rem;
    border: 1px solid #444;
    background: #1b1b1b;
    color: #eee;
    border-radius: 8px;
    cursor: pointer;
    font: 500 0.9rem/1 Inter, system-ui;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.lang-btn:hover {
    transform: translateY(-1px);
    border-color: #666;
}

.lang-btn.active {
    background: #fd6400;
    color: #000;
    border-color: #fd6400;
}

.mf-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1000;
}

.mf-modal[aria-hidden="false"] {
    display: block;
}

.mf-modal__backdrop {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.45);
}

.mf-modal__dialog {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 820px;
    max-height: 80vh;
    overflow: auto;
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #eee;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

@media (min-width: 640px) {
    .mf-modal__dialog {
        padding: 28px 28px;
    }
}

@media (max-width: 640px) {
    .hero-content {
        margin-top: 48px;
    }
    .logo h1 {
        font-size: 18px;
    }
    #browseBeatsBtn {
        margin-bottom: 24px;
    }
}

.mf-modal__title {
    font: 800 1.6rem/1.2 Inter, system-ui;
    letter-spacing: .3px;
    margin: 4px 40px 16px 4px;
}

.mf-modal__subtitle {
    font: 700 1.05rem/1.3 Inter, system-ui;
    margin: 18px 0 8px;
}

.mf-modal__content {
    font: 400 0.98rem/1.6 Inter, system-ui;
}

.mf-modal__content p {
    margin: 10px 0 14px;
}

.mf-modal__list {
    margin: 6px 0 12px 1.2rem;
}

.mf-modal__list li {
    margin: 6px 0;
}

.mf-modal__muted {
    color: #bdbdbd;
    font-size: .9rem;
}

.mf-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font: 700 20px/1 Inter, system-ui;
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.mf-modal__close:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

/* Scrollbar hübsch */
.mf-modal__dialog::-webkit-scrollbar {
    width: 10px;
}

.mf-modal__dialog::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.mf-modal__dialog::-webkit-scrollbar-track {
    background: transparent;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Beats Section */
.beats {
    padding: 5rem 0;
    background-color: #000000;
}

.beatstars-notice {
    background-color: #2b2b2b;
    border: 1px solid #161515;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    color: #d1d5db;
    font-size: 0.875rem;
    max-width: 32rem;
    margin: 2rem auto 0;
}

.beats-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.beat-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.beat-card:hover {
    border-color: #fd6400;
    box-shadow: 0 0 30px rgba(253, 100, 0, 0.2);
    transform: translateY(-4px);
}

/* Hover-Style auch aktiv halten, solange Song spielt */
.beat-card.playing {
    border-color: #fd6400;
    box-shadow: 0 0 30px rgba(253, 100, 0, 0.2);
    transform: translateY(-4px);
}

.beat-card.playing .beat-artwork img {
    transform: scale(1.05);
}

.beat-card.playing .play-overlay {
    opacity: 1 !important;
}

.beat-artwork {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.beat-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.beat-card:hover .beat-artwork img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beat-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 4rem;
    height: 4rem;
    background-color: #fd6400;
    color: #000000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: #e55a00;
    transform: scale(1.1);
}

.play-btn svg {
    width: 24px;
    height: 24px;
}

.play-btn svg {
    transition: 0.2s ease;
}

.play-btn .icon-pause {
    display: none;
}

.play-btn.playing .icon-play {
    display: none;
}

.play-btn.playing .icon-pause {
    display: block;
}

.beat-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fd6400;
    color: #000000;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.beat-info {
    padding: 1.5rem;
}

.beat-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.beat-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.audio-player {
    background-color: #2b2b2b;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.player-header {
    display: flex;
    justify-content: between;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 0.5rem;
}

.wave-bar {
    width: 0.125rem;
    background-color: #6a6a6a;
    border-radius: 0.0625rem;
    transition: background-color 0.3s ease;
}

.wave-bar:nth-child(odd) {
    height: 0.75rem;
}

.wave-bar:nth-child(even) {
    height: 1rem;
}

.wave-bar:nth-child(3n) {
    height: 0.5rem;
}

.wave-bar:nth-child(4n) {
    height: 1.25rem;
}

.wave-bar.playing-animation {
    background-color: #fd6400;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-play-btn {
    width: 2rem;
    height: 2rem;
    background-color: #fd6400;
    color: #000000;
    border: none;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.progress-bar {
    flex: 1;
    height: 0.5rem;
    background-color: #6a6a6a;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 12px;
}

.progress {
    height: 100%;
    background-color: #fd6400;
    width: 0%;
    transition: width 0.3s ease;
}

.beat-actions {
    display: flex;
    gap: 0.5rem;
}

.beat-actions .btn {
    flex: 1;
}

.beat-actions .btn-icon {
    flex: none;
}

.beatstars-cta {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.beatstars-icon {
    width: 3rem;
    height: 3rem;
    background-color: #fd6400;
    color: #000000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.beatstars-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.beatstars-cta p {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .beats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .beats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #111010;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #fd6400;
    box-shadow: 0 0 30px rgba(253, 100, 0, 0.2);
    transform: translateY(-4px);
}

.quote-icon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fd6400;
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    color: #d1d5db;
    font-style: italic;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #161515;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #fd6400 0%, #ff8533 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.author-role {
    font-size: 0.875rem;
    color: #9ca3af;
}

.testimonials-stats {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    gap: 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #000000;
}

.contact-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #9ca3af;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #fd6400;
    box-shadow: 0 0 30px rgba(253, 100, 0, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.contact-icon.email {
    background-color: #fd6400;
    color: #000000;
}

.contact-icon.phone {
    background-color: #10b981;
    color: white;
}

.contact-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: #fd6400;
    font-size: 0.875rem;
}

.studio-location {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    color: #fd6400;
    margin-top: 0.25rem;
}

.studio-location h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.studio-location p {
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.studio-location small {
    color: #6b7280;
    font-size: 0.875rem;
}

.process-card,
.turnaround-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.process-card h3,
.turnaround-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background-color: #fd6400;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.process-step p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.turnaround-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.turnaround-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
}

.turnaround-item:not(:last-child) {
    border-bottom: 1px solid #161515;
}

.turnaround-item span:first-child {
    color: #9ca3af;
}

.turnaround-item span:last-child {
    color: #fd6400;
    font-weight: 600;
}

.turnaround-card small {
    color: #6b7280;
    font-size: 0.875rem;
}

.contact-cta {
    background: linear-gradient(135deg, #2b2b2b 0%, #111010 100%);
    border: 1px solid #161515;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 2fr 1fr;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: #111010;
    border-top: 1px solid #2a2a2a;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: #fd6400;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fd6400 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-tagline {
    font-size: 1.125rem;
    color: #fd6400;
    margin-bottom: 1rem;
}

.footer-description {
    color: #6b7280;
    line-height: 1.6;
    max-width: 24rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social .social-link.email {
    background-color: #fd6400;
    color: #000000;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social .social-link:hover {
    transform: scale(1.1);
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links nav {
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fd6400;
}

.services-list {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.services-list div {
    color: #9ca3af;
}

.footer-contact h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-contact div {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #161515;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-made-with {
    color: #9ca3af;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.heart {
    color: #fd6400;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.5);
    }
}

/* Utility Classes */
.playing-animation {
    animation: pulse 0.5s ease-in-out infinite alternate !important;
}

/* Focus States */
*:focus {
    outline: 2px solid #fd6400;
    outline-offset: 2px;
}

/* Smooth Transitions */
button,
a,
[role="button"] {
    transition-property: color, background-color, border-color, transform, box-shadow, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}