/* Feuille de style partagée du portail Applis-EPS.fr et de ses pages vitrines.
   Extrait du thème d'origine de INDEX/index.html pour être réutilisé sans duplication. */

:root {
    --bg-main: #0c121c;
    --bg-card: #162032;
    --accent-gold: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --tag-bg: #232d42;
    --tag-text: #bdc6d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050a14;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-main);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 20px;
    border: 2px solid var(--bg-main);
}

/* --- Animations d'apparition (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.15s;
}

.delay-300 {
    transition-delay: 0.2s;
}

body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(70, 50, 220, 0.4), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: orbFloat 20s ease-in-out infinite alternate;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(120, 40, 200, 0.25), transparent 70%);
    filter: blur(90px);
    z-index: -1;
    animation: orbFloat2 25s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@media (max-width: 768px) {
    body::before {
        width: 400px;
        height: 400px;
        top: -5%;
        right: -10%;
        filter: blur(60px);
    }

    body::after {
        width: 300px;
        height: 300px;
        bottom: -5%;
        left: -10%;
        filter: blur(60px);
    }

    .container {
        padding-bottom: 30px;
    }
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
        filter: blur(80px) hue-rotate(0deg);
    }

    100% {
        transform: translate(-30px, 50px);
        filter: blur(80px) hue-rotate(30deg);
    }
}

@keyframes orbFloat2 {
    0% {
        transform: translate(0, 0);
        filter: blur(90px) hue-rotate(0deg);
    }

    100% {
        transform: translate(40px, -60px);
        filter: blur(90px) hue-rotate(-40deg);
    }
}

/* --- Header --- */
header {
    padding: 60px 20px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.25));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 15px 35px rgba(212, 175, 55, 0.4));
}

header h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    position: relative;
}

header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

header .logo-highlight {
    background: linear-gradient(135deg, #fbf5b7 0%, #bf953f 40%, #b38728 60%, #fbf5b7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shineGold 4s linear infinite;
}

@keyframes shineGold {
    to {
        background-position: 200% center;
    }
}

header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    }
}

/* --- Main Content --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    flex-grow: 1;
}

.section-title {
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 700;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
    display: inline-block;
}

/* --- Grid (colonne unique) --- */
.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --- Card Design Horizontal --- */
.project-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
    min-height: 230px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%, rgba(212, 175, 55, 0.04));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.project-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.08);
}

.project-card:hover::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 40%, rgba(212, 175, 55, 0.15));
}

/* --- Zone visuelle (image / gradient) --- */
.card-visual {
    width: 300px;
    min-width: 260px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.card-screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px 0 0 20px;
    transition: transform 0.5s ease;
}

.project-card:hover .card-screenshot {
    transform: scale(1.05);
}

.card-visual-icon {
    font-size: 5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0.35;
}

.project-card:hover .card-visual-icon {
    transform: scale(1.1) rotate(-5deg);
    opacity: 0.6;
}

.card-visual::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.card-status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card-status-badge.online {
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.card-status-badge.wip {
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.status-dot {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-status-badge.online .status-dot {
    background-color: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
    animation: ping-dot 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.card-status-badge.wip .status-dot {
    background-color: #fcd34d;
}

@keyframes ping-dot {

    0%,
    100% {
        box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
    }

    50% {
        box-shadow: 0 0 12px rgba(16, 185, 129, 1);
    }
}

/* --- Corps de la carte --- */
.card-body {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.card-title-area {
    margin-bottom: 12px;
}

.project-card h3 {
    font-size: 1.55rem;
    margin-bottom: 4px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.project-card:hover h3 {
    background: linear-gradient(90deg, var(--accent-gold), #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-subtitle {
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.7);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 3px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: 18px;
    font-weight: 400;
}

/* --- Points forts dans les cartes --- */
.card-features {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.card-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.card-features li i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-top: 3px;
    width: 14px;
    flex-shrink: 0;
    text-align: center;
}

.card-features li b {
    color: #e2e8f0;
    font-weight: 600;
}

/* --- Footer de la carte --- */
.card-footer-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Tags / Badges --- */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.72rem;
    padding: 4px 11px;
    background-color: var(--tag-bg);
    color: var(--tag-text);
    border-radius: 20px;
    font-weight: 500;
}

.tag.private {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.project-card:hover .card-cta {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        min-height: unset;
    }

    .card-visual {
        width: 100%;
        min-width: unset;
        height: 180px;
        border-radius: 20px 20px 0 0;
    }

    .card-visual::after {
        display: none;
    }

    .card-body {
        padding: 22px 20px;
    }

    .card-features {
        grid-template-columns: 1fr;
    }

    .card-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-cta {
        opacity: 1;
        transform: none;
    }
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

footer a.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

footer a.footer-link:hover {
    color: var(--accent-gold);
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(200%);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(22, 32, 50, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    visibility: hidden;
}

#cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.cookie-content {
    flex: 1;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-accept {
    background-color: var(--accent-gold);
    color: #000;
    border: none;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-refuse {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-img-container {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: rotate(0) scale(1.02);
    z-index: 10;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .about-img {
        transform: rotate(0);
        max-width: 100%;
        margin: 0 auto;
        max-height: 450px;
    }
}

/* --- Value Proposition Section --- */
.value-proposition {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    margin-top: 10px;
}

.value-card {
    background: transparent;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(22, 32, 50, 0.6);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover i {
    background: var(--accent-gold);
    color: #0c121c;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.value-card h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

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

/* --- Hero Banner Section --- */
.hero-banner-container {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 300px;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.hero-banner-container:hover .hero-banner-img {
    transform: scale(1.03);
}

/* --- About Section (Simplified) --- */
.about-text-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Top Banner Specifics */
.banner-top-container {
    width: 100%;
    height: 450px;
    margin: 40px 0 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.banner-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 0.1s linear;
    will-change: transform;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    padding: 16px 32px;
    background: var(--accent-gold);
    color: #050a14;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    font-size: 1.1rem;
}

.btn-contact:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: #fff;
    color: #000;
}

.btn-contact i {
    font-size: 1.2rem;
}

/* =========================================================
   Composants additionnels pour les pages vitrines (landing)
   ========================================================= */

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb .back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.breadcrumb .back-home i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.breadcrumb .back-home:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--accent-gold);
}

.breadcrumb .back-home:hover i {
    transform: translateX(-3px);
}

.breadcrumb .current-page {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.6;
}

.landing-icon-wrap {
    width: 116px;
    height: 116px;
    border-radius: 28px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.landing-icon-wrap:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.landing-icon-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-icon-fallback {
    font-size: 2.6rem;
    position: relative;
    z-index: 1;
    opacity: 0.6;
}

.landing-hero {
    position: relative;
    text-align: center;
    max-width: 860px;
    margin: 40px auto 0;
    padding: 56px 32px 46px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    isolation: isolate;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, var(--hero-glow, rgba(212, 175, 55, 0.3)), transparent 70%);
    filter: blur(70px);
    z-index: -1;
    pointer-events: none;
}

.landing-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.landing-hero h1 {
    position: relative;
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 26px;
    padding-bottom: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.landing-hero .lead {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .landing-hero {
        margin-top: 20px;
        padding: 44px 20px 36px;
        border-radius: 24px;
    }

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

.content-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.content-section p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: block;
}

.feature-item b {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 4px 20px;
    margin-bottom: 14px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    padding: 16px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--accent-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p {
    color: var(--text-secondary);
    padding-bottom: 18px;
    margin: 0;
    line-height: 1.7;
}

.cta-block {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    text-align: center;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
}

.cta-block h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.cta-block p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--accent-gold);
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--accent-gold);
    color: #000;
    transition: all 0.2s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

select.form-input {
    color-scheme: dark;
}

select.form-input option {
    background-color: #162032;
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.pricing-tier {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.related-links {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.related-links h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.related-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-links a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--tag-bg);
    color: var(--tag-text);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.related-links a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
}
