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

:root {
    --primary: #FFD700;
    --secondary: #0A1F44;
    --accent: #1E3A8A;
    --light: #F8FAFC;
    --dark: #0F172A;
    --gray: #64748B;
    --light-gray: #E2E8F0;
    --success: #10B981;
    --transition: all 0.3s ease;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--secondary);
    overflow-x: hidden;
    min-width: 320px;
    width: 100%;
}

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

section {
    padding: 80px 0;
}

.highlight {
    color: var(--primary);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-login, .btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    gap: 10px;
    white-space: nowrap;
    width: auto;
    max-width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background-color: #FFE44D;
}

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

.btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.btn-login {
    background-color: transparent;
    color: var(--light);
    padding: 10px 20px;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-signup {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 12px 20px;
}

.btn-signup:hover {
    background-color: #FFE44D;
    transform: translateY(-2px);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    overflow: hidden;
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
}

.logo-img {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    white-space: nowrap;
}

.logo-text span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
    z-index: 1001;
    width: 40px;
    height: 40px;
    margin-left: auto;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--light);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Features Hero Section */
.features-hero {
    padding-top: 130px;
    text-align: center;
    width: 100%;
}

.features-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.features-hero .hero-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.features-hero .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
    word-wrap: break-word;
}

.features-hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 100%;
    line-height: 1.6;
}

.features-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Features Grid Section */
.feature-grid-section {
    background-color: var(--dark);
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 70px;
    width: 100%;
}

.feature-card {
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: 18px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Feature Specific Styles */
.feature-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(30, 58, 138, 0.3);
    color: #93C5FD;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    flex-shrink: 0;
}

.alert-types {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.alert-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 80px;
}

.alert-type i {
    font-size: 1.4rem;
    color: var(--primary);
}

.alert-type span {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.history-demo {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    overflow: hidden;
}

.history-graph {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
    margin-bottom: 10px;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
}

.graph-bar {
    width: 12px;
    background-color: var(--gray);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.graph-bar.active {
    background-color: var(--primary);
}

.history-label {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.dashboard-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
}

.highlight-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--light-gray);
}

.target-demo {
    margin-top: 20px;
    width: 100%;
}

.target-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

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

.target-item span {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.target-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.prediction-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 10px 15px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.app-stores {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    flex: 1;
    justify-content: center;
    min-width: 140px;
}

.store-badge i {
    font-size: 1.1rem;
    color: var(--primary);
}

.store-badge span {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Advanced Features Section */
.advanced-features {
    background-color: var(--secondary);
    width: 100%;
}

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

.advanced-card {
    display: flex;
    gap: 20px;
    background-color: rgba(15, 23, 42, 0.8);
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    width: 100%;
}

.advanced-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 215, 0, 0.2);
}

.advanced-icon {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.advanced-content {
    flex: 1;
    min-width: 0;
}

.advanced-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advanced-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.advanced-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.advanced-link:hover {
    gap: 12px;
}

/* CTA Section */
.features-cta {
    background-color: var(--dark);
    width: 100%;
}

.cta-container {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(30, 58, 138, 0.2));
    padding: 50px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.cta-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.cta-feature i {
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    padding-top: 70px;
    padding-bottom: 40px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-description {
    margin: 20px 0;
    max-width: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.link-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light);
}

.link-group a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    word-wrap: break-word;
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
}

.footer-extra {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Margin below footer */
.footer {
    margin-bottom: 40px;
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        max-width: 85%;
    }
    
    .features-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .features-hero .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }
    
    .advanced-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 22px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 35px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
    
    /* Navigation - Mobile Styles */
    .navbar {
        padding: 16px 0;
    }
    
    .nav-container {
        padding: 0 18px;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 25px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: normal;
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }
    
    .btn-login, .btn-signup {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
    }
    
    /* Features Hero */
    .features-hero {
        padding-top: 110px;
    }
    
    .features-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .features-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .features-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 10px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 16px;
    }
    
    /* Features Grid - Single Column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 25px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Advanced Grid - Single Column */
    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .advanced-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .advanced-icon {
        margin: 0 auto;
    }
    
    /* CTA */
    .cta-container {
        padding: 40px 25px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
    
    .cta-container h2 {
        font-size: 1.9rem;
    }
    
    .cta-container p {
        font-size: 1.05rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Footer */
    .footer {
        padding-top: 60px;
        padding-bottom: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-description {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 10px;
    }
    
    .footer-extra {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .features-hero {
        padding-top: 100px;
    }
    
    .features-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .features-hero .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .features-hero .hero-badge {
        font-size: 0.85rem;
        padding: 7px 14px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Features */
    .feature-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .alert-types {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .alert-type {
        width: 100%;
        max-width: 200px;
    }
    
    .dashboard-highlights {
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-item {
        min-width: 100%;
    }
    
    /* CTA */
    .cta-container {
        padding: 35px 20px;
        border-radius: 20px;
        margin: 0 8px;
        width: calc(100% - 16px);
    }
    
    .cta-container h2 {
        font-size: 1.7rem;
    }
    
    .cta-container p {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    
    .footer-content {
        gap: 35px;
        padding: 0 8px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .link-group h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .link-group a {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .secure-badge {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
    
    .store-badge {
        min-width: 100%;
    }
    
    .app-stores {
        flex-direction: column;
    }
}

/* Small Mobile - 375px and below */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .features-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .features-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 18px;
        font-size: 0.9rem;
        max-width: 260px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .cta-container {
        padding: 30px 18px;
    }
    
    .cta-container h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .nav-menu {
        width: 90%;
        padding: 85px 20px 25px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
}

/* Extra Small Mobile - 320px and below */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-hero .hero-title {
        font-size: 1.7rem;
    }
    
    .features-hero .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 13px 16px;
        font-size: 0.88rem;
        max-width: 240px;
    }
    
    .feature-card {
        padding: 18px 14px;
        border-radius: 14px;
    }
    
    .cta-container {
        padding: 25px 15px;
        border-radius: 18px;
    }
    
    .cta-container h2 {
        font-size: 1.4rem;
    }
    
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
}