@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #11131c;
    color: #ffffff;
}

/* Navbar styles */
.navbar {
    background-color: #11131c;
    border-bottom: 1px solid #2a2d3a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left section: Logo and brand name */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

/* Wrapper for desktop layout and mobile toggle */
.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 2rem;
}

/* Burger Menu (Hidden on Desktop) */
.burger-menu {
    display: none;
}

/* Center section: Navigation links */
.navbar-center {
    display: flex;
    gap: 2rem;
    margin: 0 auto; /* Center items in the available space */
}

.nav-link {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    color: #b3b3b3;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #6c27d7;
}

/* Right section: Login and CTA button */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.connexion-link {
    font-weight: 500;
}

/* CTA Button with purple gradient */
.cta-button {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to top, #3c1677, #6c27d7);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 39, 215, 0.3);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #11131c;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.hero-features li {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.hero-features li::before {
    content: "✓";
    color: #6c27d7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-cta {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 600px;
    height: 400px;
    background-color: #22c55e;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1.5rem;
        /* Keep standard flex row for logo and burger */
    }

    /* Burger Menu Styles */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 2000;
    }

    .burger-menu span {
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 8px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile Navigation Drawer */
    .navbar-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #11131c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        padding: 2rem;
    }

    .navbar-wrapper.active {
        transform: translateX(0);
    }

    .navbar-center {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin: 0;
    }

    .navbar-center .nav-link {
        font-size: 1.5rem;
    }

    .navbar-right {
        flex-direction: column;
        gap: 2rem;
        order: initial; /* Reset order */
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 2rem 0;
    }

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

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

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 80%;
    }

    .image-placeholder {
        width: 100%;
        height: 300px;
    }

    .hero-features li {
        justify-content: center;
    }
}

/* Explanation Section */
.explanation {
    padding: 8rem 0;
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #12141d;
}

.explanation-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row-reverse;
}

.explanation-content {
    flex: 1;
    max-width: 650px;
}

.explanation-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.explanation-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: #12141d;
}

.purple-dot {
    color: #6d28d9;
}

.explanation-info-box {
    border-left: 2px solid #6d28d9;
    padding: 0.5rem 0 0.5rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, rgba(109, 40, 217, 0.08) 0%, rgba(109, 40, 217, 0) 100%);
}

.explanation-info-box p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: rgba(18, 20, 29, 0.8);
}

.explanation-info-box p:last-child {
    margin-bottom: 0;
}

.explanation-emphasis {
    margin-top: 1.5rem;
}

.explanation-analysis {
    margin-bottom: 3rem;
}

.explanation-analysis p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.highlight {
    background-color: #25e4dc;
    padding: 0 0.1rem;
}

.explanation-footer {
    font-size: 1.25rem;
    font-style: italic;
    color: #12141d;
}

/* Responsive for Explanation */
@media (max-width: 1024px) {
    .explanation-container {
        gap: 2rem;
    }

    .explanation-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .explanation {
        padding: 4rem 0;
    }

    .explanation-container {
        padding: 0 2rem;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .explanation-content {
        max-width: 100%;
        order: 2;
    }

    .explanation-image {
        max-width: 100%;
        order: 1;
    }

    .explanation-image img {
        max-width: 80%;
    }

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

    .explanation-info-box p,
    .explanation-analysis p,
    .explanation-footer {
        font-size: 1.125rem;
    }
}

/* Protection Section */
.protection {
    padding: 8rem 0;
    background-color: #11131c;
    color: #ffffff;
}

.protection-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.protection-content {
    flex: 1.2;
}

.protection-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #d9d9d9;
}

.protection-underline {
    border-bottom: 3px solid #25e4dc;
    display: inline-block;
    padding-bottom: 4px;
    line-height: 0.8;
}

.protection-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(217, 217, 217, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
}

.protection-results {
    margin-top: 2rem;
}

.results-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #d9d9d9;
    margin-bottom: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
}

.protection-card {
    background-color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    color: #12141d;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.card-icon-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.binary-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #25e4dc;
}

.protection-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.protection-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    color: rgba(18, 20, 29, 0.7);
}

.protection-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.protection-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 32px -16px #25e4dc;
}

/* Responsive for Protection Section */
@media (max-width: 1024px) {
    .protection-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .protection-description {
        margin-left: auto;
        margin-right: auto;
    }

    .cards-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .protection {
        padding: 4rem 0;
    }

    .protection-container {
        padding: 0 2rem;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .protection-card {
        height: auto;
        padding: 2rem;
    }
}

/* Failure Reasons Section */
.failure {
    padding: 8rem 0;
    background-color: #e2e8ef;
    color: #12141d;
}

.failure-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.failure-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.failure-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #7637d9, transparent);
}

.failure-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.failure-card {
    background-color: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 1rem;
    flex: 1;
    max-width: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: #f1f1f1;
    color: #a0a0a0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.svg-placeholder {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* On peut simuler l'icône avec un petit cercle noir au centre pour l'instant */
.svg-placeholder::before {
    content: "";
    width: 40px;
    height: 40px;
    background-color: #12141d;
    border-radius: 50%;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #12141d;
}

.card-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(18, 20, 29, 0.7);
    max-width: 320px;
}

@media (max-width: 768px) {
    .card-text {
        font-size: 0.75rem;
    }
}

.failure-summary-card {
    background-color: #11131c;
    border: 2px solid #6d28d8;
    border-radius: 1rem;
    padding: 3rem 2rem;
    max-width: 920px;
    margin: 0 auto;
    color: #ffffff;
}

.failure-summary-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.stats-highlight {
    color: #24e4db;
}

/* Responsive for Failure Section */
@media (max-width: 1024px) {
    .failure-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .failure-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .failure {
        padding: 4rem 0;
    }

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

    .failure-summary-card p {
        font-size: 1.5rem;
    }
}

/* Difference Section */
.difference {
    padding: 8rem 0;
    background-color: #11131c;
    color: #ffffff;
    text-align: center;
}

.difference-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.difference-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    text-shadow:
        0 0 8px rgba(132, 79, 216, 0.9),
        0 0 16px rgba(132, 79, 216, 0.9),
        0 0 32px rgba(132, 79, 216, 1);
}

.difference-description {
    font-size: 1.2rem;
    color: #AAAAAA;
    line-height: 1.6;
    margin-bottom: 4rem;
}

.difference-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 60px;
}

.difference-card {
    background-color: #332D42;
    padding: 2.5rem 2rem;
    flex: 1;
    max-width: 400px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.difference-card:nth-child(1) {
    border-image: linear-gradient(to right, transparent, #844fd8) 1;
}

.difference-card:nth-child(2) {
    border-image: linear-gradient(to right, #844fd8, #25e1db) 1;
}

.difference-card:nth-child(3) {
    border-image: linear-gradient(to right, #25e1db, transparent) 1;
}

.difference-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.difference-card .card-text {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 3rem;
}

.card-image-placeholder {
    width: 150px;
    height: 150px;
    background-color: #000000;
    margin-top: auto;
}

.difference-bottom-bar {
    background-color: #1a152e;
    padding: 20px 40px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 60px;
    border: 1px solid #4b2094;
}

.difference-bottom-bar p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Responsive for Difference Section */
@media (max-width: 1024px) {
    .difference-grid {
        flex-wrap: wrap;
    }
    
    .difference-card {
        flex: 1 1 300px;
    }
}

@media (max-width: 768px) {
    .difference {
        padding: 4rem 0;
    }
    
    .difference-container {
        padding: 0 2rem;
    }

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

    .difference-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .difference-card {
        width: 100%;
        max-width: 100%;
    }
    
    .difference-bottom-bar {
        padding: 1.5rem;
    }
    
    .difference-bottom-bar p {
        font-size: 1.2rem;
    }
}

/* Objective Section */
.objective {
    padding: 8rem 0;
    background: linear-gradient(180deg, #DEE4E9 0%, #D1D9E0 100%);
    color: #111827;
}

.objective-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    gap: 60px;
}

.objective-content {
    flex: 1;
    max-width: 600px;
}

.objective-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 2.5rem;
}

.objective-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.5;
}

.list-item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.highlight-item {
    font-weight: 500;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    color: #11131c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    transition: none !important; /* Pas d'effet de transition */
}

/* Icons in bento grid */
.bento-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.results-card {
    text-align: left;
}

.results-card .card-text {
    font-size: 1.15rem;
    line-height: 1.3;
    color: #11131c;
}

.card-icon {
    width: 32px;
    height: 32px;
}

.card-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.half-width {
    flex: 1;
}

.lang-card span {
    color: #11131c;
}

.lang-card .bento-icon {
    height: 25px; /* Taille plus ajustée pour les drapeaux */
    width: auto;
}

.student-card span {
    font-size: 1rem;
    line-height: 1.2;
    color: #11131c;
}

.center-card {
    justify-content: center; /* Centrer le texte de la dernière carte */
    text-align: center;
    font-size: 1.15rem;
    padding: 25px;
    color: #11131c;
}

.objective-green-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .objective-green-placeholder {
        display: none;
    }
}

.green-div {
    width: 600px;
    height: 400px;
    background-color: #10f510;
    border-radius: 0.75rem;
}

.tablet-container {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, #2a2d3a 0%, #1a1c25 100%);
    border: 2px solid #67E8F9;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 30px rgba(103, 232, 249, 0.2);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tablet-placeholder {
    width: 100%;
    height: 100%;
    background: #0f111a;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.tablet-header .brand {
    font-family: 'Space Grotesk', sans-serif;
    color: #67E8F9;
    font-weight: bold;
    font-size: 1.1rem;
}

.tablet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.side-panel {
    border: 1px solid rgba(103, 232, 249, 0.15);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-panel .label {
    font-size: 0.7rem;
    font-weight: bold;
    color: #67E8F9;
    margin-bottom: 8px;
}

.side-panel .line {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.highlight-cyan {
    background: #67E8F9 !important;
    opacity: 0.6;
}

.highlight-purple {
    background: #A855F7 !important;
    opacity: 0.6;
}

.humanized {
    border-color: rgba(168, 85, 247, 0.25);
}

.humanized .label {
    color: #A855F7;
}

.center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    white-space: nowrap;
    z-index: 10;
}

.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.star.top-right {
    top: 20px;
    right: 20px;
}

.star.bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Responsive for Objective Section */
@media (max-width: 1024px) {
    .objective-container {
        flex-direction: column;
        padding: 0 2rem;
        gap: 50px;
    }
    
    .objective-content {
        max-width: 100%;
        text-align: center;
    }

    .objective-list {
        align-items: center;
    }

    .list-item {
        text-align: left;
        max-width: 500px;
    }

    .info-cards {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .objective {
        padding: 4rem 0;
    }
    
    .objective-title {
        font-size: 2.2rem;
    }
    
    .card-row {
        flex-direction: column;
    }

    .tablet-container {
        aspect-ratio: 1/1;
    }

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

    .side-panel.raw {
        display: none;
    }
}

/* Limits and Promise Section */
.limits-promise {
    padding: 8rem 0;
    background-color: #0f1115;
    color: #ffffff;
    text-align: center;
}

.limits-promise-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.limits-promise-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 4rem;
}

.limits-promise-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.lp-card {
    background-color: #161b28;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    flex: 1;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 450px;
}

.lp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.teal-glow {
    color: #4fd1c5;
    text-shadow: 0 0 15px rgba(79, 209, 197, 0.4);
}

.lp-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: auto;
    text-align: left;
}

.lp-card-list li {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.lp-card-list li::before {
    content: "•";
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.lp-icon-wrapper {
    margin-top: 3rem;
}

.lp-icon-circle {
    width: 100px;
    height: 100px;
    background-color: #1e2538;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.limits-promise-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.footer-highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid #4fd1c5;
}

/* Responsive for Limits and Promise */
@media (max-width: 1024px) {
    .limits-promise-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .lp-card {
        width: 100%;
        max-width: 500px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .limits-promise {
        padding: 4rem 0;
    }

    .limits-promise-container {
        padding: 0 2rem;
    }

    .limits-promise-title {
        font-size: 2rem;
    }

    .footer-highlight {
        font-size: 1.2rem;
    }
}

/* Students Section */
.students {
    padding: 8rem 0;
    background-color: #e2e8ef;
    color: #1a202c;
}

.students-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.students-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.students-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stars-group {
    display: flex;
    gap: 4px;
}

.students-layout {
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

.students-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.students-grid .student-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.students-grid .student-card:hover {
    transform: translateY(-5px);
}

.students-grid .student-card .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    text-align: left;
}

.students-grid .student-card .card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.4;
}

.card-icon {
    margin-top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.students-image-container {
    flex: 1;
    display: flex;
}

.students-image-glow {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .students-image-glow {
        display: none;
    }
}

.students-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive for Students Section */
@media (max-width: 1024px) {
    .students-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .students-title {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .students {
        padding: 4rem 0;
    }

    .students-container {
        padding: 0 2rem;
    }

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

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

/* Final CTA Warp Section */
.warp-cta {
    padding: 10rem 0;
    background-color: #02040a;
    background-image: 
        radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(2, 4, 10, 1) 70%),
        repeating-radial-gradient(circle at center, transparent 0, transparent 40px, rgba(139, 92, 246, 0.03) 40px, rgba(139, 92, 246, 0.03) 41px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.warp-container {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.warp-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.highlight-purple {
    color: #8b5cf6;
}

.gradient-blue-purple {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warp-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.warp-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.warp-button-container .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.warp-cta-button {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #6d28d8;
    color: #ffffff;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 25px rgba(109, 40, 216, 0.4);
    display: inline-block;
}

.warp-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(109, 40, 216, 0.7);
    background-color: #7c3aed;
}

.warp-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

/* Responsive for Warp Section */
@media (max-width: 768px) {
    .warp-cta {
        padding: 6rem 0;
    }
    
    .warp-title {
        font-size: 2.75rem;
    }
    
    .warp-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .warp-cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #050505;
    padding: 6rem 0;
    color: #ffffff;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    align-items: start;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c27d7 0%, #3b82f6 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links li, .footer-links a {
    color: #e2e8f0;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive for Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 3rem;
        text-align: center;
    }

    .brand-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

/* Pricing Section Styles */
.pricing {
    padding: 6rem 0;
    background-color: #0f1116;
    color: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pricing Selector Styles */
.pricing-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.pricing-selector input[type="radio"] {
    display: none;
}

.pricing-option {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2a2d3a;
    border-radius: 25px;
    background-color: transparent;
    color: #b3b3b3;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.pricing-option:hover {
    border-color: #6c27d7;
    color: #6c27d7;
}

.pricing-selector input[type="radio"]:checked + .pricing-option {
    background-color: #6c27d7;
    border-color: #6c27d7;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(108, 39, 215, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem 2rem;
    color: #12141d;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.highlighted {
    border: 2px solid #22d3ee;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #22d3ee;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4);
}

.monthly-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #8b5cf6;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    z-index: 2;
}

.annual-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #d2b48c;
    color: #ffffff;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(210, 180, 140, 0.4);
    z-index: 2;
}

.card-content {
    flex-grow: 1;
    text-align: center;
}

.card-plan-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-plan-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.card-price {
    margin-bottom: 2.5rem;
}

.price-amount {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #7c3aed;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-detail {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.4;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    text-align: left;
    display: inline-block;
}

.card-features li {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.card-features li::before {
    content: "✓";
    color: #7c3aed;
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.card-footer-action {
    margin-top: auto;
    text-align: center;
}

.pricing-cta {
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #6d28d8;
    color: #ffffff;
    border: none;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.pricing-cta:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 40, 216, 0.3);
}

.highlight-cta {
    background-color: #22d3ee;
}

.highlight-cta:hover {
    background-color: #06b6d4;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

.card-note {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

.pricing-bottom {
    text-align: center;
}

.free-trial-link {
    font-family: 'Space Grotesk', sans-serif;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

    .free-trial-link:hover {
    color: #6d28d8;
}

/* Dashboard Styles */
.dashboard-page {
    background-color: #0b0d14;
}

.dashboard-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

@media (max-width: 768px) {
    .dashboard-main {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem 4rem;
    }
}

/* Credits Section */
.credits-section {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.credits-pill {
    background: #161b28;
    border: 1px solid rgba(108, 39, 215, 0.2);
    padding: 0.6rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(37, 228, 220, 0.1);
}

.credits-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #25e4dc;
}

.add-credits-icon {
    background: linear-gradient(to top, #3c1677, #6c27d7);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.add-credits-icon:hover {
    transform: scale(1.1);
}

/* Tool Section */
.tool-section {
    margin-bottom: 4rem;
}

.tool-container {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    min-height: 500px;
}

.tool-card {
    flex: 1;
    background: #1a1f2e;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #2a2d3a;
}

.input-card {
    border: 2px solid #25e4dc;
    box-shadow: 0 0 15px rgba(37, 228, 220, 0.15);
}

.card-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3px;
}

.lang-option {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option.active {
    background: #475569;
    color: white;
}

.word-limit, .word-count {
    font-size: 0.8rem;
    color: #94a3b8;
}

.textarea-wrapper {
    flex: 1;
    position: relative;
}

.tool-card textarea {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: none;
    outline: none;
}

.tool-card textarea::placeholder {
    color: #4b5563;
}

/* Action Button */
.action-wrapper {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.humanize-button {
    background: linear-gradient(135deg, #6c27d7 0%, #3c1677 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 25px rgba(108, 39, 215, 0.5);
    white-space: nowrap;
}

.humanize-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(108, 39, 215, 0.8);
}

.copy-button {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.copy-button:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.copy-button:active {
    transform: scale(0.9);
}

.copy-button.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.copy-button.success .check-icon {
    animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Verification Section */
.verification-section {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
}

.verification-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.verification-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.verify-btn {
    background: #1a1f2e;
    border: 1px solid #2a2d3a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.verify-btn:hover {
    border-color: #6c27d7;
    background: rgba(108, 39, 215, 0.05);
}

@media (max-width: 1024px) {
    .tool-container {
        flex-direction: column;
    }

    .action-wrapper {
        justify-content: center;
        padding: 1rem 0;
    }

    .tool-card {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .verification-grid {
        flex-direction: column;
        align-items: center;
    }

    .verify-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reviews-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.reviews-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.global-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #8b5cf6;
}

.reviews-filter {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sort-select {
    background-color: #161b28;
    color: #ffffff;
    border: 1px solid #2a2d3a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.sort-select:focus {
    border-color: #8b5cf6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: #161b28;
    border: 1px solid #2a2d3a;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
}

.review-card.highlighted {
    border: 2px solid #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.author-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #94a3b8;
}

.team-response {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    background: rgba(139, 92, 246, 0.04);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border-left: 3px solid #8b5cf6;
    font-style: normal;
}

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

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }

    .reviews-title {
        font-size: 2.25rem;
    }

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

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.faq-item {
    background-color: #161b28;
    border: 1px solid #2a2d3a;
    border-radius: 16px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #7c3aed;
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-question::before {
    content: "?";
    background-color: #7c3aed;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid #2a2d3a;
}

.faq-footer p {
    font-size: 1.125rem;
    color: #cbd5e1;
}

.contact-link {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #06b6d4;
    text-decoration: underline;
}

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

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

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

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 4rem;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .pricing {
        padding: 4rem 0;
    }

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

/* Loading Animation for Humanize Button */
.humanize-button {
    position: relative;
    transition: all 0.3s ease;
}

.humanize-button.loading {
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}

.humanize-button.loading svg {
    visibility: hidden;
}

.humanize-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
    visibility: visible;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Modal d'inscription rapide */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #000;
}

.modal-content h2 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 24px;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
}

.modal-content .form-group {
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.modal-content input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.modal-content input:focus {
    outline: none;
    border-color: #0066ff;
}

.modal-content .terms-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.modal-content .terms-info a {
    color: #0066ff;
    text-decoration: none;
}

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

.modal-content .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0066ff, #00ccff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-content .submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.modal-content .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-content .login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.modal-content .login-link a {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
}

.modal-content .login-link a:hover {
    text-decoration: underline;
}

.modal-content .error-message {
    background-color: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    border-left: 4px solid #c33;
}

/* Bannière de succès de paiement */
.success-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 24px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: slideDown 0.5s ease;
}

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

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.success-content svg {
    flex-shrink: 0;
}

.close-banner {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.3);
}

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