:root {
    --bg-navy: #000000;
    --bg-navy-light: #0a0a0a;
    --bg-navy-dark: #000000;
    --bg-primary: #000000;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-subtle: #1e293b;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-blue-dark: #2563eb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #000000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.background-animation::after {
    content: '10101 01010 11001 00110 10011 01101 11010 00101 10110 01001 11100 00011 10101 01010 11001 00110 10011 01101 11010 00101 10110 01001 11100 00011';
    position: absolute;
    top: -100%;
    left: 0;
    width: 200%;
    height: 200%;
    font-size: 1.2rem;
    opacity: 0.04;
    line-height: 3;
    word-wrap: break-word;
    animation: float-security 120s linear infinite;
    color: var(--accent-blue);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

@keyframes float-security {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(100%) translateX(-10%);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(60px) saturate(180%);
    -webkit-backdrop-filter: blur(60px) saturate(180%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.8px;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: var(--accent-blue);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.logo a:hover .logo-img {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: block;
    position: relative;
    background: transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(0, 102, 255, 0.3) 0%,
        rgba(51, 133, 255, 0.2) 40%,
        rgba(0, 82, 204, 0.1) 70%,
        transparent 100%
    );
    filter: blur(80px);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.3;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-static {
    display: block;
    font-weight: 300;
    color: rgba(148, 163, 184, 0.8);
    font-size: 1.8rem;
}

.hero-title-animated {
    display: block;
    position: relative;
    height: 1.4em;
    width: 100%;
    margin-top: 0.05em;
    overflow: hidden;
}

.hero-word {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.hero-word.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-word.exit-up {
    opacity: 0;
    transform: translateY(-100%);
}

.hero-word.enter-down {
    opacity: 0;
    transform: translateY(100%);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.2px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s backwards;
}

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

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    animation: fadeInUp 1s ease 0.4s backwards;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
}

.hero-newsletter {
    max-width: 580px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-newsletter-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 100%;
}

.hero-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    min-width: 0;
}

.hero-newsletter-form input[type="email"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hero-newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.hero-newsletter-form .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.85rem 1.8rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-newsletter-form {
        flex-direction: column;
    }
    
    .hero-newsletter-form input[type="email"],
    .hero-newsletter-form .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: rgba(59, 130, 246, 0.15);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
                0 4px 16px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3),
                0 8px 32px rgba(31, 38, 135, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(59, 130, 246, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.section {
    padding: 4rem 0;
    margin: 0;
    position: relative;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.3px;
    max-width: 700px;
}

.page-header-modern {
    padding: 140px 0 2rem;
    text-align: center;
    margin: 0;
}

.header-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.page-title-modern {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.vision-section {
    position: relative;
    overflow: hidden;
    background: #000000;
    padding: 4rem 0;
    margin: 0;
}

.vision-box {
    max-width: 1200px;
    margin: 0 auto;
}

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

.vision-item {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(80px) saturate(200%);
    -webkit-backdrop-filter: blur(80px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vision-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: all 0.5s ease;
}

.vision-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vision-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.2),
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(59, 130, 246, 0.2);
}

.vision-item:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.vision-item:hover::after {
    opacity: 1;
}

.vision-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.vision-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: -0.1px;
}

.vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.vision-item:hover .vision-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.mission-section {
    background: #000000;
}

.pillars-section {
    background: #000000;
    padding: 4rem 0;
    margin: 0;
}

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

.pillar-card:nth-child(1),
.pillar-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pillar-card:nth-child(2),
.pillar-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pillar-card:nth-child(3),
.pillar-card:nth-child(6) {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.pillar-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(70px) saturate(190%);
    -webkit-backdrop-filter: blur(70px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.2));
    border-radius: 0 24px 0 40px;
    opacity: 0;
    transition: all 0.5s ease;
    filter: blur(20px);
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pillar-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 28px 72px rgba(59, 130, 246, 0.18),
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                inset 0 0 40px rgba(59, 130, 246, 0.05);
}

.pillar-card:hover::before {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    letter-spacing: -0.1px;
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.15);
}

.news-section {
    background: #000000;
    padding: 4rem 0;
    margin: 0;
}

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

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}

.news-card {
    padding: 3.5rem 3rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(70px) saturate(190%);
    -webkit-backdrop-filter: blur(70px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, rgba(139, 92, 246, 0.8) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.news-card::after {
    content: '';
    position: absolute;
    top: -100%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 30%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
    transform: rotate(-45deg);
}

.news-card:hover {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.18),
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.12),
                inset 0 0 40px rgba(59, 130, 246, 0.05);
}

.news-card:hover::before {
    opacity: 1;
    width: 4px;
}

.news-card:hover::after {
    opacity: 1;
    top: -50%;
    right: -25%;
}

.news-date {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: -0.2px;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.news-card .read-more {
    color: var(--accent-blue);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-card:hover .read-more {
    gap: 1rem;
    color: var(--accent-blue-light);
}

.resources-section {
    background: #000000;
}

.newsletter-section {
    background: #000000;
    position: relative;
    padding: 4rem 0;
    margin: 0;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}


.process-section {
    background: var(--bg-navy-light);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border-subtle);
    border: 1px solid var(--border-subtle);
}

.process-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
                0 4px 16px rgba(59, 130, 246, 0.1);
}

.process-number {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.process-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: -0.8px;
}

.process-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 4px 24px rgba(59, 130, 246, 0.08);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 4px 24px rgba(0, 102, 255, 0.08);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 8px 32px rgba(0, 0, 0, 0.5);
}

.service-icon,
.pillar-icon,
.vision-icon,
.resource-icon {
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent-blue);
    opacity: 0.9;
}

.service-icon svg,
.pillar-icon svg,
.vision-icon svg,
.resource-icon svg {
    stroke: var(--accent-blue);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon svg,
.service-card:hover .service-icon svg {
    stroke: var(--accent-blue-light);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: -0.8px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.projects-section {
    background: var(--bg-navy);
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.project-item {
    padding: 3rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.project-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 4rem;
}

.project-info h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: -0.3px;
}

.project-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.project-item:hover .project-arrow {
    transform: translateX(10px);
    color: var(--accent-blue);
}

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

.project-item:hover .project-info h3 {
    color: var(--accent-blue);
}

.contact-section {
    text-align: center;
    padding: 4rem 0;
    margin: 0;
    background: #000000;
    border: none;
    box-shadow: none;
}

.contact-section h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.contact-email {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: -0.5px;
}

.contact-email:hover {
    color: var(--text-primary);
}

footer {
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0;
    margin: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: -0.3px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-header {
    padding: 140px 0 2rem;
    text-align: center;
    margin: 0;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: -1.5px;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: -0.3px;
}

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

.about-card {
    padding: 2.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: left;
}

.about-card .pillar-icon {
    margin-bottom: 1rem;
}

.about-card h2 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: -0.8px;
    color: var(--accent-blue);
    text-align: left;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: var(--accent-blue);
    text-align: left;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.about-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-card li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    text-align: left;
}

.about-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.about-cta {
    grid-column: 1 / -1;
    text-align: center;
}

.about-cta .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.about-cta {
    text-align: center;
    padding: 3rem 2.5rem !important;
}

.about-cta .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-cta .btn {
    margin-top: 1rem;
}

.content-section {
    padding: 3rem 0;
}

.rules-list, .scenarios-list, .news-list, .resources-list, .glossary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-subtle);
}

.rule-item, .scenario-item, .news-item, .resource-item, .glossary-item {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.rule-item:last-child, .scenario-item:last-child, .news-item:last-child,
.resource-item:last-child, .glossary-item:last-child {
    border-bottom: none;
}

.rule-item:hover, .scenario-item:hover, .news-item:hover,
.resource-item:hover, .glossary-item:hover {
    background: var(--bg-navy-light);
    padding-left: 4rem;
}

.rule-item h3, .scenario-item h3, .news-item h3,
.resource-item h3, .glossary-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.rule-item p, .scenario-item p, .news-item p,
.resource-item p, .glossary-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    letter-spacing: -0.3px;
}

.scenario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.severity-badge {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.severity-low {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.severity-medium {
    background: rgba(255, 200, 0, 0.1);
    color: #ffc800;
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.severity-high {
    background: rgba(255, 0, 100, 0.1);
    color: #ff0064;
    border: 1px solid rgba(255, 0, 100, 0.3);
}

.category-badge, .type-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.scenario-solution {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--bg-navy-dark);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: -0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-navy);
    color: var(--text-primary);
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-muted);
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid;
    animation: slideIn 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: -0.3px;
}

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

.alert-success {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    border-color: rgba(0, 102, 255, 0.3);
}

.alert-error {
    background: rgba(255, 0, 100, 0.1);
    color: #ff0064;
    border-color: rgba(255, 0, 100, 0.3);
}

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

.rule-item {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rule-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.rule-item h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.rule-summary {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rule-details {
    color: var(--text-secondary);
    line-height: 1.8;
}

.rule-details h4 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rule-details ul {
    list-style: none;
    padding: 0;
}

.rule-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.rule-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

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

.rule-card {
    padding: 2rem;
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.rule-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.5);
}

.rule-card .rule-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.rule-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -0.6px;
}

.rule-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent-blue);
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.rule-card:hover .read-more {
    gap: 1rem;
}

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.rule-number {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
}

.rule-detail-content {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

.rule-content h2,
.rule-content h3 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.8px;
}

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

.rule-content h3 {
    font-size: 1.5rem;
}

.rule-content h4 {
    color: var(--accent-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.rule-content p {
    margin-bottom: 1.5rem;
}

.rule-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.rule-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.rule-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

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

.scenario-card {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.5);
}

.scenario-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    letter-spacing: -1px;
}

.scenario-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.scenario-section {
    margin-bottom: 2rem;
}

.scenario-section h4,
.scenario-solution h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.risks-list,
.solutions-list {
    list-style: none;
    padding: 0;
}

.risks-list li,
.solutions-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.risks-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: #ffc800;
}

.solutions-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.scenario-description h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.scenario-description p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.scenario-description ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.scenario-description ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.scenario-description ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.scenario-severity {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.severity-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-critique,
.severity-critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.severity-élevé,
.severity-elevé,
.severity-high {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.severity-moyen,
.severity-medium {
    background: rgba(250, 204, 21, 0.2);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.severity-faible,
.severity-low {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.scenario-threat-type {
    color: var(--text-secondary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-threat-type strong {
    color: var(--text-primary);
}

.scenario-rules-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.scenario-rules-links h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rules-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.rule-link-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rule-link-button:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.filters-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(70px) saturate(190%);
    -webkit-backdrop-filter: blur(70px) saturate(190%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.filter-input,
.filter-select {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.filter-input::placeholder {
    color: var(--text-muted);
}

.filter-select option {
    background: var(--bg-navy);
    color: var(--text-primary);
}

select {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

select:focus {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary) !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.05) inset !important;
}

select option {
    background: #1a1a2e !important;
    color: var(--text-primary) !important;
    padding: 0.5rem;
}

optgroup {
    background: #0a0a0a !important;
    color: var(--text-secondary) !important;
    font-weight: 600;
}

[data-theme="light"] select {
    background: #ffffff !important;
    color: #1a1a2e !important;
}

[data-theme="light"] select:focus {
    background: #f5f5f5 !important;
}

[data-theme="light"] select option {
    background: #ffffff !important;
    color: #1a1a2e !important;
}

[data-theme="light"] optgroup {
    background: #f0f0f0 !important;
    color: #1a1a2e !important;
}

.glossary-search-container {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glossary-search-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.glossary-search-input::placeholder {
    color: var(--text-muted);
}

.glossary-search-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.tools-grid-homepage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tools-grid-homepage .tool-card:hover,
.tools-grid-homepage .glass-card:hover,
.tool-card.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
    border-left-color: rgba(59, 130, 246, 0.8);
}

.request-forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.request-form-card {
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.request-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

.request-form-card.cybercrime {
    border-left: 3px solid rgba(239, 68, 68, 0.5);
}

.request-form-card.cyberconsultation {
    border-left: 3px solid rgba(59, 130, 246, 0.5);
}

.request-form-card.factchecking {
    border-left: 3px solid rgba(34, 197, 94, 0.5);
}

.request-form-card.osint {
    border-left: 3px solid rgba(168, 85, 247, 0.5);
}

.request-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-card-icon.cybercrime {
    background: rgba(239, 68, 68, 0.15);
}

.request-card-icon.cyberconsultation {
    background: rgba(59, 130, 246, 0.15);
}

.request-card-icon.factchecking {
    background: rgba(34, 197, 94, 0.15);
}

.request-card-icon.osint {
    background: rgba(168, 85, 247, 0.15);
}

.request-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.request-card-text {
    flex: 1;
}

.request-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.request-card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.request-card-link {
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.request-card-link.cybercrime {
    color: rgba(239, 68, 68, 1);
}

.request-card-link.cyberconsultation {
    color: rgba(59, 130, 246, 1);
}

.request-card-link.factchecking {
    color: rgba(34, 197, 94, 1);
}

.request-card-link.osint {
    color: rgba(168, 85, 247, 1);
}

@media (max-width: 1023px) {
    .request-forms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tools-grid-homepage {
        grid-template-columns: 1fr;
    }
}

.fact-checking-grid {
    grid-template-columns: repeat(2, 1fr);
}

.osint-methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tool-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    letter-spacing: -1px;
}

.tool-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tool-usage,
.tool-brands {
    margin-top: 2rem;
}

.tool-usage h4,
.tool-brands h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.tool-usage p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.tool-brands ul {
    list-style: none;
    padding: 0;
}

.tool-brands li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.tool-brands li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

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

.glossary-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.glossary-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                0 8px 32px rgba(0, 0, 0, 0.5);
}

.glossary-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    letter-spacing: -0.5px;
}

.glossary-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.resource-category {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.resource-category h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    letter-spacing: -1px;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.resource-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.resource-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--accent-blue-light);
}

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

.news-card {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.news-date {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.news-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.8px;
}

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

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

.contact-info {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: left;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    letter-spacing: -1px;
    text-align: left;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-details {
    margin-top: 2rem;
    text-align: left;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.contact-item > div {
    flex: 1;
    text-align: left;
}

.contact-item svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-blue-light);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    justify-content: flex-start;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.contact-form {
    max-width: 100%;
    margin: 0;
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    letter-spacing: -1px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios-grid,
    .tools-grid,
    .glossary-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title-modern {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .rules-grid,
    .scenarios-grid,
    .tools-grid,
    .tools-grid-homepage,
    .glossary-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid,
    .fact-checking-grid {
        grid-template-columns: 1fr;
    }
    
    .osint-methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* New Homepage Sections */
.mission-section {
    text-align: center;
    padding: 4rem 0;
    margin: 0;
}

.mission-section .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.testimonial-card {
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.resource-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2);
}

.resource-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.footer-newsletter {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 82, 204, 0.05) 100%);
    padding: 4rem 0;
    margin: 0;
}

.newsletter-box {
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.newsletter-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    white-space: nowrap;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .news-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Dropdown Navigation Menus */
.nav-menu .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    background: transparent !important;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 102, 255, 0.1) !important;
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Enhanced Glassmorphism Cards */
.glass-card-enhanced {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-card-enhanced:hover {
    background: rgba(26, 26, 26, 0.7);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 12px 48px rgba(0, 102, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Vision et Objectifs Section */
.vision-section {
    padding: 4rem 0;
    margin: 0;
}

.vision-box {
    text-align: center;
}

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

.vision-item {
    text-align: left;
}

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

.vision-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.vision-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}


/* Section Spacing Adjustments */
.section {
    padding: 4rem 0;
    margin: 0;
}

.section + .section {
    margin: 0;
}

/* Contact Section Enhanced */
.contact-section {
    text-align: center;
    padding: 4rem 3rem;
    margin: 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Design for New Elements */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
}

/* Hero Section Adjustments (No Background Image) */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
}

/* Mobile Menu Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(15, 31, 53, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        border-left: 1px solid rgba(59, 130, 246, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        color: var(--text-secondary);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
}

/* ==================== Quiz Styles ==================== */

.quiz-container {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.quiz-intro {
    margin-bottom: 3rem;
}

.quiz-card {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.quiz-card h2 {
    color: var(--accent-blue-light);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.metric-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.metric h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.quiz-form {
    margin-top: 2rem;
}

.quiz-progress {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.question-card {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.question-number {
    color: var(--accent-blue-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.question-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-label {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-label:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
}

.option-label.selected {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.option-label input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.2rem;
    width: 20px;
    height: 20px;
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.option-text {
    color: var(--text-primary);
    flex: 1;
    line-height: 1.5;
}

.question-nav {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-primary, .btn-secondary, .btn-success {
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(59, 130, 246, 0.15);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2),
                0 4px 16px rgba(59, 130, 246, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(59, 130, 246, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.3),
                0 8px 32px rgba(31, 38, 135, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(59, 130, 246, 0.2);
}

.btn-secondary {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Results Styles */

.results-container {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.overall-score-card {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.overall-score-card h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(var(--color) calc(var(--score) * 1%), rgba(59, 130, 246, 0.1) 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background: var(--bg-navy);
    border-radius: 50%;
}

.score-value {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score-value span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.score-label {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.detailed-scores {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

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

.scores-grid {
    display: grid;
    gap: 2rem;
}

.score-item {
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
}

.score-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.score-icon {
    font-size: 2rem;
}

.score-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.score-bar {
    position: relative;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    transition: width 1s ease;
}

.score-percentage {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.recommendations-card {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.recommendation-header {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.recommendation-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.priority-rules, .weak-areas, .suggested-tools {
    margin-top: 3rem;
}

.priority-rules h3, .weak-areas h3, .suggested-tools h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.rule-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.rule-card:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.rule-number {
    color: var(--accent-blue-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.rule-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.rule-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.rule-link {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.weak-areas-list {
    list-style: none;
}

.weak-areas-list li {
    background: rgba(234, 88, 12, 0.1);
    border-left: 3px solid #ea580c;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.weak-areas-list strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.weak-areas-list p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.tool-card {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.tool-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tools-link {
    text-align: center;
    margin-top: 1.5rem;
}

.tools-link a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.tools-link a:hover {
    color: var(--accent-blue-light);
}

.email-analysis-card, .breach-results-card {
    background: rgba(15, 31, 53, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.email-analysis-card h2, .breach-results-card h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.email-form {
    max-width: 500px;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.875rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.privacy-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.alert-success h3 {
    color: #34d399;
    margin-bottom: 0.5rem;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.alert-warning h3 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

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

.alert-danger h3 {
    color: #f87171;
    margin-bottom: 0.5rem;
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.alert p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.breaches-list {
    margin-top: 2rem;
}

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

.breaches-grid {
    display: grid;
    gap: 1.5rem;
}

.breach-item {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
}

.breach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.breach-header h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.breach-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.breach-item p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.data-classes {
    margin-top: 1rem;
}

.data-classes strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.data-class-tag {
    display: inline-block;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.hibp-recommendations {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
}

.hibp-recommendations h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hibp-recommendations ul {
    list-style-position: inside;
    color: var(--text-secondary);
}

.hibp-recommendations li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.actions-card {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .quiz-metrics {
        grid-template-columns: 1fr;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .question-nav {
        flex-direction: column;
    }
    
    .actions-card {
        flex-direction: column;
    }
    
    /* Quiz Results Mobile Styles */
    .overall-score-card {
        padding: 2rem 1.5rem;
    }
    
    .overall-score-card h2 {
        font-size: 1.4rem;
    }
    
    .score-circle {
        width: 160px;
        height: 160px;
    }
    
    .score-circle::before {
        width: 135px;
        height: 135px;
    }
    
    .score-value {
        font-size: 2.2rem;
    }
    
    .score-value span {
        font-size: 1.1rem;
    }
    
    .score-label {
        font-size: 0.95rem;
    }
    
    .detailed-scores {
        padding: 1.5rem;
    }
    
    .detailed-scores h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .score-header h3 {
        font-size: 1rem;
    }
    
    .score-bar {
        height: 35px;
    }
    
    .score-percentage {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }
    
    .recommendations-card {
        padding: 1.5rem;
    }
    
    .recommendation-header h2 {
        font-size: 1.3rem;
    }
    
    .recommendation-message {
        font-size: 0.95rem;
    }
    
    .priority-rules h3,
    .weak-areas h3,
    .suggested-tools h3 {
        font-size: 1.2rem;
    }
    
    .rule-card h4 {
        font-size: 1rem;
    }
    
    .rule-card p {
        font-size: 0.85rem;
    }
    
    .weak-areas-list li strong {
        font-size: 0.95rem;
    }
    
    .weak-areas-list li p {
        font-size: 0.85rem;
    }
    
    .breach-results-card {
        padding: 1.5rem;
    }
    
    .breach-results-card h2 {
        font-size: 1.3rem;
        word-break: break-word;
    }
    
    .breach-item h4 {
        font-size: 1rem;
    }
    
    .data-class-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header .subtitle {
        font-size: 0.95rem;
    }
}

/* Toast notifications in bottom right */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.toast {
    background: rgba(15, 31, 53, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    min-width: 300px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 2px solid rgba(16, 185, 129, 0.5);
}

.toast-error .toast-icon,
.toast-danger .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 2px solid rgba(239, 68, 68, 0.5);
}

.toast-info .toast-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.toast-message {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .toast-container {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .toast {
        min-width: auto;
    }
}
