.partner-logo {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

}

/* =============================================
🎨 VARIABLES GLOBALES
============================================= */
:root {
    --neon-blue: #00CFFF;
    --premium-purple: #7D3CFF;
    --dark-bg: #1E1E2F;
    --darker-bg: #0A0A12;
    --light-text: #F0F0F0;
    --gray-accent: #2A2A3A;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    --glow: 0 0 15px rgba(0, 207, 255, 0.4);
    --btn-shadow: 0 4px 12px rgba(125, 60, 255, 0.3);
    --btn-hover-shadow: 0 6px 20px rgba(0, 207, 255, 0.4);
}

/* =============================================
📱 RESET & BASE STYLES
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #CCCCCC;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* =============================================
🎨 COMPOSANTS RÉUTILISABLES
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    min-height: 50px;
}
/* 
.btn-primary {
    background: linear-gradient(135deg, var(--premium-purple), #6A2CFF);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    z-index: 1;
    box-shadow: var(--btn-shadow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--btn-hover-shadow);
}

.btn-primary:hover::before {
    left: 100%;
} */

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--premium-purple));
    color: white;
    padding: 0.4rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
    box-shadow: 0 4px 15px rgba(0, 207, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 10px rgba(0, 207, 255, 0.3);
}

.offer-cta .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1.5rem;
    box-shadow: none;
}

.offer-cta .btn-primary:hover {
    box-shadow: 0 0 20px rgba(125, 60, 255, 0.5);
}


.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 8px;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(0, 207, 255, 0.3);
    /* backdrop-filter: blur(5px); */
}

.btn-secondary:hover {
    background: rgba(0, 207, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 207, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--neon-blue);
}

/* =============================================
🌌 EFFETS VISUELS
============================================= */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* =============================================
📌 NAVBAR
============================================= */
.navbar {
    background: rgba(30, 30, 47, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 207, 255, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: var(--glow);
    text-decoration: none;
}

.navbar-logo i {
    font-size: 1.8rem;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-menu a:hover {
    color: var(--neon-blue);
}

.navbar-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.burger-menu {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* =============================================
🏠 HERO SECTION
============================================= */
.hero-section {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-left: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-shadow: var(--glow);
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #CCCCCC;
    line-height: 1.6;
}

.highlight {
    color: var(--neon-blue);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(0, 207, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-illustration {
    flex: 1;
    text-align: center;
}

.hero-illustration img {
    max-width: 100%;
    border-radius: var(--border-radius);
    /* box-shadow: var(--box-shadow); */
    /* border: 1px solid var(--neon-blue); */
    transition: var(--transition);
}

.hero-illustration img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* =============================================
✨ SECTION AVANTAGES
============================================= */
.advantages-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--light-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--premium-purple));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--gray-accent);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(125, 60, 255, 0.2);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: rgba(125, 60, 255, 0.4);
}

.advantage-card:hover .icon-wrapper {
    background: rgba(125, 60, 255, 0.2);
    transform: scale(1.1);
}

.advantage-card:hover .icon-wrapper i {
    color: var(--premium-purple);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--light-text);
}

.card-text {
    color: #CCCCCC;
    line-height: 1.6;
}

/* =============================================
💰 SECTION OFFRES
============================================= */
.offers-section {
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.8;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.offer-card {
    background: var(--gray-accent);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(125, 60, 255, 0.2);
    position: relative;
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    position: relative;
    /* backdrop-filter: blur(5px); */
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    border-color: rgba(125, 60, 255, 0.4);
}

.offer-card.popular {
    border-color: var(--neon-blue);
    background: rgba(0, 207, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.2);
    transform: scale(1.03);
}

.offer-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    background: linear-gradient(135deg, var(--neon-blue), #00A3FF);
    color: var(--dark-bg);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 207, 255, 0.3);
    border: 1px solid rgba(0, 207, 255, 0.2);
}

.offer-header {
    margin-bottom: 2rem;
    text-align: center;
}

.offer-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.offer-price {
    color: #CCCCCC;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.offer-price span {
    color: var(--neon-blue);
    font-size: 2rem;
    font-weight: 700;
}

.offer-features {
    margin-bottom: 2.5rem;
}

.offer-features ul {
    list-style: none;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: #CCCCCC;
}

.offer-features i {
    color: var(--neon-blue);
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.offer-features .fa-times {
    color: #666;
}

.offer-cta {
    width: 100%;
    text-align: center;
}

/* =============================================
⚙️ SECTION FONCTIONNEMENT
============================================= */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.how-it-works-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.how-it-works-steps {
    flex: 1;
}

.step {
    margin-bottom: 3rem;
    padding-left: 2.5rem;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--neon-blue);
}

.step::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--neon-blue);
}

.step-icon {
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-text {
    color: #CCCCCC;
    line-height: 1.6;
}

.how-it-works-illustration {
    flex: 1;
    text-align: center;
}

.how-it-works-illustration img {
    max-width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--neon-blue);
    box-shadow: var(--box-shadow);
}

/* =============================================
🏆 SECTION POURQUOI NOUS
============================================= */
.why-us-section {
    padding: 6rem 0;
}

.why-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.why-us-text {
    flex: 1;
}

.why-us-text p {
    margin-bottom: 1.5rem;
    color: #CCCCCC;
    line-height: 1.8;
}

.why-us-features {
    flex: 1;
}

.feature {
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--premium-purple);
}

.feature::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--premium-purple);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: #CCCCCC;
    line-height: 1.6;
}

/* =============================================
📞 SECTION SUPPORT
============================================= */
.support-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.support-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.support-text {
    flex: 1;
    max-width: 500px;
}

.support-text p {
    margin-bottom: 1.5rem;
    color: #CCCCCC;
    line-height: 1.8;
}

.support-contact {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-method {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-accent);
    border-radius: var(--border-radius);
    border: 1px solid rgba(125, 60, 255, 0.2);
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(5px);
}

.contact-method:hover {
    background: rgba(125, 60, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(125, 60, 255, 0.4);
}

.contact-icon {
    margin: 0 auto 1.5rem;
}

.contact-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-text {
    color: #CCCCCC;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-faq {
    margin-top: 3rem;
}

.faq-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(240, 240, 240, 0.1);
    padding-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--neon-blue);
}

.faq-question h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.faq-question i {
    color: var(--neon-blue);
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =============================================
📝 FOOTER
============================================= */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Audiowide', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: var(--glow);
    margin-bottom: 2rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.footer-column-title {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: #CCCCCC;
    transition: var(--transition);
    display: block;
}

.footer-column a:hover {
    color: var(--neon-blue);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-social a {
    font-size: 1.8rem;
    color: var(--light-text);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(240, 240, 240, 0.1);
    border: 1px solid rgba(125, 60, 255, 0.2);
}

.footer-social a:hover {
    color: var(--neon-blue);
    background: rgba(0, 207, 255, 0.2);
    transform: translateY(-3px);
    border-color: var(--neon-blue);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 240, 240, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* =============================================
🔄 BOUTON CTA FLOTTANT
============================================= */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-purple), #6A2CFF);
    color: white;
    font-size: 0.8rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(125, 60, 255, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.floating-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.floating-cta a:hover::before {
    transform: translateX(100%);
}

.floating-cta a:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(125, 60, 255, 0.6);
}

.floating-cta i {
    font-size: 1.5rem;
}

/* =============================================
📱 RESPONSIVE DESIGN
============================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    :root {
        --border-radius: 10px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        padding-left: 0;
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(30, 30, 47, 0.98);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-top: 1px solid rgba(0, 207, 255, 0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .burger-menu {
        display: block;
    }

    .navbar-cta {
        display: none;
    }

    .how-it-works-content,
    .why-us-content,
    .support-content {
        flex-direction: column;
    }

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

    .support-contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-method {
        min-width: 100%;
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-cta a {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .offer-card {
        padding: 1.8rem 1.5rem;
    }

    .navbar-logo span {
        display: none;
    }

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

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* =============================================
🔍 ACCESSIBILITÉ
============================================= */
:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* =============================================
🎨 ANIMATIONS SUPPLÉMENTAIRES
============================================= */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

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

.advantage-card:hover,
.offer-card:hover,
.btn-primary:hover,
.contact-method:hover {
    animation: pulse 0.5s ease;
}

.hero-illustration img {
    animation: float 6s ease-in-out infinite;
}

/* =============================================
📄 CLASSES UTILITAIRES
============================================= */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
