/**
 * Landing Page Styles - Coran 3D
 * Premium landing page with rich Islamic aesthetic
 * =================================================
 */

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */

.landing-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.landing-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-reveal[style*="--reveal-delay: 1"] { transition-delay: 120ms; }
.landing-reveal[style*="--reveal-delay: 2"] { transition-delay: 240ms; }
.landing-reveal[style*="--reveal-delay: 3"] { transition-delay: 360ms; }
.landing-reveal[style*="--reveal-delay: 4"] { transition-delay: 480ms; }

/* =============================================
   LANDING PAGE CONTAINER
   ============================================= */

.landing-page {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* =============================================
   SHARED ORNAMENT DIVIDER
   ============================================= */

.landing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: 0 auto var(--space-5);
    max-width: 350px;
}

.landing-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
}

.landing-divider__ornament {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    animation: landingOrnamentSpin 20s linear infinite;
}

.landing-divider__ornament svg {
    width: 100%;
    height: 100%;
}

@keyframes landingOrnamentSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =============================================
   SECTION 1 : HERO (100vh, background image)
   ============================================= */

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-10) var(--space-6);
    overflow: hidden;
}

/* Background image layer */
.landing-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        url('https://coran3d.fr/data/app/images/login/coran360/about/05.jpg') center/cover no-repeat;
}

/* Dark overlay gradient */
.landing-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(212, 175, 125, 0.08) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(13, 11, 9, 0.75) 0%,
            rgba(13, 11, 9, 0.6) 40%,
            rgba(13, 11, 9, 0.8) 100%
        );
}

/* Islamic geometric pattern overlay */
.landing-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF7D' stroke-opacity='0.04'%3E%3Crect x='30' y='30' width='60' height='60' transform='rotate(0 60 60)'/%3E%3Crect x='30' y='30' width='60' height='60' transform='rotate(45 60 60)'/%3E%3Ccircle cx='60' cy='60' r='20'/%3E%3Ccircle cx='60' cy='60' r='8'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

[data-theme="light"] .landing-hero__bg::before {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(166, 130, 80, 0.06) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(250, 246, 240, 0.8) 0%,
            rgba(250, 246, 240, 0.65) 40%,
            rgba(250, 246, 240, 0.85) 100%
        );
}

.landing-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.landing-hero__logo {
    width: auto;
    height: 90px;
    border-radius: var(--radius-2xl);
    margin: 0 auto var(--space-7);
    border: none;
}

.landing-hero__calligraphy {
    font-family: var(--font-arabic);
    font-size: clamp(2.8rem, 9vw, 5rem);
    color: var(--accent-primary);
    margin-bottom: var(--space-4);
    text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(212, 175, 125, 0.1);
    letter-spacing: 0;
    line-height: 1.2;
    animation: landingCalligraphyGlow 4s ease-in-out infinite;
}

@keyframes landingCalligraphyGlow {
    0%, 100% {
        text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(212, 175, 125, 0.08);
    }
    50% {
        text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(212, 175, 125, 0.2);
    }
}

.landing-hero__title {
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl));
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-5);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.landing-hero__title em {
    font-style: normal;
    color: var(--accent-primary);
}

.landing-hero__subtitle {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-9);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.landing-hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA */
.landing-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--accent-primary), var(--ochre));
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--duration-slow) var(--ease-default);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.landing-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--accent-glow);
}

.landing-btn--primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-normal) var(--ease-default);
}

.landing-btn--primary:hover svg {
    transform: translateX(4px);
}

/* Ghost CTA */
.landing-btn--ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 248, 240, 0.06);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--duration-slow) var(--ease-default);
    backdrop-filter: blur(4px);
}

[data-theme="light"] .landing-btn--ghost {
    background: rgba(255, 255, 255, 0.5);
}

.landing-btn--ghost:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(212, 175, 125, 0.1);
    transform: translateY(-2px);
}

/* Scroll indicator */
.landing-hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-default);
}

.landing-hero__scroll:hover { color: var(--accent-primary); }

.landing-hero__scroll-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
}

.landing-hero__scroll-arrow {
    width: 24px;
    height: 24px;
    animation: landingScrollBounce 2s ease-in-out infinite;
}

.landing-hero__scroll-arrow svg { width: 100%; height: 100%; }

@keyframes landingScrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Theme toggle */
.landing-theme-toggle {
    position: fixed;
    top: var(--space-5);
    right: var(--space-5);
    z-index: var(--z-sticky);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 11, 9, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-default);
    backdrop-filter: blur(12px);
}

[data-theme="light"] .landing-theme-toggle {
    background: rgba(255, 255, 255, 0.6);
}

.landing-theme-toggle:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.landing-theme-toggle svg { width: 20px; height: 20px; }

/* =============================================
   BANDEAU 3 POINTS
   ============================================= */

.landing-bandeau {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--accent-primary), var(--ochre), var(--accent-secondary));
    padding: var(--space-8) var(--space-6);
    overflow: hidden;
}

/* Subtle geometric pattern overlay */
.landing-bandeau::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08'%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(0 40 40)'/%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.landing-bandeau__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header text */
.landing-bandeau__header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.landing-bandeau__title {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-2xl));
    font-weight: 700;
    color: #0D0B09;
    margin-bottom: var(--space-2);
    line-height: var(--leading-snug);
}

.landing-bandeau__subtitle {
    font-size: clamp(var(--text-sm), 1.5vw, var(--text-base));
    color: rgba(13, 11, 9, 0.7);
    line-height: var(--leading-relaxed);
}

/* 3 columns grid */
.landing-bandeau__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.landing-bandeau__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.landing-bandeau__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(13, 11, 9, 0.12);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D0B09;
    backdrop-filter: blur(4px);
}

.landing-bandeau__icon svg {
    width: 26px;
    height: 26px;
}

.landing-bandeau__text {
    flex: 1;
    min-width: 0;
}

.landing-bandeau__text-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #0D0B09;
    margin-bottom: var(--space-1);
    line-height: var(--leading-tight);
}

.landing-bandeau__text-desc {
    font-size: var(--text-sm);
    color: rgba(13, 11, 9, 0.65);
    line-height: var(--leading-relaxed);
}

/* Light mode: slightly different overlay to keep contrast */
[data-theme="light"] .landing-bandeau {
    background: linear-gradient(135deg, var(--accent-primary), var(--ochre), var(--accent-secondary));
}

[data-theme="light"] .landing-bandeau__title {
    color: #FFFFFF;
}

[data-theme="light"] .landing-bandeau__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .landing-bandeau__icon {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

[data-theme="light"] .landing-bandeau__text-title {
    color: #FFFFFF;
}

[data-theme="light"] .landing-bandeau__text-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */

.landing-section {
    padding: var(--space-12) var(--space-6);
    position: relative;
}

.landing-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-section__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.landing-section__calligraphy {
    font-family: var(--font-arabic);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--accent-primary);
    margin-bottom: var(--space-1);
    text-shadow: 0 0 30px var(--accent-glow);
}

.landing-section__title {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.landing-section__subtitle {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    max-width: 520px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* =============================================
   SECTION 2 : DISCIPLINES (image cards)
   ============================================= */

.landing-disciplines {
    background: var(--bg-primary);
}

.landing-disciplines__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.landing-discipline-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all var(--duration-slow) var(--ease-default);
    cursor: default;
}

.landing-discipline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.landing-discipline-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.landing-discipline-card:hover .landing-discipline-card__bg {
    transform: scale(1.08);
}

/* Gradient overlay */
.landing-discipline-card__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(13, 11, 9, 0.92) 0%,
        rgba(13, 11, 9, 0.5) 50%,
        rgba(13, 11, 9, 0.2) 100%
    );
}

[data-theme="light"] .landing-discipline-card__bg::after {
    background: linear-gradient(
        0deg,
        rgba(45, 37, 32, 0.88) 0%,
        rgba(45, 37, 32, 0.4) 50%,
        rgba(45, 37, 32, 0.15) 100%
    );
}

.landing-discipline-card__content {
    position: relative;
    z-index: 1;
    padding: var(--space-6);
}

.landing-discipline-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.landing-discipline-card__icon svg {
    width: 24px;
    height: 24px;
}

.landing-discipline-card__icon--tafsir {
    background: rgba(201, 165, 77, 0.25);
    color: var(--ochre);
}

.landing-discipline-card__icon--arabic {
    background: rgba(196, 120, 90, 0.25);
    color: var(--terracotta);
}

.landing-discipline-card__icon--fiqh {
    background: rgba(139, 154, 107, 0.25);
    color: var(--olive);
}

.landing-discipline-card__icon--spirituality {
    background: rgba(154, 123, 107, 0.25);
    color: var(--clay);
}

.landing-discipline-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #FFF8F0;
    margin-bottom: var(--space-1);
}

.landing-discipline-card__subtitle {
    font-family: var(--font-arabic);
    font-size: var(--text-3xl);
    color: rgba(212, 175, 125, 0.9);
    font-weight: 500;
    margin-bottom: var(--space-3);
}

.landing-discipline-card__desc {
    font-size: var(--text-sm);
    color: rgba(255, 248, 240, 0.65);
    line-height: var(--leading-relaxed);
}

/* =============================================
   SECTION 3 : APPROACH (3 piliers)
   ============================================= */

.landing-approach {
    background: var(--bg-secondary);
    overflow: hidden;
}

.landing-approach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.landing-approach-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all var(--duration-slow) var(--ease-default);
    overflow: hidden;
}

.landing-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--ochre));
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-default);
}

.landing-approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-soft);
}

.landing-approach-card:hover::before {
    opacity: 1;
}

.landing-approach-card__number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: -2rem;
    position: relative;
    z-index: 0;
}

.landing-approach-card__icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-primary), var(--ochre));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 8px 24px var(--accent-glow);
}

[data-theme="light"] .landing-approach-card__icon {
    color: #FFFFFF;
}

.landing-approach-card__icon svg {
    width: 28px;
    height: 28px;
}

.landing-approach-card__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.landing-approach-card__desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
}

/* =============================================
   MOT DU FONDATEUR
   ============================================= */

.landing-founder {
    background: var(--bg-primary);
    overflow: hidden;
}

.landing-founder__container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent line */
.landing-founder__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), var(--ochre), var(--accent-primary), transparent);
}

.landing-founder__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-primary), var(--ochre));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 8px 30px var(--accent-glow);
}

[data-theme="light"] .landing-founder__avatar {
    color: #FFFFFF;
}

.landing-founder__avatar svg {
    width: 36px;
    height: 36px;
}

.landing-founder__calligraphy {
    font-family: var(--font-arabic);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--accent-primary);
    margin-bottom: var(--space-1);
    text-shadow: 0 0 30px var(--accent-glow);
}

.landing-founder__title {
    font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.landing-founder__text {
    text-align: left;
    max-width: 600px;
    margin: 0 auto var(--space-6);
}

.landing-founder__text p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.landing-founder__text p:last-child {
    margin-bottom: 0;
}

.landing-founder__text em {
    font-style: italic;
    color: var(--accent-primary);
    font-weight: 500;
}

.landing-founder__hadith {
    position: relative;
    padding: var(--space-5) var(--space-6);
    margin: var(--space-5) 0;
    background: rgba(212, 175, 125, 0.06);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    color: var(--text-primary) !important;
    font-style: italic !important;
    font-size: var(--text-base) !important;
    line-height: var(--leading-relaxed);
}

[data-theme="light"] .landing-founder__hadith {
    background: rgba(212, 175, 125, 0.08);
}

.landing-founder__signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-subtle);
}

.landing-founder__name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent-primary);
}

.landing-founder__role {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* =============================================
   QURANIC QUOTE SECTION (parallax-like)
   ============================================= */

.landing-quote {
    position: relative;
    padding: var(--space-12) var(--space-6);
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-quote__bg {
    position: absolute;
    inset: 0;
    background:
        url('https://coran3d.fr/data/app/images/login/coran360/about/06.jpg') center/cover no-repeat;
}

.landing-quote__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(13, 11, 9, 0.85) 0%,
            rgba(13, 11, 9, 0.7) 50%,
            rgba(13, 11, 9, 0.85) 100%
        );
}

[data-theme="light"] .landing-quote__bg::before {
    background:
        linear-gradient(180deg,
            rgba(250, 246, 240, 0.88) 0%,
            rgba(250, 246, 240, 0.75) 50%,
            rgba(250, 246, 240, 0.88) 100%
        );
}

.landing-quote__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.landing-quote__arabic {
    font-family: var(--font-arabic);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--accent-primary);
    margin-bottom: var(--space-5);
    line-height: 1.5;
    text-shadow: 0 0 50px var(--accent-glow);
}

.landing-quote__translation {
    font-size: clamp(var(--text-base), 2vw, var(--text-xl));
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    font-style: italic;
    margin-bottom: var(--space-4);
}

.landing-quote__source {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   SECTION 4 : PRICING
   ============================================= */

.landing-pricing {
    background: var(--bg-secondary);
}

.landing-pricing .subscription-period-toggle {
    margin-bottom: var(--space-8);
}

.landing-pricing .subscription-plans {
    margin-bottom: var(--space-6);
}

/* =============================================
   TRUSTPILOT BANNER
   ============================================= */

.landing-trustpilot {
    padding: var(--space-8) var(--space-6);
    background: var(--bg-primary);
}

.landing-trustpilot__link {
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-6) var(--space-8);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    transition: all var(--duration-normal) var(--ease-default);
}

.landing-trustpilot__link:hover {
    border-color: #00b67a;
    box-shadow: 0 4px 24px rgba(0, 182, 122, 0.1);
    transform: translateY(-2px);
}

.landing-trustpilot__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    text-align: center;
}

.landing-trustpilot__rating {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.landing-trustpilot__label {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-primary);
}

.landing-trustpilot__stars {
    display: flex;
    gap: 3px;
}

.tp-star {
    width: 24px;
    height: 24px;
    background: #00b67a;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.tp-star svg {
    width: 100%;
    height: 100%;
}

.tp-star svg polygon {
    fill: #ffffff;
}

.landing-trustpilot__score {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.landing-trustpilot__info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    flex-wrap: wrap;
    justify-content: center;
}

.landing-trustpilot__info strong {
    color: var(--text-secondary);
}

.landing-trustpilot__logo {
    height: 20px;
    width: auto;
    color: #00b67a;
}

@media (max-width: 480px) {
    .landing-trustpilot__link {
        padding: var(--space-5) var(--space-4);
    }

    .landing-trustpilot__label {
        font-size: var(--text-base);
    }

    .tp-star {
        width: 20px;
        height: 20px;
    }
}

/* =============================================
   SECTION 5 : FOOTER
   ============================================= */

.landing-footer {
    background: var(--bg-tertiary);
    padding: var(--space-10) var(--space-6) var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.landing-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
}

.landing-footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.landing-footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.landing-footer__logo img {
    width: auto;
    height: 44px;
    border-radius: var(--radius-lg);
}

.landing-footer__logo-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.landing-footer__desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    max-width: 340px;
}

.landing-footer__col-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
}

.landing-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.landing-footer__link {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-default);
}

.landing-footer__link:hover { color: var(--accent-primary); }

.landing-footer__bottom {
    max-width: 1200px;
    margin: var(--space-8) auto 0;
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */

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

@media (max-width: 768px) {
    .landing-hero {
        min-height: 100svh;
        padding: var(--space-8) var(--space-4);
    }

    .landing-section {
        padding: var(--space-10) var(--space-4);
    }

    .landing-bandeau__grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .landing-approach__grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .landing-footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .landing-discipline-card {
        aspect-ratio: 4 / 3;
    }

    .landing-quote {
        min-height: 300px;
        padding: var(--space-10) var(--space-4);
    }

    .landing-founder__container {
        padding: var(--space-8) var(--space-5);
    }
}

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

    .landing-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-btn--primary,
    .landing-btn--ghost {
        justify-content: center;
    }

    .landing-hero__scroll {
        display: none;
    }

    .landing-theme-toggle {
        top: var(--space-3);
        right: var(--space-3);
        width: 38px;
        height: 38px;
    }
}
