/**
 * Static Pages Styles
 * CSS for FAQ, Contact, About, Vendors application, Legal pages
 */

/* ===========================================
   PAGE HERO
   =========================================== */
.page-hero {
    padding: 8rem 0 4rem;
    padding-top: 160px;
    text-align: center;
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(73, 158, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===========================================
   FAQ PAGE
   =========================================== */
.faq-page {
    padding: 4rem 0;
}

.faq__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(73, 158, 241, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: rgba(73, 158, 241, 0.4);
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    border-color: transparent;
    color: white;
}

.faq__search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq__search .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.faq__search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq__search input:focus {
    outline: none;
    border-color: rgba(73, 158, 241, 0.3);
    background: white;
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(73, 158, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(73, 158, 241, 0.1);
}

.faq-item.hidden {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 0.75rem;
}

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

.faq-answer-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-answer-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.faq__no-results {
    text-align: center;
    padding: 3rem 1rem;
    display: none;
}

.faq__no-results.visible {
    display: block;
}

.faq__no-results svg {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.faq__no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.faq__no-results p {
    color: var(--text-secondary);
}

/* ===========================================
   VENDOR APPLICATION PAGE
   =========================================== */
.vendor-apply-page {
    padding: 4rem 0;
}

/* Vendors Hero Section */
.vendors-hero {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 6rem 0 4rem;
    padding-top: 160px;
    position: relative;
    overflow: hidden;
}

.vendors-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(73, 158, 241, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.vendors-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vendors-hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(73, 158, 241, 0.1);
    border: 2px solid rgba(73, 158, 241, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.vendors-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.vendors-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vendors-hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    flex-direction: column;
}

.stat-inline .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-inline .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.vendors-hero__visual {
    position: relative;
}

.vendors-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(73, 158, 241, 0.2);
}

/* Vendor Benefits Section */
.vendor-benefits {
    padding: 5rem 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.benefit__icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Vendor Onboarding Section */
.vendor-onboarding {
    padding: 5rem 0;
    background: rgba(73, 158, 241, 0.03);
}

.onboarding__steps {
    max-width: 900px;
    margin: 3rem auto 0;
}

.onboarding-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.onboarding-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, rgba(73, 158, 241, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
}

.step__number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(73, 158, 241, 0.3);
}

.step__content {
    flex: 1;
    padding-top: 0.5rem;
}

.step__content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step__content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Application Form Section */
.vendor-apply-form {
    padding: 5rem 0;
}

.steps__timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.steps__timeline .step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.steps__timeline .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(180deg, rgba(73, 158, 241, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
}

/* Vendor Application Form */
.vendor-application {
    padding: 5rem 0;
    background: rgba(73, 158, 241, 0.02);
}

.application__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.application__header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.application__header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.application__form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(73, 158, 241, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(73, 158, 241, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.section__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section__subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.vendor-apply__intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.vendor-apply__intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vendor-apply__intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, rgba(73, 158, 241, 0.3) 0%, rgba(245, 158, 11, 0.3) 100%);
}

.timeline-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(73, 158, 241, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.application-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(73, 158, 241, 0.4);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.character-count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.character-count.warning {
    color: var(--warning);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-page {
    padding: 4rem 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact__form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(73, 158, 241, 0.1);
}

.contact__form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.char-counter {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.alert {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

.alert strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.alert p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form {
    width: 100%;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(73, 158, 241, 0.15);
}

.contact-info-card.highlight {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.05) 0%, rgba(124, 106, 245, 0.05) 100%);
    border-color: rgba(73, 158, 241, 0.2);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.contact-info-card p:last-of-type {
    margin-bottom: 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(73, 158, 241, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.25rem;
}

.info-item-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.info-item-content a {
    color: var(--primary);
    text-decoration: none;
}

.info-item-content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-base);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    padding: var(--space-2);
}

.social-link svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-link:hover {
    background: var(--gradient-primary-soft);
    border-color: var(--color-primary-start);
    color: var(--color-primary-start);
    transform: translateY(-2px);
}

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

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

/* ===========================================
   ABOUT PAGE
   =========================================== */
.about-page {
    padding: 4rem 0;
}

/* Story Section */
.story {
    padding: 5rem 0;
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.story__content .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.story__content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.story__image {
    position: relative;
}

.story__image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(73, 158, 241, 0.2);
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: rgba(73, 158, 241, 0.03);
}

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

.mission__card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission__card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.mission__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission__card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission__card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section */
.values {
    padding: 5rem 0;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.value p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: rgba(73, 158, 241, 0.03);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team__member {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team__member:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.team__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(73, 158, 241, 0.3);
}

.team__member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team__role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team__bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-section {
    margin-bottom: 5rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-showcase {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.stat-showcase__number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-showcase__label {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(73, 158, 241, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================================
   LEGAL PAGES
   =========================================== */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.legal-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-toc {
    background: rgba(73, 158, 241, 0.05);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.legal-toc h3 {
    margin-top: 0;
}

.legal-toc ol {
    margin-left: 1.5rem;
}

.legal-toc a {
    color: var(--text-primary);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    border: 1px solid rgba(73, 158, 241, 0.2);
    text-align: left;
}

.legal-table th {
    background: rgba(73, 158, 241, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-table td {
    color: var(--text-secondary);
}

/* ===========================================
   ENTREPRISE PAGE
   =========================================== */
.entreprise-hero {
    padding: 10rem 0 6rem;
    padding-top: 180px;
    text-align: center;
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.08) 0%, rgba(245, 158, 11, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.entreprise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(73, 158, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content-center h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content-center .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-showcase {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-showcase--large {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.08) 0%, rgba(124, 106, 245, 0.08) 100%);
    border-color: rgba(73, 158, 241, 0.2);
}

.feature-showcase:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(73, 158, 241, 0.2);
}

.feature-showcase__icon {
    width: 80px;
    height: 80px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(73, 158, 241, 0.3);
}

.feature-showcase__icon--purple {
    background: linear-gradient(135deg, #7c6af5 0%, #b794f6 100%);
}

.feature-showcase__icon--green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.feature-showcase h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-showcase .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-checklist .check {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* Chloé IA Section */
.chloe-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(124, 106, 245, 0.03) 0%, rgba(73, 158, 241, 0.03) 100%);
}

.chloe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.chloe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(124, 106, 245, 0.1) 0%, rgba(73, 158, 241, 0.1) 100%);
    border: 2px solid rgba(124, 106, 245, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #7c6af5;
    margin-bottom: 1.5rem;
}

.chloe-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.chloe-content .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.chloe-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.chloe-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.chloe-feature__icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.chloe-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.chloe-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Player */
.chloe-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 106, 245, 0.3);
    background: #000;
    aspect-ratio: 9/16;
}

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

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.video-control {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-control:hover {
    transform: scale(1.1);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 100px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.play-overlay-btn {
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(73, 158, 241, 0.5);
}

.play-overlay-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(73, 158, 241, 0.6);
}

.video-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c6af5 0%, #499ef1 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.video-caption p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 360px;
}

.pricing-card--popular {
    background: linear-gradient(135deg, rgba(73, 158, 241, 0.08) 0%, rgba(124, 106, 245, 0.08) 100%);
    border-color: rgba(73, 158, 241, 0.3);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(73, 158, 241, 0.2);
}

.pricing-card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(73, 158, 241, 0.2);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(73, 158, 241, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-credits {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #499ef1 0%, #7c6af5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-bonus {
    font-size: 0.95rem;
    color: #10b981;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-body {
    padding: 2rem 0;
    flex: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-footer {
    padding-top: 2rem;
    margin-top: auto;
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 158, 241, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: rgba(73, 158, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(73, 158, 241, 0.15);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

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

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.use-case-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-pill {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }

    .feature-showcase--large {
        grid-column: span 1;
    }

    .chloe-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 500px;
    }

    .pricing-card--popular {
        transform: scale(1);
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .page-hero__subtitle {
        font-size: 1.1rem;
    }

    .entreprise-hero {
        padding: 8rem 0 4rem;
        padding-top: 140px;
    }

    .hero-content-center h1 {
        font-size: 2rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .chloe-content h2 {
        font-size: 2rem;
    }

    .video-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .faq__filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-wrapper {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

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

    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 1.5rem;
    }

    .application-form {
        padding: 2rem 1.5rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   DEVENIR PARTENAIRE - STYLES SPÉCIFIQUES
   ======================================== */

/* Feature lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

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

/* Pricing specific styles */
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-period {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-left: 0.5rem;
}

.pricing-commission {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--glass-bg-light), rgba(255, 255, 255, 0.5));
    border-radius: var(--radius-base);
    margin-bottom: 1.5rem;
}

.pricing-commission--best {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.05));
}

.commission-rate {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-commission--best .commission-rate {
    color: #10b981;
}

.commission-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    padding: 0.625rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-features .check {
    color: #10b981;
    font-weight: bold;
    font-size: 1.125rem;
}

.pricing-features .cross {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.pricing-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--glass-bg-light);
    border-radius: var(--radius-lg);
}

.pricing-note p {
    margin: 0;
    color: var(--color-text-secondary);
}

/* Romy IA Section - Same style as Chloé */
.romy-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.romy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.romy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.romy-text h2,
.romy-text .lead {
    color: white;
}

.romy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.romy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.romy-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.romy-feature__icon {
    font-size: 1.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-base);
    flex-shrink: 0;
}

.romy-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.romy-feature p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.romy-cta {
    margin-top: 2rem;
}

.romy-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.romy-video-player {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA buttons group */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .romy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .romy-text h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-card--featured {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .romy-text h2 {
        font-size: 1.75rem;
    }

    .romy-text .lead {
        font-size: 1.125rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}
