@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

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

:root {
    --primary: #FF3D3D;
    --primary-dark: #CC0000;
    --primary-glow: rgba(255, 61, 61, 0.4);
    --bg-dark: #080808;
    --bg-darker: #040404;
    --text-white: #FFFFFF;
    --text-gray: #9BA1B0;
    --card-bg: rgba(15, 15, 18, 0.7);
    --border-color: rgba(255, 61, 61, 0.12);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

::selection {
    background: var(--primary);
    color: white;
}

/* Background with atmospheric gradients */
.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 61, 61, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 61, 61, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(15, 15, 18, 1) 0%, var(--bg-darker) 100%);
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.pattern-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 77, 77, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 77, 0.2) 50%, transparent 100%);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 42px;
    height: 42px;
    transition: transform 0.3s;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.3));
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

.nav-links a i {
    font-size: 18px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.4);
    background: #ff5e5e;
}

.btn-primary i {
    color: var(--text-white) !important;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 77, 77, 0.3);
    cursor: pointer;
    background: rgba(255, 77, 77, 0.05);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 77, 77, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.1);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-darker), transparent);
    z-index: 2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin: 10px 0 24px 0;
    color: var(--text-white);
    letter-spacing: -2px;
    position: relative;
    display: block;
    text-align: left;
}

.hero-subtitle {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 61, 61, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(255, 61, 61, 0.15);
    backdrop-filter: blur(5px);
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 550px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

/* Simplified & Clean Glow Effect */
.glitch {
    position: relative;
    text-shadow: 0 0 15px rgba(255, 61, 61, 0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    color: var(--primary);
    z-index: -1;
    opacity: 0.4;
}

.glitch::before {
    animation: glitch-subtle 3s infinite;
}

.glitch::after {
    animation: glitch-subtle 3s infinite reverse;
    opacity: 0.2;
}

@keyframes glitch-subtle {
    0% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
    100% { transform: translate(0); }
}

/* 3D Shield Enhancement */
.shield-3d {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.shield-container {
    position: relative;
    width: 280px;
    height: 350px;
    transform-style: preserve-3d;
    animation: floatShield 8s ease-in-out infinite;
}

@keyframes floatShield {
    0%, 100% {
        transform: translateY(0) rotateY(-20deg) rotateX(5deg);
    }
    50% {
        transform: translateY(-30px) rotateY(20deg) rotateX(-5deg);
    }
}

.shield-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 61, 61, 0.15) 0%, rgba(255, 61, 61, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
    transform: translateZ(-30px);
    filter: blur(15px);
}

.shield-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.9) 0%, rgba(10, 10, 12, 0.98) 100%);
    backdrop-filter: blur(40px);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
    border: 1px solid rgba(255, 61, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(255, 61, 61, 0.1);
    position: relative;
    overflow: hidden;
}

.shield-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-25deg);
    animation: sweep 4s infinite ease-in-out;
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

.shield-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, var(--primary-glow) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.shield-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 61, 61, 0.4));
    animation: logoFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) scale(1.08) rotate(2deg);
    }
}

.shield-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
    animation: pulse 4s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Particles - More Beautiful */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.8) 0%, rgba(255, 77, 77, 0.3) 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    animation: particleFloat 5s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(2) {
    top: 35%;
    left: 85%;
    animation-delay: 0.7s;
}

.particle:nth-child(3) {
    top: 55%;
    left: 15%;
    animation-delay: 1.4s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(4) {
    top: 75%;
    left: 75%;
    animation-delay: 2.1s;
}

.particle:nth-child(5) {
    top: 25%;
    left: 50%;
    animation-delay: 2.8s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(6) {
    top: 65%;
    left: 40%;
    animation-delay: 3.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(10px) scale(1.3);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(5, 5, 5, 0.4);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 64px;
    color: var(--text-white);
    letter-spacing: -1.5px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 61, 61, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 61, 61, 0.3);
    background: rgba(20, 20, 25, 0.8);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 61, 61, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 61, 61, 0.1), rgba(255, 61, 61, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 61, 61, 0.2);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 61, 61, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 61, 61, 0.2);
    border-color: var(--primary);
}

.feature-icon i {
    font-size: 34px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(255, 61, 61, 0.3));
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(15, 15, 20, 0.8), rgba(10, 10, 12, 0.95));
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 61, 61, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 61, 61, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured {
    border-color: rgba(255, 61, 61, 0.5);
    background: linear-gradient(145deg, rgba(25, 15, 15, 0.9), rgba(10, 10, 12, 0.98));
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 40px 80px rgba(255, 61, 61, 0.15);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, var(--primary) 0%, #ff7676 100%);
    height: 6px;
}

.badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(255, 61, 61, 0.3);
}

.pricing-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.pricing-card:hover .pricing-icon {
    background: rgba(255, 77, 77, 0.2);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.pricing-icon i {
    font-size: 36px;
    color: var(--primary);
}

.pricing-card h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.price {
    text-align: center;
    margin-bottom: 32px;
}

.price .amount {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -2px;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.price .period {
    display: block;
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 18px;
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 1));
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.2));
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 77, 77, 0.05);
    color: var(--text-gray);
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

/* Page Content */
.page-content {
    padding: 60px 0 100px;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 77, 77, 0.1);
    border-radius: 20px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.content-card h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h2 i {
    font-size: 28px;
    color: var(--primary);
}

.content-card h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--text-white);
    font-weight: 600;
}

.content-card h4 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: var(--text-white);
    font-weight: 600;
}

.content-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.content-card ul, .content-card ol {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 16px 0 16px 24px;
    font-size: 15px;
}

.content-card li {
    margin-bottom: 8px;
}

.content-card code {
    background: rgba(255, 77, 77, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    color: var(--primary);
    font-size: 14px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.content-card pre {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 77, 77, 0.15);
}

.content-card pre code {
    background: none;
    padding: 0;
}

.step-card {
    background: rgba(255, 77, 77, 0.03);
    border-left: 3px solid var(--primary);
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.step-card h4 {
    color: var(--text-white);
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-card h4 i {
    color: var(--primary);
}

.step-card p {
    margin-bottom: 12px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero .container {
        gap: 60px;
    }
    
    .hero-content h1 {
        font-size: 52px;
    }
    
    .shield-container {
        width: 300px;
        height: 350px;
    }
    
    .shield-logo {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .shield-3d {
        height: 450px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .content-card {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 38px;
    }
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span {
    background: var(--primary);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo img {
        width: 38px;
        height: 38px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        border-left: 1px solid rgba(255, 77, 77, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 77, 77, 0.05);
        width: 100%;
    }
    
    .nav-links .btn-primary {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .shield-3d {
        height: 350px;
    }
    
    .shield-container {
        width: 250px;
        height: 300px;
    }
    
    .shield-logo {
        width: 140px;
        height: 140px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-card {
        padding: 28px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-card {
        padding: 36px 28px;
    }
    
    .pricing-icon {
        width: 64px;
        height: 64px;
    }
    
    .pricing-icon i {
        font-size: 32px;
    }
    
    .price .amount {
        font-size: 44px;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-content {
        padding: 40px 0 80px;
    }
    
    .content-card {
        padding: 28px 20px;
    }
    
    .content-card h2 {
        font-size: 24px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .content-card h4 {
        font-size: 17px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-brand img {
        width: 48px;
        height: 48px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .shield-container {
        width: 220px;
        height: 270px;
    }
    
    .shield-logo {
        width: 120px;
        height: 120px;
    }
    
    .feature-card, .pricing-card {
        padding: 24px;
    }
    
    .price .amount {
        font-size: 38px;
    }
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }

.pricing-grid .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.3s; }
