/* ==========================================================================
   Design System & Custom Properties
   ========================================================================== */
:root {
    --bg-main: #090c12;
    --bg-card: rgba(18, 24, 38, 0.65);
    --bg-nav: rgba(9, 12, 18, 0.75);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.45);
    --secondary: #eab308;
    --secondary-glow: rgba(234, 179, 8, 0.45);
    --purple: #a855f7;
    --purple-glow: rgba(168, 85, 247, 0.45);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --font-sans: 'Vazirmatn', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.02) 0%, transparent 40%);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

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

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

code {
    font-family: monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--secondary);
    font-size: 0.9em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ==========================================================================
   Background Particles Effect
   ========================================================================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: floatParticle 10s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.particle-circle {
    border-radius: 50%;
}

.particle-star, .particle-spark {
    font-family: sans-serif;
    line-height: 1;
    user-select: none;
}

@keyframes floatParticle {
    0% {
        transform: translateY(105vh) translateX(0) scale(0.4) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.45;
        transform: translateY(50vh) translateX(15px) scale(0.9) rotate(180deg);
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-10vh) translateX(-15px) scale(0.6) rotate(360deg);
        opacity: 0;
    }
}

/* ==========================================================================
   Typography & Accents
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.4;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-glow-icon {
    color: var(--secondary);
    filter: drop-shadow(0 0 8px var(--secondary-glow));
}

.green-check {
    color: #10b981;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 16px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--bg-nav);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.header-scrolled {
    padding: 5px 0;
    background: rgba(9, 12, 18, 0.9);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
}

.brand-logo span {
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Mobile Nav Panel
   ========================================================================== */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0d111d;
    z-index: 1000;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.mobile-nav-panel.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.6rem;
    cursor: pointer;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
    color: #ffffff;
    padding-right: 5px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
    animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

#main-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-features-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.h-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-media {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.hero-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatImage 6s infinite ease-in-out;
}

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

.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.35;
}

.blue-orb {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 10%;
    right: -10%;
}

.gold-orb {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 10%;
    left: -10%;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 30px 0;
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

#stat-delivery:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.06);
    transform: translateY(-5px);
}

#stat-orders:hover {
    border-color: rgba(250, 204, 21, 0.25);
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.06);
    transform: translateY(-5px);
}

#stat-users:hover {
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.06);
    transform: translateY(-5px);
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.blue-bg { background: rgba(59, 130, 246, 0.15); color: var(--primary); }
.gold-bg { background: rgba(234, 179, 8, 0.15); color: var(--secondary); }
.purple-bg { background: rgba(168, 85, 247, 0.15); color: var(--purple); }
.green-bg { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

.stat-number, .stat-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.stars-color {
    color: #facc15 !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 10px rgba(250, 204, 21, 0.25);
}

.gift-color {
    color: #60a5fa !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.25);
}

.premium-color {
    color: #c084fc !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 2px 10px rgba(192, 132, 252, 0.25);
}

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

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

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

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(18, 24, 38, 0.8);
}

#feature-stars:hover {
    border-color: rgba(250, 204, 21, 0.25);
    box-shadow: 0 15px 35px rgba(250, 204, 21, 0.06);
}

#feature-premium:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.06);
}

#feature-ton:hover {
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.06);
}

#feature-gift:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.06);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-card .badge {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 5;
}

.gold-badge { background: rgba(234, 179, 8, 0.1); color: var(--secondary); border: 1px solid rgba(234, 179, 8, 0.2); }
.blue-badge { background: rgba(59, 130, 246, 0.1); color: var(--primary); border: 1px solid rgba(59, 130, 246, 0.2); }
.purple-badge { background: rgba(168, 85, 247, 0.1); color: var(--purple); border: 1px solid rgba(168, 85, 247, 0.2); }
.green-badge { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }

.feature-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
    transform: translateY(-2px);
    color: #ffffff;
}

.feature-link i {
    transition: var(--transition-fast);
}

.feature-link:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.04);
}

.step-num {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.step-card:hover .step-num {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.6);
}

.step-card h3 {
    margin-top: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================================================
   Security Section
   ========================================================================== */
.security-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.security-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.security-image {
    display: none;
}

.security-card-interactive {
    background: linear-gradient(145deg, #131b2e 0%, #0d1222 100%);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.security-card-interactive:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
}

.shield-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    margin: 0 auto 25px;
    position: relative;
}

.pulse-glow-shield {
    animation: shieldPulse 2s infinite alternate;
}

@keyframes shieldPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--primary-glow)); }
    100% { transform: scale(1.08); filter: drop-shadow(0 0 15px var(--primary)); }
}

.security-card-interactive h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.sec-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.sec-p-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.sec-p-item i {
    color: var(--primary);
}

.sec-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.features-list-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: right;
}

.f-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.f-list-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.f-list-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    background: #06080d;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
}

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

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

.footer-links h4, .footer-contact h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ffffff;
    padding-right: 5px;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
}

.tel-link {
    color: var(--primary);
    font-weight: 600;
}

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

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features-list {
        justify-content: center;
    }
    
    .stats-section {
        margin-top: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .security-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-btn {
        display: none !important;
    }
    
    .brand-logo {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    #main-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-media {
        margin-top: 20px;
    }
    
    .hero-image-wrapper {
        max-width: 300px;
    }
    
    .glowing-orb {
        filter: blur(50px);
        opacity: 0.25;
    }
}

@media (max-width: 480px) {
    #main-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number, .stat-text {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: -20px;
        right: 20px;
    }
    
    .security-card-interactive {
        padding: 25px 20px;
    }
    
    .sec-points {
        font-size: 0.85rem;
    }
    
    .f-list-item {
        gap: 15px;
    }
    
    .icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .f-list-item h4 {
        font-size: 1rem;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
