/* ============================================================
   MUNDLE — Reusable UI Components
   Design System: Dark theme · Linear / Stripe / Vercel inspired
   ============================================================ */

/* ----------------------------------------------------------
   1. SECTION HEADERS
   Reusable across all pages for consistent section titling
   ---------------------------------------------------------- */

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header__overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}

.section-header__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color 0.8s ease;
}

.section-header__subtitle {
    color: rgba(0, 0, 0, 0.66);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    transition: color 0.8s ease;
}

/* Dark mode overrides inside content-overlap */
.content-overlap.dark-mode .section-header__title {
    color: #fff;
}

.content-overlap.dark-mode .section-header__subtitle {
    color: rgba(255, 255, 255, 0.68);
}


/* ----------------------------------------------------------
   2. FEATURE CARDS
   Used on inscription & index for highlighting features
   ---------------------------------------------------------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 20px);
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(250, 112, 154, 0.35);
    box-shadow: 0 8px 32px rgba(250, 112, 154, 0.08);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md, 14px);
    background: rgba(250, 112, 154, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C30E6E;
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.feature-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card__text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   3. STATS BAR
   Horizontal row of key statistics with gradient values
   ---------------------------------------------------------- */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    padding: 48px 0;
}

.stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stats-bar__value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stats-bar__label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
}


/* ----------------------------------------------------------
   4. COMPARATIF TABLE
   Mundle vs competitors comparison grid
   ---------------------------------------------------------- */

.comparatif {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparatif__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

/* --- thead --- */
.comparatif__table thead th {
    padding: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
}

.comparatif__table thead th:first-child {
    text-align: left;
}

.comparatif__table thead th.highlight {
    background: rgba(250, 112, 154, 0.05);
    border-top: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6)) 1;
    color: #fff;
}

/* --- tbody --- */
.comparatif__table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.comparatif__table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.comparatif__table tbody td.highlight {
    background: rgba(250, 112, 154, 0.04);
}

.comparatif__table tbody tr:last-child td {
    border-bottom: none;
}

/* --- cell icons --- */
.comparatif__check {
    color: #22c55e;
    font-weight: 700;
}

.comparatif__cross {
    color: rgba(255, 255, 255, 0.2);
}

.comparatif__value {
    color: #fff;
    font-weight: 700;
}


/* ----------------------------------------------------------
   5. TESTIMONIALS
   User quotes in a responsive card grid
   ---------------------------------------------------------- */

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 20px);
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-top: 8px;
}

.testimonial-card__quote::before {
    content: "«";
    font-size: 2rem;
    font-style: normal;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 8px;
}

.testimonial-card__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark, #0a0a14);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}


/* ----------------------------------------------------------
   6. DUAL AUDIENCE CARDS
   Side-by-side cards for Étudiant vs BDE
   ---------------------------------------------------------- */

.dual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .dual-grid {
        grid-template-columns: 1fr;
    }
}

.dual-card {
    background: var(--bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg, 20px);
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dual-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.dual-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dual-card__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.dual-card__icon--pink {
    background: rgba(250, 112, 154, 0.12);
    color: #C30E6E;
}

.dual-card__icon--purple {
    background: rgba(162, 155, 254, 0.12);
    color: var(--accent-purple, #A29BFE);
}

.dual-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dual-card__list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.dual-card__list li:last-child {
    border-bottom: none;
}

.dual-card__list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #C30E6E;
    stroke: currentColor;
}


/* ----------------------------------------------------------
   7. BENEFITS LIST
   Compact grid of benefit items with icon + text
   ---------------------------------------------------------- */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #C30E6E;
    stroke: currentColor;
    margin-top: 2px;
}

.benefit-item__content {
    display: flex;
    flex-direction: column;
}

.benefit-item__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.benefit-item__text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}


/* ----------------------------------------------------------
   8. SCREENSHOTS CAROUSEL
   Horizontally scrollable app screenshots
   ---------------------------------------------------------- */

.screenshots-scroll {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar across browsers */
.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshots-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.screenshot-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg, 20px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    background: var(--bg-card, rgba(255, 255, 255, 0.03));
}

.screenshot-card img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.screenshot-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 20px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}


/* ----------------------------------------------------------
   9. FAQ ACCORDION
   Expandable question/answer pairs
   ---------------------------------------------------------- */

.faq-section {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg,
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding-bottom: 20px;
    font-size: 0.92rem;
}


/* ----------------------------------------------------------
   10. CTA SECTION
   Final call-to-action blocks at page bottom
   ---------------------------------------------------------- */

.cta-section {
    padding: 80px 0;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl, 28px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250, 112, 154, 0.3), transparent);
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-card .section-header {
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ----------------------------------------------------------
   11. SECURITY BADGES
   Trust indicators for pricing & checkout flows
   ---------------------------------------------------------- */

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 24px 48px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.security-badge svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}


/* ----------------------------------------------------------
   12. COMMISSION CALCULATOR
   0% commission highlight block
   ---------------------------------------------------------- */

.commission-block {
    max-width: 700px;
    margin: 40px auto;
    border-radius: var(--radius-lg, 20px);
    padding: 40px;
    background: var(--bg-card, rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(250, 112, 154, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.commission-block__title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.commission-block__title svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    color: #C30E6E;
}

.commission-block__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.commission-block__row:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #fff;
}

.commission-block__label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.commission-block__row:last-child .commission-block__label {
    color: rgba(255, 255, 255, 0.85);
}

.commission-block__value {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.commission-block__value--highlight {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color, #C30E6E), var(--accent-yellow, #8B5CF6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.05rem;
}


/* ============================================================
   RESPONSIVE — Global component adjustments
   ============================================================ */

@media (max-width: 768px) {

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    /* Feature cards */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* Dual cards */
    .dual-card {
        padding: 28px 24px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Screenshot cards */
    .screenshot-card {
        flex: 0 0 220px;
    }

    .screenshot-card img {
        height: 380px;
    }

    /* CTA */
    .cta-card {
        padding: 40px 24px;
    }

    /* Commission */
    .commission-block {
        padding: 28px 24px;
        margin: 32px auto;
    }

    /* Security badges */
    .security-badges {
        gap: 16px;
    }
}

@media (max-width: 480px) {

    /* Even tighter on small phones */
    .feature-card {
        padding: 20px;
    }

    .dual-card {
        padding: 24px 20px;
    }

    .screenshot-card {
        flex: 0 0 190px;
    }

    .screenshot-card img {
        height: 320px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons > * {
        width: 100%;
    }

    .commission-block {
        padding: 24px 20px;
    }
}


/* ----------------------------------------------------------
   NEW BEM MODIFIERS — index.html rewrite
   ---------------------------------------------------------- */

/* Dual-grid (inside showcase-block, replaces inline flex) */
.dual-grid__column {
    flex: 1;
}

.dual-grid__heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-left: 12px;
}

.dual-grid__heading--student {
    border-left: 2px solid var(--primary-color, #C30E6E);
}

.dual-grid__heading--bde {
    border-left: 2px solid var(--accent-purple, #A29BFE);
}

.dual-grid__list {
    color: var(--text-muted, rgba(255,255,255,0.6));
    line-height: 1.8;
    padding-left: 20px;
    margin: 0;
}

/* Override dual-grid for showcase-block context (flex row) */
.showcase-text .dual-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .showcase-text .dual-grid {
        flex-direction: column;
        gap: 24px;
    }
}

/* Smaller CTA button variant */
.btn-inline-cta--sm {
    margin-top: 20px;
    font-size: 14px;
    padding: 12px 24px;
}

/* Ghost CTA button (transparent bg) */
.btn-inline-cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-inline-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Centered inline CTA banner variant */
.inline-cta-banner--centered {
    max-width: 800px;
    margin: 0 auto;
}

/* BDE-styled CTA card */
.cta-card--bde {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.08), rgba(254, 225, 64, 0.03));
    border: 1px solid rgba(250, 112, 154, 0.15);
}

/* Showcase phone image object-position modifiers */
.showcase-phone-img--top {
    object-position: top;
}

.showcase-phone-img--bottom {
    object-position: bottom;
}

.showcase-phone-img--hue {
    filter: hue-rotate(280deg);
}

/* Purple floating card variant */
.sfc-bottom-left--purple {
    background: rgba(162, 155, 254, 0.2);
    border-color: rgba(162, 155, 254, 0.4);
}

.sfc-icon--purple {
    background: rgba(162, 155, 254, 0.3);
    color: white;
}

/* Showcase desc modifiers */
.showcase-desc--narrow {
    max-width: 400px;
    margin-bottom: 20px;
}

.showcase-desc--hint {
    font-size: 14px;
    opacity: 0.7;
}

.showcase-desc__icon {
    vertical-align: middle;
    margin-right: 5px;
}


/* ----------------------------------------------------------
   SECTION HERO
   Prominent hero block for conversion pages (inscription)
   ---------------------------------------------------------- */

.section-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 24px 80px;
    text-align: center;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(250, 112, 154, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.section-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
}

.section-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.section-hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-hero {
        padding: 120px 24px 60px;
    }

    .section-hero h1 {
        font-size: 1.8rem;
    }

    .section-hero__ctas {
        flex-direction: column;
        align-items: center;
    }
}


/* ----------------------------------------------------------
   AUTH MODAL — BEM helpers
   ---------------------------------------------------------- */

.auth-modal__heading {
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle--center {
    text-align: center;
}

.auth-choice-icon--purple {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.15), rgba(108, 99, 255, 0.08));
    color: #a29bfe;
}


/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */

.contact-page {
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    padding: 20px 0;
}

.contact-info__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
}

.contact-info__text {
    color: var(--text-muted, rgba(255, 255, 255, 0.5));
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info__item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.contact-info__item p {
    font-size: 0.85rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.5));
    line-height: 1.4;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250, 112, 154, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C30E6E;
    flex-shrink: 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-editor {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 12px 12px;
    border-top: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-family);
    min-height: 140px;
}

.contact-file-input {
    display: none;
}

.contact-dropzone {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 32px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-family: inherit;
}

.contact-dropzone:hover {
    border-color: var(--primary-color, #C30E6E);
    background: rgba(250, 112, 154, 0.04);
}

.contact-dropzone__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: var(--primary-color, #C30E6E);
}

.contact-dropzone__text {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-dropzone__hint {
    font-size: 0.75rem;
    opacity: 0.6;
}

.contact-file-list {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted, rgba(255, 255, 255, 0.5));
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-submit {
    margin-top: 10px;
}

/* Nav hidden helpers (used in place of inline display:none) */
.btn-nav-cta--hidden,
.btn-nav-logout--hidden {
    display: none;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info__title {
        font-size: 1.8rem;
    }

    .contact-form-card {
        padding: 24px;
    }
}
