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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors */
    --primary-color: #00204e;
    --primary-gradient: linear-gradient(135deg, #00204e 0%, #003366 100%);
    --secondary-gradient: linear-gradient(135deg, #004080 0%, #0059b3 100%);
    --accent-gradient: linear-gradient(135deg, #0066cc 0%, #3399ff 100%);
    --dark-bg: #00204e;
    --dark-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #00204e;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    /* Subtle for premium feel */
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #00204e;
    top: -200px;
    left: -100px;
    animation: orbFloat 20s infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #003366;
    bottom: -100px;
    right: -50px;
    animation: orbFloat 25s infinite alternate-reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #004080;
    top: 40%;
    left: 60%;
    animation: orbFloat 30s infinite alternate;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Floating Glass Shards for Hero */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: shardFloat 15s infinite ease-in-out;
}

.hero::before {
    top: 20%;
    left: 15%;
    animation-delay: -2s;
}

.hero::after {
    bottom: 20%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes shardFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -50px) rotate(180deg);
        opacity: 0.1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-header-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-logo {
    margin-bottom: 0;
}

.app-logo img {
    width: 140px;
    height: 140px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(74, 95, 193, 0.2);
    animation: logoFloat 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.app-logo img:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #a5b4fc;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #fff 30%, #3399ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 4vw, 24px);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-weight: 400;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s backwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s backwards;
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-appstore {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a6fd1 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 95, 193, 0.3);
}

.btn-playstore {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-large {
    font-size: 18px;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    animation: fadeIn 1s ease-out 1.5s backwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



/* ===================================
   FEATURES OVERVIEW SECTION - UNIQUE DESIGN
   =================================== */
.features-overview {
    padding: var(--section-padding) 20px;
    background: #00204e;
    position: relative;
    overflow: hidden;
}

/* Decorative dots in background */
.features-overview::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(139, 159, 232, 0.12) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-card-detailed {
    background: linear-gradient(135deg, rgba(67, 88, 163, 0.35) 0%, rgba(52, 71, 138, 0.25) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 159, 232, 0.12);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.feature-card-detailed::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 159, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card-detailed:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(67, 88, 163, 0.45) 0%, rgba(52, 71, 138, 0.35) 100%);
    border-color: rgba(139, 159, 232, 0.25);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(74, 95, 193, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Large rounded icon container */
.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    position: relative;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 -2px 4px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, rgba(139, 159, 232, 0.25), rgba(165, 180, 252, 0.15));
    border-radius: 26px;
    opacity: 0;
    z-index: -1;
    filter: blur(6px);
    transition: opacity 0.3s ease;
}

.feature-card-detailed:hover .feature-icon-box {
    transform: scale(1.06) rotate(-2deg);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.18),
        inset 0 -3px 6px rgba(0, 0, 0, 0.06),
        inset 0 3px 6px rgba(255, 255, 255, 1);
}

.feature-card-detailed:hover .feature-icon-box::after {
    opacity: 1;
}

.feature-icon {
    font-size: 40px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Clean white text */
.feature-card-detailed h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.feature-card-detailed:hover h3 {
    transform: translateX(2px);
}

.feature-card-detailed p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.feature-card-detailed:hover p {
    color: rgba(255, 255, 255, 0.85);
    transform: translateX(2px);
}

/* Remove particles */
.feature-card-detailed .particle {
    display: none;
}

/* ===================================
   STATS SECTION - HUD PULSE
   =================================== */
.stats {
    padding: 100px 20px;
    background: #00204e;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(74, 95, 193, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(74, 95, 193, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    display: block;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* ===================================
   SCREENSHOTS SECTION - PARALLAX VIEW
   =================================== */
.screenshots {
    padding: 120px 20px;
    background: #00204e;
    overflow: hidden;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    perspective: 2000px;
    margin-top: 60px;
}

.screenshot-card {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transform: rotateY(-20deg) rotateX(5deg);
}

.screenshot-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05) translateZ(100px);
    z-index: 10;
}

.phone-frame {
    background: #000;
    border: 8px solid #1a1a1a;
    border-radius: 40px;
    padding: 0;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(74, 95, 193, 0.2);
    overflow: hidden;
    position: relative;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.phone-frame img {
    width: 280px;
    height: 600px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.screenshots-carousel {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.screenshot-card {
    transition: var(--transition-smooth);
}

.screenshot-card:hover {
    transform: scale(1.05);
}

.screenshot-card.featured:hover {
    transform: scale(1.15);
}

.phone-frame {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
}

.phone-frame img {
    width: 280px;
    height: auto;
    border-radius: 24px;
    display: block;
}

/* ===================================
   SSS (FAQ) SECTION - MODERN ACCORDION
   =================================== */
.faq {
    padding: 100px 20px;
    background: #00204e;
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(165, 180, 252, 0.2);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: 0.3s;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #a5b4fc;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 30px 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* Active State for JS */
.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(165, 180, 252, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ===================================
   CTA SECTION - GLOWING BOX
   =================================== */
.cta {
    padding: 120px 20px;
    background: #00204e;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 95, 193, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

/* ===================================
   CONTACT SECTION - FORM
   =================================== */
.contact {
    padding: 120px 20px;
    background: #00204e;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(165, 180, 252, 0.12), transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-hours {
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: grid;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-hours span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-field label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(165, 180, 252, 0.6);
    box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.15);
}

.contact-submit {
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #3399ff 0%, #6a7bfd 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    justify-self: start;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.contact-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   FOOTER - MODERN MINIMAL
   =================================== */
.footer {
    padding: 80px 20px 40px;
    background: #00204e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0;
    display: block;
}

.footer-brand h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.brand-credit {
    margin-top: 5px;
}

.brand-credit a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.brand-credit a:hover {
    color: #a5b4fc;
    letter-spacing: 0.5px;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 20px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .features-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .screenshots-carousel {
        gap: 20px;
    }

    .screenshot-card.featured {
        transform: scale(1);
    }

    .phone-frame img {
        width: 220px;
    }

    .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-brand-flex {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-contact {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info {
        text-align: center;
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-header-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .hero-content {
        padding-top: 40px;
    }
}
