/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a855f7;
    --primary-dark: #9333ea;
    --secondary-color: #d946ef;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #fbbf24;
    --danger-color: #ef4444;
    --dark-bg: #1a0b2e;
    --dark-card: #2d1b4e;
    --dark-border: #4c1d95;
    --light-bg: #2d1b4e;
    --card-bg: #3b1f5e;
    --text-primary: #f8fafc;
    --text-secondary: #e0d4f7;
    --gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --gradient-3: linear-gradient(135deg, #ec4899 0%, #fbbf24 100%);
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Force all buttons to never transform or animate */
a.btn, button.btn, .btn-primary, .btn-secondary, .btn-cta-primary, .btn-cta-secondary, .btn-signup, .btn-purchase {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transition: none !important;
    animation: none !important;
    width: auto !important;
    height: auto !important;
    min-width: fit-content !important;
    max-width: none !important;
    flex-shrink: 0 !important;
}

a.btn:hover, a.btn:active, a.btn:focus,
button.btn:hover, button.btn:active, button.btn:focus {
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(217, 70, 239, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.7;
        transform: scale(1.15) rotate(120deg);
    }
    66% {
        opacity: 0.9;
        transform: scale(0.95) rotate(240deg);
    }
}

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

/* Custom Lock Logo Animation */
.custom-lock-logo {
    display: inline-block;
    margin-left: 10px;
    animation: logoShake 5s ease-in-out infinite;
}

.custom-lock-logo svg {
    overflow: visible;
}

/* Lock body stays in place */
.lock-body-group {
    transform-origin: center;
}

/* Shackle animation group */
.shackle-group {
    transform-origin: 35px 70px;
    animation: shackleOpenClose 4s ease-in-out infinite;
}

/* Shine effect animation */
.lock-shine {
    animation: shine 2s ease-in-out infinite;
}

/* Shake before opening */
@keyframes logoShake {
    0%, 20% {
        transform: rotate(0deg);
    }
    21% {
        transform: rotate(-2deg);
    }
    22% {
        transform: rotate(2deg);
    }
    23% {
        transform: rotate(-2deg);
    }
    24% {
        transform: rotate(2deg);
    }
    25%, 100% {
        transform: rotate(0deg);
    }
}

/* Shackle opens smoothly to the left */
@keyframes shackleOpenClose {
    0%, 25% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(-50deg);
    }
    60% {
        transform: rotate(-50deg);
    }
    80%, 100% {
        transform: rotate(0deg);
    }
}

/* Shine effect */
@keyframes shine {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Hover effects */
.custom-lock-logo:hover .lock-body-main {
    filter: url(#shadow) brightness(1.1);
}

.custom-lock-logo:hover .shackle-group {
    animation-duration: 2.5s;
}

/* Navbar */
.navbar {
    background: rgba(10, 1, 24, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 1, 24, 0.95);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    margin-left: 0.5rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-signup {
    background: var(--gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white !important;
    transition: none !important;
    position: relative;
    overflow: hidden;
    transform: none !important;
}

.btn-signup:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-signup:active,
.btn-signup:focus {
    transform: none !important;
    outline: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(168, 85, 247, 0.2) 70%);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.7) 0%, rgba(217, 70, 239, 0.2) 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, rgba(236, 72, 153, 0.1) 70%);
    top: 40%;
    left: 30%;
    animation-delay: 3s;
}

/* Additional floating shapes for more dynamic effect */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 70%);
    border-radius: 50%;
    filter: blur(70px);
    top: 60%;
    right: 20%;
    animation: float 25s ease-in-out infinite;
    animation-delay: 12s;
}

.shape-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.5) 0%, rgba(251, 191, 36, 0.1) 70%);
    top: 10%;
    left: 10%;
    animation-delay: 5s;
}

.shape-5 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(168, 85, 247, 0.15) 70%);
    bottom: 20%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translate(50px, -50px) scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50px, 50px) scale(0.9) rotate(180deg);
        opacity: 0.5;
    }
    75% { 
        transform: translate(50px, 50px) scale(1.1) rotate(270deg);
        opacity: 0.7;
    }
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transform: none !important;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    background: var(--gradient);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:active {
    background: var(--gradient);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:focus {
    outline: none;
    background: var(--gradient);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary:active {
    background: var(--primary-dark);
}

.btn-secondary:focus {
    outline: none;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: fadeInUp 1s ease 0.6s both;
}

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

.hero-image {
    position: absolute;
    left: 55%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.hero-image img {
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

/* All Features */
.all-features {
    padding: 3rem 0;
    background: var(--dark-bg);
}

.features-list {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.features-list h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    padding: 0.5rem;
    transition: color 0.3s;
}

.feature-item:hover {
    color: var(--primary-color);
}

.feature-item i {
    color: var(--success-color);
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.download-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.download-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

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

.download-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.download-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.info-item i {
    font-size: 1.3rem;
}

.btn-download {
    background: white;
    color: #667eea;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 1rem 0;
    transition: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: none !important;
}

.btn-download:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-download:active,
.btn-download:focus {
    transform: none !important;
    outline: none;
}

.download-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--light-bg);
}

.steps-horizontal {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    flex-wrap: nowrap !important;
    max-width: 1400px;
    overflow-x: auto;
    padding: 2rem 1rem;
}

.step {
    text-align: center;
    flex: 0 0 auto !important;
    min-width: 140px;
    max-width: 160px;
    position: relative;
    padding: 0.5rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.3s;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.step h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
}

/* Why Choose */
.why-choose {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.reason {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s;
}

.reason:hover {
    transform: translateY(-5px);
    background: var(--card-bg);
}

.reason i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.2rem;
}

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

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--gradient);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 20px 80px rgba(99, 102, 241, 0.5); }
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    animation: bounce 2s infinite;
}

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

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.price {
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    display: block;
}

.current-price {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.current-price small {
    font-size: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: right;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #10b981;
}

.btn-purchase {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: none !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transform: none !important;
}

.btn-purchase:hover {
    background: white;
    transform: none !important;
}

.btn-purchase:active,
.btn-purchase:focus {
    transform: none !important;
    outline: none;
}

.countdown {
    margin-top: 2rem;
}

.countdown p {
    color: white;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    min-width: 60px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.time-unit small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    animation: rotate 30s linear infinite;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    transform: none !important;
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-cta-primary:active,
.btn-cta-primary:focus {
    background: rgba(255, 255, 255, 0.85);
    outline: none;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    transform: none !important;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-cta-secondary:active,
.btn-cta-secondary:focus {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    outline: none;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4,
.footer-section h5 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid var(--danger-color);
}

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

.footer-disclaimer strong {
    color: var(--danger-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
}

/* Windows Alert */
.windows-alert {
    background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    animation: slideDown 0.5s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.alert-content i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.alert-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.alert-text strong {
    font-size: 1.1rem;
}

.alert-text span {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Terms Section */
.terms-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

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

.terms-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.terms-card.full-width {
    grid-column: 1 / -1;
    text-align: center;
    border-top-color: var(--success-color);
}

.terms-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.terms-icon.warning {
    background: rgba(251, 146, 60, 0.1);
    color: var(--warning-color);
}

.terms-icon.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.terms-icon.info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.terms-icon.primary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary-color);
}

.terms-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.terms-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.terms-card ul {
    list-style: none;
}

.terms-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.terms-card ul li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.terms-card ul li i.fa-check {
    color: var(--success-color);
}

.terms-card ul li i.fa-times {
    color: var(--danger-color);
}

.terms-card ul li i.fa-info-circle {
    color: var(--primary-color);
}

.terms-card ul li i.fa-exclamation-triangle {
    color: var(--warning-color);
}

.terms-card ul li strong {
    color: var(--text-primary);
}

.terms-agreement {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 1rem auto 0;
}

.terms-agreement strong {
    color: var(--danger-color);
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .steps-horizontal {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .step {
        min-width: 200px !important;
        max-width: 300px !important;
    }

    .step-arrow {
        transform: rotate(-90deg);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .windows-alert {
        top: 60px;
    }

    .alert-content {
        flex-direction: column;
        text-align: center;
    }

    .alert-text {
        align-items: center;
    }

    .terms-content {
        grid-template-columns: 1fr;
    }
}
