/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Judson', serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Utility classes */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

/* Top strip */
.top-strip {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.3);
}

.top-strip a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-strip a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Header */
.site-header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.brand__img {
    height: 45px;
    border-radius: 30%;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.brand__name {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.brand:hover .brand__name {
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Mobile menu toggle */
#nav-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.burger span {
    width: 28px;
    height: 3px;
    background: #00d4ff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Burger animation when active */
#nav-toggle:checked ~ .burger span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

#nav-toggle:checked ~ .burger span:nth-child(2) {
    opacity: 0;
}

#nav-toggle:checked ~ .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav a:hover::before {
    left: 100%;
}

.nav a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

/* Mobile menu backdrop - hidden by default */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Mobile menu close button - hidden by default */
.nav-close {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #00d4ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1002;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.btn--outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00d4ff;
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.btn--secondary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn--secondary:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #d63031 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.btn--sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn--brand {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
}

.btn--brand:hover {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #b8b8b8;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__media {
    display: flex;
    justify-content: center;
}

/* Scorecard */
.scorecard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    color: #e0e0e0;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.scorecard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.scorecard__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.scorecard__logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.chip--gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.score {
    text-align: center;
    margin-bottom: 2rem;
}

.score__value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.score__stars {
    color: #ffd700;
    font-size: 1.4rem;
    margin: 0.8rem 0;
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.score__votes {
    color: #b8b8b8;
    font-size: 1rem;
}

.bullets {
    list-style: none;
    margin-bottom: 2rem;
}

.bullets li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #b8b8b8;
    font-size: 0.95rem;
}

.bullets i {
    color: #00d4ff;
    width: 22px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.tc {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie banner */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1.5rem;
    text-align: center;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie__inner {
    max-width: 600px;
    margin: 0 auto;
}

.cookie p {
    margin-bottom: 1.5rem;
    color: #b8b8b8;
}

.cookie__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie button {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cookie button:hover {
    background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.cookie.is-hidden {
    display: none;
}

/* Section styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head p {
    font-size: 1.3rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Logos section */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem auto;
}

.logos img {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.3s ease;
}

.logos img:hover {
    filter: grayscale(0%) brightness(1.2);
    transform: scale(1.1);
}

/* Top Sites Section with Background */
#topsites {
    background-image: url('../images/bg_po.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#topsites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 35, 0.85);
    z-index: 1;
}

#topsites .wrap {
    position: relative;
    z-index: 2;
}

/* Cards section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cards--single {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.card--highlight {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.1);
}

.card--highlight::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card__logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.card__mid {
    margin-bottom: 2rem;
}

.note {
    text-align: center;
    margin-bottom: 2rem;
}

.note strong {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #b8b8b8;
    font-size: 1rem;
}

.list i {
    color: #00d4ff;
    width: 20px;
    text-align: center;
}

.highlight {
    color: #ffd700;
    font-weight: 600;
}

.card__actions {
    text-align: center;
    margin-bottom: 1.5rem;
}

.small {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
}

.card__footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Table section */
.table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    margin-top: 3rem;
}

.table__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.table__row--head {
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #fff;
}

.table__row:not(.table__row--head):hover {
    background: rgba(255, 255, 255, 0.05);
}

.table__row > div {
    text-align: center;
}

/* Grid sections */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.pill:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.pill h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pill h3 i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.pill p {
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

.bounce-in {
    opacity: 0;
    transform: scale(0.8);
    animation: bounceIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Disclaimer section */
.disclaimer {
    padding: 4rem 0;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    text-align: center;
}

.disclaimer h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.disclaimer p {
    color: #b8b8b8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.disclaimer .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.disclaimer .logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.3s ease;
}

.disclaimer .logos img:hover {
    filter: grayscale(0%) brightness(1.2);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f23 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 2;
}

.brand--footer {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.brand--footer:hover .brand__name {
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.brand--footer .brand__img {
    height: 50px;
    width: auto;
    margin-right: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.brand--footer:hover .brand__img {
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
    transform: scale(1.05);
}

.brand--footer .brand__name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.muted {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.linklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linklist li {
    margin-bottom: 1rem;
}

.linklist a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.linklist a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.linklist a:hover::before {
    left: 100%;
}

.linklist a:hover {
    color: #00d4ff;
    transform: translateX(8px);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.linklist a i {
    width: 20px;
    text-align: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.linklist a:hover i {
    opacity: 1;
    color: #00d4ff;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

h4 i {
    color: #00d4ff;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Footer Legal Section */
.rg-legal {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.rg-legal h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rg-legal h3 i {
    color: #ff6b6b;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.rg-legal p {
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rg-legal .small {
    color: #888 !important;
    font-size: 0.95rem !important;
    font-style: italic;
}

/* Footer Bottom */
.copyright {
    color: #888;
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(15, 15, 35, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }
    
    #nav-toggle:checked ~ .nav {
        transform: translateX(0);
    }
    
    .nav a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        animation: slideInLeft 0.5s ease forwards;
    }
    
    .nav a:hover {
        background: rgba(0, 212, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.3);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    }
    
    .nav a:active {
        transform: translateY(-1px);
        transition: transform 0.1s ease;
    }
    
    /* Mobile menu header */
    .nav::after {
        content: 'Menu';
        position: absolute;
        top: 2rem;
        left: 2rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: #00d4ff;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    
    /* Mobile menu close button */
    .nav-close {
        display: block;
    }
    
    .nav-close:hover {
        background: rgba(0, 212, 255, 0.1);
        color: #fff;
        transform: rotate(90deg);
    }
    
    /* Mobile menu link animations */
    .nav a:nth-child(1) { animation-delay: 0.1s; }
    .nav a:nth-child(2) { animation-delay: 0.2s; }
    .nav a:nth-child(3) { animation-delay: 0.3s; }
    .nav a:nth-child(4) { animation-delay: 0.4s; }
    .nav a:nth-child(5) { animation-delay: 0.5s; }
    .nav a:nth-child(6) { animation-delay: 0.6s; }
    
    /* Mobile menu backdrop overlay */
    .nav-backdrop {
        display: block;
    }
    
    #nav-toggle:checked ~ .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero__text h1 {
        font-size: 2.5rem;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .cookie__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie button {
        width: 100%;
        max-width: 200px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 3rem 0 2rem;
    }
    
    .pourquoi-section {
        padding: 80px 0;
    }
    
    .pourquoi-title {
        font-size: 32px;
    }
    
    .pourquoi-subtitle {
        font-size: 18px;
    }
    
    .pourquoi-header {
        margin-bottom: 60px;
    }
    
    .pourquoi-intro {
        margin-bottom: 40px;
    }
    
    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pourquoi-card {
        padding: 24px;
    }
    
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-question__content {
        gap: 1rem;
    }
    
    .faq-question__icon {
        width: 45px;
        height: 45px;
    }
    
    .faq-answer__content {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn--contact {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero__text h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scorecard {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .disclaimer h2 {
        font-size: 2rem;
    }
    
    .disclaimer .logos {
        gap: 1rem;
    }
    
    .disclaimer .logos img {
        height: 30px;
    }
    
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-logo__name {
        font-size: 1.6rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .legal-text h3 {
        font-size: 1.4rem;
    }
    
    .legal-icon {
        width: 60px;
        height: 60px;
    }
    
    .legal-icon i {
        font-size: 1.6rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Mobile menu improvements for small screens */
    .nav {
        padding: 1rem;
    }
    
    .nav::after {
        top: 1rem;
        left: 1rem;
        font-size: 1.2rem;
    }
    
    .nav a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin: 0.3rem 0;
    }
    
    .burger {
        padding: 6px;
    }
    
    .burger span {
        width: 24px;
        height: 2px;
    }
    
    .nav-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.2rem;
        padding: 0.4rem;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .pourquoi-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .pourquoi-title {
        font-size: 40px;
    }
    
    .faq-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-intro-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-card {
        flex: 1;
        max-width: 250px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    /* Mobile menu landscape adjustments */
    .nav {
        padding: 1rem;
    }
    
    .nav::after {
        top: 1rem;
        left: 1rem;
        font-size: 1.2rem;
    }
    
    .nav-close {
        top: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        margin: 0.2rem 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-icon__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.contact-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.contact-card__icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-card p {
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-label i {
    color: #00d4ff;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
    opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.form-input:focus ~ .input-focus-border,
.form-textarea:focus ~ .input-focus-border {
    width: 100%;
}

.form-actions {
    text-align: center;
}

.btn--contact {
    position: relative;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn--contact:hover .btn-glow {
    left: 100%;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-note i {
    color: #00d4ff;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.form-note p {
    margin: 0;
    max-width: 500px;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-card {
        flex: 1;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .btn--contact {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
}

/* Pourquoi Section */
.pourquoi-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
  overflow: hidden;
}

.pourquoi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pourquoi-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.pourquoi-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.pourquoi-icon i {
  font-size: 32px;
  color: #0a0e1a;
  z-index: 2;
}

.pourquoi-icon__glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

.pourquoi-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pourquoi-subtitle {
  font-size: 20px;
  color: #a0a0a0;
  font-weight: 500;
  letter-spacing: 1px;
}

.pourquoi-content {
  position: relative;
  z-index: 2;
}

.pourquoi-intro {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.pourquoi-intro-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  max-width: 500px;
  transition: all 0.3s ease;
}

.pourquoi-intro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pourquoi-intro-card:hover::before {
  opacity: 1;
}

.pourquoi-intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.pourquoi-intro__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pourquoi-intro-card:hover .pourquoi-intro__icon {
  transform: scale(1.1) rotate(5deg);
}

.pourquoi-intro__icon i {
  font-size: 28px;
  color: #0a0e1a;
}

.pourquoi-intro-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffd700;
}

.pourquoi-intro-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #c0c0c0;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.pourquoi-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pourquoi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pourquoi-card:hover::before {
  transform: scaleX(1);
}

.pourquoi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.pourquoi-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pourquoi-card:hover .pourquoi-card__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.4);
}

.pourquoi-card__icon i {
  font-size: 32px;
  color: #0a0e1a;
}

.pourquoi-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.pourquoi-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #b0b0b0;
}

@media (max-width: 1024px) {
  .pourquoi-section {
    padding: 100px 0;
  }
  
  .pourquoi-title {
    font-size: 40px;
  }
  
  .pourquoi-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .pourquoi-section {
    padding: 80px 0;
  }
  
  .pourquoi-title {
    font-size: 32px;
  }
  
  .pourquoi-subtitle {
    font-size: 18px;
  }
  
  .pourquoi-header {
    margin-bottom: 60px;
  }
  
  .pourquoi-intro {
    margin-bottom: 40px;
  }
  
  .pourquoi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pourquoi-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .pourquoi-section {
    padding: 60px 0;
  }
  
  .pourquoi-title {
    font-size: 28px;
  }
  
  .pourquoi-icon {
    width: 64px;
    height: 64px;
  }
  
  .pourquoi-icon i {
    font-size: 24px;
  }
  
  .pourquoi-intro-card {
    padding: 24px;
  }
  
  .pourquoi-card {
    padding: 20px;
  }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    animation: float 6s ease-in-out infinite;
}

.faq-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-icon__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Content */
.faq-content {
    position: relative;
    z-index: 2;
}

/* FAQ Intro Cards */
.faq-intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-intro-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s;
}

.faq-intro-card:hover::before {
    left: 100%;
}

.faq-intro-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

.faq-intro__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.faq-intro-card:hover .faq-intro__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.faq-intro__icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-intro-card h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.faq-intro-card p {
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    color: #ff6b6b;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.faq-question__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.faq-question__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.faq-question:hover .faq-question__icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.faq-question__icon i {
    font-size: 1.3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-question__arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-question__arrow {
    transform: rotate(180deg);
    background: rgba(255, 107, 107, 0.2);
}

.faq-question__arrow i {
    font-size: 1rem;
    color: #b8b8b8;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-question__arrow i {
    color: #ff6b6b;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer__content {
    padding: 0 2rem 2rem;
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-answer__content p {
    margin-bottom: 1.5rem;
}

.faq-answer__content p:last-child {
    margin-bottom: 0;
}

.faq-answer__content strong {
    color: #fff;
    font-weight: 700;
}

.faq-answer__content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.faq-answer__content ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid #ff6b6b;
}

.faq-answer__content ul li i {
    color: #ff6b6b;
    font-size: 1.1rem;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.faq-answer__content a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-answer__content a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-intro-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-question__content {
        gap: 1rem;
    }
    
    .faq-question__icon {
        width: 45px;
        height: 45px;
    }
    
    .faq-answer__content {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-icon {
        width: 80px;
        height: 80px;
    }
    
    .faq-icon i {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question__content {
        width: 100%;
    }
    
    .faq-question__arrow {
        align-self: flex-end;
    }
    
    .faq-answer__content {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Top Sites Background Responsive */
    #topsites {
        background-attachment: scroll;
    }
    
    #topsites::before {
        background: rgba(15, 15, 35, 0.9);
    }
}

/* ========================================
   PAGE STYLES (confidentialite, mentions-legales, responsable)
   ======================================== */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #b8b8b8;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.breadcrumb span {
    color: #888;
    font-weight: 500;
}

/* Page Hero Title */
.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-hero h1 i {
    color: #00d4ff;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.page-hero p {
    font-size: 1.3rem;
    color: #b8b8b8;
    line-height: 1.6;
    max-width: 600px;
}

/* Main Content Section */
.content {
    padding: 6rem 0;
    position: relative;
}

.content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content h2 i {
    color: #00d4ff;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.content h3 i {
    color: #00d4ff;
    font-size: 1.3rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.content ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.content ul li::before {
    content: '•';
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Card Page */
.card-page {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.card-page h3 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.card-page p {
    margin-bottom: 0;
    color: #b8b8b8;
}

/* Tip Cards */
.tip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
}

.tip h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.3rem;
}

.tip p {
    margin-bottom: 0;
    color: #b8b8b8;
    font-size: 1rem;
}

/* Callout Boxes */
.callout {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.callout strong {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.callout strong i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.callout ul {
    margin: 1rem 0 0 0;
}

.callout ul li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

.callout p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

/* Help Lines */
.helplines {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.helplines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.helplines h3 {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.helplines h3 i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.helplines p {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
}

.helplines ul {
    margin: 0;
}

.helplines ul li {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.helplines ul li i {
    color: #00d4ff;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.helplines .small {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.helplines .small a {
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.helplines .small a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Limits Section */
.limits {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
}

.limits h3 {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.limits h3 i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.limits ul {
    margin: 0 0 1rem 0;
}

.limits ul li {
    color: #b8b8b8;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.limits ul li::before {
    content: '→';
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.limits .small {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

/* Responsive Design for Page Styles */
@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0 4rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .page-hero h1 i {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .content {
        padding: 4rem 0;
    }
    
    .content h2 {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .content h2 i {
        font-size: 1.5rem;
    }
    
    .content h3 {
        font-size: 1.3rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-page,
    .tip,
    .callout,
    .helplines,
    .limits {
        padding: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .content h2 {
        font-size: 1.7rem;
    }
    
    .content h3 {
        font-size: 1.2rem;
    }
    
    .card-page,
    .tip,
    .callout,
    .helplines,
    .limits {
        padding: 1.2rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}