/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-floating {
    background-color: #25D366;
}

.whatsapp-floating:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.call-floating {
    background-color: #000000;
}

.call-floating:hover {
    background-color: #333333;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-showcase {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    padding: 15px;
    opacity: 0.35;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background: #2a2a2a;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(70%) contrast(1.15) brightness(0.95);
    transition: all 0.5s ease;
    display: block;
}

.showcase-item:hover img {
    filter: grayscale(20%) contrast(1.25) brightness(1.1);
    transform: scale(1.08);
}

/* Grid positioning for creative layout */
.showcase-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    animation: fadeInScale 1s ease 0.2s both;
}

.showcase-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    animation: fadeInScale 1s ease 0.4s both;
}

.showcase-3 {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
    animation: fadeInScale 1s ease 0.6s both;
}

.showcase-4 {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    animation: fadeInScale 1s ease 0.8s both;
}

.showcase-5 {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
    animation: fadeInScale 1s ease 1s both;
}

.showcase-6 {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
    animation: fadeInScale 1s ease 1.2s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.8s ease;
}

.hero-badge i {
    color: #FFD700;
    font-size: 1.2rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 .highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: expandWidth 1s ease 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
    color: #e0e0e0;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #cccccc;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    color: #25D366;
    font-size: 1.2rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.2s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1rem;
}

.trust-item span {
    color: #e0e0e0;
    font-weight: 500;
}

.trust-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.pulse-btn {
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border: 2px solid transparent;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.call-btn:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.whatsapp-btn-large,
.call-btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.whatsapp-btn-large {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.call-btn-large {
    background-color: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.call-btn-large:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    font-weight: 700;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1a1a1a, transparent);
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery {
    background-color: #f8f8f8;
}

.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.category-title i {
    margin-right: 10px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.artist-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.artist-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #f0f0f0;
}

.artist-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-badge i {
    color: #FFD700;
    font-size: 1.2rem;
}

.artist-info {
    flex: 1;
    min-width: 300px;
}

.artist-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.artist-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.artist-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Why Choose Section */
.why-choose {
    background-color: #f8f8f8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background-color: #fff;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #1a1a1a;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #666;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-badge.best {
    background-color: #1a1a1a;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    margin-top: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.price-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: #25D366;
    font-size: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 1rem;
}

.pricing-note i {
    color: #1a1a1a;
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f8f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: #999;
}

/* How It Works Section */
.how-it-works {
    background-color: #fff;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background-color: #f8f8f8;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-icon {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #ccc;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta h2::after {
    background: linear-gradient(90deg, transparent, white, transparent);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-showcase {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .showcase-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .showcase-2 {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
    }

    .showcase-3 {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .showcase-4 {
        grid-column: 3 / 5;
        grid-row: 2 / 3;
    }

    .showcase-5 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .showcase-6 {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }

    .hero-showcase {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        opacity: 0.15;
        gap: 8px;
        padding: 8px;
    }

    .showcase-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .showcase-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .showcase-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .showcase-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .showcase-5 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .showcase-6 {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .showcase-item {
        border-radius: 8px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero h1 .highlight::after {
        height: 2px;
        bottom: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-features {
        gap: 8px;
        flex-wrap: wrap;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 10px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .hero-trust {
        gap: 12px;
        flex-wrap: wrap;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .trust-divider {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item img {
        height: 300px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .artist-image img {
        max-width: 100%;
    }

    .artist-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 100vh;
        padding: 15px 0;
    }

    .hero-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        opacity: 0.12;
        gap: 5px;
        padding: 5px;
    }

    .showcase-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .showcase-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .showcase-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .showcase-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .showcase-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .showcase-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .showcase-item {
        border-radius: 6px;
    }

    .hero-content {
        padding: 30px 10px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .hero-features {
        gap: 6px;
        margin-bottom: 30px;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .feature-item i {
        font-size: 1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
        margin-top: 25px;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .trust-divider {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 5px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
        margin: 0;
    }

    .whatsapp-btn-large,
    .call-btn-large {
        padding: 16px 25px;
        font-size: 1rem;
        width: 100%;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .category-section {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 300px;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 0 10px;
    }

    .artist-info h3 {
        font-size: 1.6rem;
    }

    .artist-info p {
        font-size: 0.9rem;
    }

    .artist-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        justify-content: center;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .step-card {
        min-width: 100%;
        padding: 25px 15px;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .final-cta {
        padding: 50px 0;
    }

    .final-cta h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .floating-cta {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .scroll-indicator {
        font-size: 1.2rem;
    }
}