@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --primary-dark: #5046E5;
    --secondary: #FF6B9D;
    --accent: #00D9FF;
    --dark: #1A1A2E;
    --darker: #0F0F1A;
    --light: #F8F9FA;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --success: #10B981;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary), #FF8FB1);
    color: white;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    margin: 0 15px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.logo i {
    font-size: 20px;
    color: var(--primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1001;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 20px;
}

.nav-mobile a:hover {
    color: var(--primary);
}

.nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

main {
    padding-top: 80px;
}

.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #F0EFFF 0%, #FFF0F5 50%, #E8FFFE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    font-size: 18px;
    color: var(--secondary);
}

.hero-badge span {
    font-size: 12px;
    font-weight: 600;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-header p {
    font-size: 13px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.features {
    background: var(--darker);
    color: white;
}

.features .section-header h2 {
    color: white;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.services {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
    border-color: var(--primary);
}

.service-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.step p {
    font-size: 12px;
    color: var(--gray);
}

.testimonials {
    background: linear-gradient(135deg, #6C63FF 0%, #5046E5 100%);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author i {
    font-size: 24px;
    opacity: 0.8;
}

.testimonial-author span {
    font-size: 12px;
    font-weight: 600;
}

.cta {
    background: linear-gradient(135deg, #FFF0F5 0%, #F0EFFF 100%);
    text-align: center;
}

.cta h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--dark);
}

.cta p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: var(--darker);
    color: white;
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 250px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    margin-bottom: 12px;
    color: white;
}

.footer-col a {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--primary);
}

.page-hero {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, #F0EFFF 0%, #FFF0F5 50%, #E8FFFE 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--dark);
}

.page-hero p {
    font-size: 14px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.about-content {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team {
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-card span {
    font-size: 12px;
    color: var(--gray);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
}

.values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 20px;
}

.value-card i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark);
}

.value-card p {
    font-size: 12px;
    color: var(--gray);
}

.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.product-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.product-card i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--primary);
}

.product-card.featured i {
    color: white;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.product-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-card.featured .product-price {
    color: white;
}

.product-features {
    text-align: left;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 12px;
    color: var(--gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card.featured .product-features li {
    color: rgba(255, 255, 255, 0.8);
}

.product-features i {
    font-size: 12px;
    color: var(--success);
    margin-bottom: 0;
}

.product-card.featured .product-features i {
    color: white;
}

.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form-container > p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 13px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 25px;
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card i {
    font-size: 16px;
    opacity: 0.8;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thankyou-page,
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thankyou-icon,
.error-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.thankyou-icon {
    color: var(--success);
}

.error-icon {
    color: var(--secondary);
}

.thankyou-page h1,
.error-page h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--dark);
}

.thankyou-page p,
.error-page p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 400px;
}

.policy-content {
    background: white;
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: var(--dark);
}

.policy-text h3 {
    font-size: 15px;
    margin: 20px 0 10px;
    color: var(--dark);
}

.policy-text p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.policy-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-text li {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 6px;
    list-style: disc;
}

.policy-date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker);
    color: white;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary);
    color: white;
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dj-services {
    background: white;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dj-card {
    background: var(--light);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.dj-card:hover {
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
}

.dj-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.dj-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
}

.dj-card p {
    font-size: 12px;
    color: var(--gray);
}

.faq {
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 12px;
    color: var(--gray);
}

.mixtape-features {
    background: linear-gradient(135deg, var(--darker) 0%, #1A1A2E 100%);
    color: white;
}

.mixtape-features .section-header h2 {
    color: white;
}

.mixtape-features .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.mixtape-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mixtape-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.mixtape-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.mixtape-card i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.mixtape-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.mixtape-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.page-content-section {
    min-height: calc(100vh - 180px);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid,
    .mixtape-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .products-grid,
    .dj-grid,
    .mixtape-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-hero h1 {
        font-size: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header-inner {
        margin: 0 10px;
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .thankyou-icon,
    .error-icon {
        font-size: 50px;
    }
    
    .thankyou-page h1,
    .error-page h1 {
        font-size: 22px;
    }
}
