:root {
    --primary-red: #ff0000;
    --text-dark: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --pink: #E94ECD;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.text-red {
    color: var(--primary-red);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary {
    background: var(--pink);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(233, 78, 205, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 78, 205, 0.4);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.video-icon {
    position: absolute;
    left: 10%;
    top: 30%;
    width: 60px;
    height: 60px;
    background: var(--pink);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.share-icon {
    position: absolute;
    right: 10%;
    bottom: 30%;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.bubble svg {
    width: 24px;
    height: 24px;
    color: var(--pink);
    stroke-width: 2;
}

.bubble-1 {
    left: 5%;
    top: 25%;
    animation-delay: -1s;
    transform: scale(0.9);
}

.bubble-2 {
    right: 8%;
    top: 15%;
    animation-delay: -2s;
    transform: scale(1.1);
}

.bubble-3 {
    left: 12%;
    bottom: 35%;
    animation-delay: -3s;
    transform: scale(0.8);
}

.bubble-4 {
    right: 12%;
    top: 45%;
    animation-delay: -4s;
    transform: scale(1.2);
}

.bubble-5 {
    left: 30%;
    top: 20%;
    animation-delay: -5s;
    transform: scale(0.7);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) scale(1.05) rotate(5deg);
    }
}

.bubble::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(233, 78, 205, 0.15), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Ajustement des éléments décoratifs pour mobile */
    .video-icon {
        left: -20px;
        top: 10%;
        width: 40px;
        height: 40px;
    }

    .share-icon {
        right: -20px;
        bottom: 10%;
        width: 40px;
        height: 40px;
    }

    .bubble {
        transform: scale(0.7);
    }

    .bubble-1 {
        left: -10px;
        top: 15%;
    }

    .bubble-2 {
        right: -10px;
        top: 10%;
    }

    .bubble-3 {
        left: -15px;
        bottom: 20%;
    }

    .bubble-4 {
        right: -15px;
        bottom: 25%;
    }
}

/* Sections Common Styles */
section {
    padding: 5rem 5%;
    opacity: 1 !important;
    transform: none !important;
}

.services, .portfolio, .process, .faq {
    margin-top: 2rem;
    background: var(--background);
    position: relative;
    z-index: 1;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-y: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    opacity: 1;
    transform: none;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 78, 205, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    aspect-ratio: 9/16;
    cursor: pointer;
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Masquer les styles d'overlay qui ne sont plus utilisés */
.portfolio-overlay,
.stats,
.stats span {
    display: none;
}

/* Process Section */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    opacity: 1;
    transform: none;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--pink);
    opacity: 0.2;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: #fff;
}

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

.faq-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pink);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    color: var(--pink);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

.faq-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-content ul {
    list-style: none;
    padding-left: 1rem;
    margin: 1rem 0;
}

.faq-content li {
    color: var(--text-light);
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.faq-content li::before {
    content: "•";
    color: var(--pink);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-header h3 {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    color: var(--pink);
    font-size: 2rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--pink);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-main {
        align-items: center;
    }

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

/* Adjust the animation behavior */
.animate {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* How it Works Section */
.how-it-works {
    background: var(--background);
    padding: 6rem 5%;
}

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

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(233, 78, 205, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: var(--primary-red);
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), white);
    padding: 2rem;
}

.step-card:hover .step-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.step-hover-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.step-hover-content li {
    margin: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.step-hover-content li::before {
    content: "→";
    color: var(--pink);
    margin-right: 0.5rem;
}

/* Enhanced Portfolio Styles */
.platform-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--pink);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
}

.view-project {
    display: inline-block;
    background: var(--pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: white;
    color: var(--pink);
}

/* Platforms Section */
.platforms {
    padding: 6rem 5%;
    background: linear-gradient(to bottom, #fff5ff, #fff);
    text-align: center;
}

.platforms h2 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.underline {
    width: 100px;
    height: 4px;
    background: var(--pink);
    margin: 0 auto 4rem;
    border-radius: 2px;
}

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

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 78, 205, 0.1);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.instagram .platform-icon {
    color: #E4405F;
}

.tiktok .platform-icon {
    color: #000000;
}

.youtube .platform-icon {
    color: #FF0000;
}

.linkedin .platform-icon {
    color: #0077B5;
}

.facebook .platform-icon {
    color: #1877F2;
}

.views-badge {
    display: none;
}

.platform-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive adjustments for platforms section */
@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Pricing Sections Common Styles */
.pricing-videos, .pricing-coaching {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(to bottom, #fff5ff, #fff);
}

.pricing-videos {
    order: 2;
}

.pricing-coaching {
    order: 3;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(233, 78, 205, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(233, 78, 205, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--pink);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 78, 205, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pack-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.video-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pack-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 3em;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    width: 100%;
}

.features-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: bold;
}

.cta-button {
    background: var(--pink);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 78, 205, 0.3);
}

.cta-button.secondary:hover {
    background: var(--pink);
    color: white;
}

/* Responsive Design for Pricing Sections */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }

    .pricing-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        grid-column: span 1;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .price {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
        padding: 0 1rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
}

/* Platform Section Updates */
.section-title {
    color: var(--pink);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.platform-icon {
    color: var(--pink);
}

.instagram .platform-icon,
.tiktok .platform-icon,
.youtube .platform-icon,
.linkedin .platform-icon,
.facebook .platform-icon {
    color: var(--pink);
}

/* Remove views badge */
.views-badge {
    display: none;
}

/* Update pricing sections order */
.pricing-videos {
    order: 2;
}

.pricing-coaching {
    order: 3;
}

/* Enhance pricing cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(233, 78, 205, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(233, 78, 205, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--pink);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 78, 205, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Update CTA buttons */
.cta-button {
    background: var(--pink);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 78, 205, 0.3);
}

.cta-button.secondary:hover {
    background: var(--pink);
    color: white;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.payment-link {
    display: inline-block;
    text-decoration: none;
    background: var(--pink);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.payment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 78, 205, 0.3);
    color: white;
    text-decoration: none;
}

.pricing-card.featured .payment-link {
    background: linear-gradient(45deg, var(--pink), #ff6b6b);
}

.pricing-card.featured .payment-link:hover {
    background: linear-gradient(45deg, #ff6b6b, var(--pink));
    box-shadow: 0 6px 20px rgba(233, 78, 205, 0.4);
}

@media (max-width: 768px) {
    .payment-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Guarantee Banner Styles */
.guarantee-banner {
    background: linear-gradient(135deg, var(--pink) 0%, #ff6b6b 100%);
    padding: 2rem 5%;
    text-align: center;
    margin: 2rem auto 3rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(233, 78, 205, 0.15);
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.guarantee-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .guarantee-banner {
        margin: 1.5rem auto 2.5rem;
        padding: 1.5rem 1rem;
    }

    .guarantee-content h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
} 