/* ============================================
   CIRCLE360 AI - Website Styles
   Assess. Fortify. Protect.
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Core Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-card-hover: rgba(30, 30, 45, 0.9);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;

    /* Accent Colors */
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-cyan: #22d3ee;
    --neon-green: #22c55e;
    --neon-blue: #3b82f6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);

    /* Glows */
    --glow-purple: 0 0 40px rgba(168, 85, 247, 0.4);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.4);

    /* Borders & Shadows */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(14px, 0.6vw + 11px, 18px);
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsive Typography */
@media (max-width: 1400px) {
    html { font-size: clamp(13px, 0.7vw + 10px, 15px); }
}

@media (min-width: 1801px) {
    html { font-size: clamp(16px, 0.5vw + 13px, 19px); }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    html {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

a {
    color: var(--neon-purple);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--neon-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 24px;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-gradient {
    background: linear-gradient(135deg,
        rgba(168, 85, 247, 0.1) 0%,
        rgba(236, 72, 153, 0.05) 50%,
        rgba(34, 211, 238, 0.1) 100%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.nav.scrolled {
    padding: 12px 40px;
    background: rgba(10, 10, 15, 0.98);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo svg {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 0;
        flex-direction: column;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(168, 85, 247, 0.1);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 100;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    opacity: 0.4;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 85%; animation-delay: 1s; background: var(--neon-pink); }
.particle:nth-child(3) { top: 40%; left: 5%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 90%; animation-delay: 3s; background: var(--neon-cyan); }
.particle:nth-child(5) { top: 15%; left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 20%; animation-delay: 5s; background: var(--neon-pink); }
.particle:nth-child(7) { top: 50%; left: 50%; animation-delay: 6s; }
.particle:nth-child(8) { top: 30%; left: 80%; animation-delay: 7s; background: var(--neon-cyan); }
.particle:nth-child(9) { top: 85%; left: 40%; animation-delay: 8s; }
.particle:nth-child(10) { top: 10%; left: 30%; animation-delay: 9s; background: var(--neon-pink); }
.particle:nth-child(11) { top: 55%; left: 15%; animation-delay: 10s; }
.particle:nth-child(12) { top: 35%; left: 95%; animation-delay: 11s; background: var(--neon-cyan); }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.6; }
    50% { transform: translateY(-40px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(5px); opacity: 0.5; }
}

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

/* Brand Identity */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-shield {
    width: 120px;
    height: 140px;
    animation: shieldFloat 4s ease-in-out infinite;
}

.hero-shield svg {
    width: 100%;
    height: 100%;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-brand-text {
    text-align: left;
}

.hero-product-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neon-purple);
    margin-top: 10px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-purple);
    color: var(--text-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-purple);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-base);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-check {
    color: var(--neon-green);
    font-weight: bold;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 24px;
    background: var(--bg-secondary);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-icon {
    font-size: 2.5rem;
    filter: none;
    -webkit-text-fill-color: initial;
    background: none;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.diff-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all var(--transition-base);
}

.diff-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
}

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.diff-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.diff-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   COMPLIANCE BADGES
   ============================================ */
.compliance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.compliance-badge.tier1 {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--neon-green);
}

.compliance-badge.tier2 {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--neon-blue);
}

.compliance-badge.tier3 {
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #94a3b8;
}

/* ============================================
   MODULES GRID
   ============================================ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-base);
}

.module-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-3px);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

.module-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.module-checks {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.module-list {
    list-style: none;
}

.module-list li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   ATTACK SURFACE CARDS
   ============================================ */
.attack-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.attack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.attack-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--glow-purple);
}

.attack-card:hover::before {
    transform: scaleX(1);
}

.attack-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 15px;
}

.attack-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: 120px 24px;
    background: linear-gradient(135deg,
        rgba(168, 85, 247, 0.15) 0%,
        rgba(236, 72, 153, 0.1) 50%,
        rgba(34, 211, 238, 0.15) 100%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 60px 24px 30px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-brand {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-brand-text {
        text-align: center;
    }

    .hero-shield {
        width: 70px;
        height: 84px;
    }

    .hero-product-name {
        font-size: clamp(2rem, 10vw, 3rem);
        letter-spacing: -1px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .stats-bar {
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

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

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

    .card,
    .diff-card,
    .feature-card,
    .module-card {
        padding: 25px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .compliance-row {
        flex-direction: column;
        align-items: center;
    }

    .compliance-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Contact page mobile */
    .diff-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Attack cards mobile */
    .diff-grid[style*="repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    .attack-card {
        padding: 20px 15px;
    }

    .attack-number {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .diff-grid[style*="repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat {
        min-width: 45%;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo svg {
        width: 32px;
        height: 32px;
    }
}
