/* Style Sheet for Ganamos VIP Landing Page */

/* CSS Variables for design tokens */
:root {
    --bg-dark: #070312;
    --bg-card: #0d061f;
    --bg-card-hover: #160a33;
    --primary: #8E3BFF;
    --primary-glow: rgba(142, 59, 255, 0.4);
    --primary-dark: #671cd9;
    --secondary: #8E3BFF;
    --pink-neon: #D44DFF;
    --gold: #FFD700;
    --gold-glow: rgba(255, 215, 0, 0.25);
    --gold-dark: #D8A125;
    --text-white: #ffffff;
    --text-light: #e2d9f3;
    --text-muted: #94a3b8;
    --border-color: #271242;
    --border-hover: #5B1D8D;
    --glass-blur: blur(16px);
    --transition-speed: 0.3s;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, #150930 0%, #070312 70%, #030108 100%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 45px 45px, 45px 45px;
    min-height: 100vh;
    position: relative;
}

code {
    background-color: rgba(157, 78, 221, 0.15);
    color: var(--gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

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

/* Typography Helpers */
h1, h2, h3, h4 {
    color: var(--text-white);
    font-weight: 800;
}

.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px var(--gold-glow);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
    filter: brightness(1.1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold) 0%, #ff9f1c 100%);
    color: #000000;
    box-shadow: 0 4px 15px var(--gold-glow);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(157, 78, 221, 0.1);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Button Layout with Subtexts */
.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small-text {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large-text {
    font-size: 1rem;
    font-weight: 800;
}

/* Header capsule button */
.btn-download-header {
    background: #ebdfff; /* Very light purple/white */
    color: #581c87; /* Deep purple */
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    box-shadow: 0 0 15px rgba(235, 223, 255, 0.2);
    border: none;
}

.btn-download-header:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Android & iOS Hero CTA overrides */
.hero-cta-group .btn-download-apk {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff; /* White text for contrast */
    box-shadow: 0 10px 25px var(--primary-glow);
    border: none;
}

.hero-cta-group .btn-download-apk:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(142, 59, 255, 0.6);
    filter: brightness(1.1);
}

.hero-cta-group .btn-download-apk .btn-small-text {
    color: #312e81; /* Dark indigo for subtitle */
    font-weight: 700;
}

.hero-cta-group .btn-download-apk i {
    color: #0f0a25;
    font-size: 1.6rem;
}



/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 6, 25, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 0;
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    user-select: none;
}

.logo-card-icon {
    color: #c084fc;
    transform: rotate(-10deg);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(192, 132, 252, 0.6));
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    color: #ffffff;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-speed);
}

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

.logo-img-footer {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 170px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2d9f3;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-promo i {
    color: #a78bfa;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2d9f3;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 35px;
    position: relative;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Floating Elements & Mockup Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-asset {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.4));
    height: auto;
}

.asset-mummy {
    top: 15%;
    left: 0;
    max-width: 90px;
    animation: floatMummy 7s ease-in-out infinite;
}

.asset-dog {
    top: 8%;
    right: 0;
    max-width: 95px;
    animation: floatDog 6s ease-in-out infinite;
}

.asset-plane {
    bottom: 20%;
    left: 0;
    max-width: 100px;
    animation: floatPlane 8s ease-in-out infinite;
}

.asset-astronaut {
    bottom: 12%;
    right: 0;
    max-width: 85px;
    animation: floatAstronaut 9s ease-in-out infinite;
}

@keyframes floatDog {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes floatPlane {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-15px) translateX(6px) rotate(-3deg); }
}

@keyframes floatMummy {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-4deg); }
}

@keyframes floatAstronaut {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    50% { transform: translateY(-10px) translateX(-5px) rotate(8deg); }
}

.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    background: #0f0a25;
    border-radius: 48px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(167, 139, 250, 0.2);
    border: 3.5px solid rgba(167, 139, 250, 0.2);
    padding: 10px;
    z-index: 2;
    animation: floatingPhone 8s ease-in-out infinite;
}

.phone-mockup-wrapper::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    background: #000000;
    border-radius: 20px;
    z-index: 10;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background-color: #0b071e;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Sections Global Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Guide Section */
.guide-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #2B054A 0%, var(--bg-dark) 80%);
    overflow: hidden;
}

.guide-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 23, 158, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.tabs-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

.tabs-content {
    padding: 40px;
}

/* Steps Grid for Android */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    text-align: center;
    transition: all var(--transition-speed);
}

.step-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #ff9f1c 100%);
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--gold-glow);
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    margin-top: 10px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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





/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-section .section-title {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-turbo {
    color: #c084fc;
}

.icon-alerts {
    color: #fbbf24;
}

.icon-security {
    color: #e2e8f0;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 2, 15, 0.8);
    overflow: hidden;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

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

/* Download Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.download-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #0f0a25;
    border: 1px solid var(--border-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px var(--primary-glow);
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    padding: 40px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
}

.download-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.progress-bar-container {
    height: 8px;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 10px;
    transition: width 0.1s linear;
}

.progress-status {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
}

/* Footer Section */
.footer {
    background: #090516;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0 40px 0;
    text-align: center;
    overflow: hidden;
}

.footer-container-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-logo .logo-card-icon {
    color: #c084fc;
    transform: rotate(-10deg);
    font-size: 1.3rem;
}

.footer-links-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-simple a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links-simple a:hover {
    color: #c084fc;
}

.footer .copyright {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
}

.badge-item.age-18 {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Ambient Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.14; /* Slightly more visible as requested */
}

.hero-glow-1 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: -10%;
    right: 5%;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--pink-neon);
    bottom: 10%;
    left: -5%;
}

.hero-glow-3 {
    width: 350px;
    height: 350px;
    background: var(--gold);
    top: 30%;
    left: 40%;
    opacity: 0.08;
}

.guide-glow-1 {
    width: 450px;
    height: 450px;
    background: var(--gold);
    bottom: -10%;
    right: 10%;
    opacity: 0.1;
}

.guide-glow-2 {
    width: 350px;
    height: 350px;
    background: var(--pink-neon);
    top: 10%;
    left: 5%;
    opacity: 0.12;
}

/* Background Decorative Icons */
.bg-decor {
    position: absolute;
    pointer-events: none;
    color: var(--text-white);
    opacity: 0.035; /* Fills empty spaces better with higher opacity */
    z-index: 1;
    font-size: 10rem;
    transition: transform 0.5s ease;
}

.decor-1 {
    top: 15%;
    right: 12%;
    transform: rotate(15deg);
    animation: slowSpin 35s linear infinite;
}

.decor-2 {
    bottom: 15%;
    left: 8%;
    transform: rotate(-20deg);
    font-size: 12rem;
    animation: slowFloat 22s ease-in-out infinite;
}

.decor-3 {
    top: 35%;
    left: 6%;
    transform: rotate(25deg);
    font-size: 8rem;
    animation: slowSpin 40s linear infinite reverse;
}

.decor-4 {
    top: 12%;
    left: 35%;
    transform: rotate(-15deg);
    font-size: 9rem;
    animation: slowFloat 25s ease-in-out infinite alternate;
}

.decor-5 {
    bottom: 30%;
    right: 10%;
    transform: rotate(10deg);
    font-size: 10rem;
    animation: slowSpin 45s linear infinite;
}

.decor-6 {
    top: 25%;
    left: 12%;
    transform: rotate(10deg);
    font-size: 10rem;
    animation: slowSpin 45s linear infinite;
}

.decor-7 {
    bottom: 12%;
    right: 8%;
    transform: rotate(-15deg);
    font-size: 8rem;
    animation: slowFloat 20s ease-in-out infinite;
}

.decor-8 {
    bottom: 15%;
    left: 8%;
    transform: rotate(20deg);
    font-size: 9rem;
    animation: slowFloat 24s ease-in-out infinite alternate;
}

.decor-9 {
    top: 15%;
    right: 8%;
    transform: rotate(-25deg);
    font-size: 8rem;
    animation: slowSpin 35s linear infinite reverse;
}

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

@keyframes slowFloat {
    0%, 100% { transform: translateY(0) rotate(-20deg); }
    50% { transform: translateY(-15px) rotate(-15deg); }
}

.guide-section .container {
    position: relative;
    z-index: 2;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .floating-elements {
        display: none; /* Hide floating assets on tablet/mobile to avoid overflow */
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .logo-card-icon {
        font-size: 1.2rem;
    }
    
    .btn-download-header {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .tabs-header {
        flex-direction: row; /* Keep them horizontal */
    }
    
    .tab-btn {
        padding: 14px 10px;
        font-size: 0.95rem;
    }
    
    .tabs-content {
        padding: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        padding: 0 15px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none; /* Hide dividers on small screens */
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .floating-elements {
        display: none; /* Hide floating chips to avoid overflow */
    }
    
    .phone-mockup-wrapper {
        width: 250px;
        height: 500px;
        border-radius: 36px;
        padding: 8px;
    }
    
    .phone-mockup-wrapper::before {
        width: 70px;
        height: 16px;
        top: 14px;
    }
    
    .phone-frame {
        border-radius: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .hero-cta-group {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .btn-text-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
}

/* Terms & Privacy Modal Styles */
.terms-modal-content {
    background: #0f0a25;
    border: 1px solid var(--border-hover);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px var(--primary-glow);
    border-radius: 24px;
    width: 90%;
    max-width: 650px;
    padding: 35px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
    text-align: left;
}

.download-modal.active .terms-modal-content {
    transform: scale(1);
}

.terms-body {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
    padding-right: 15px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-body h4 {
    color: var(--text-white);
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.terms-body p {
    margin-bottom: 12px;
}

/* Custom scrollbar for terms body */
.terms-body::-webkit-scrollbar {
    width: 6px;
}

.terms-body::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.terms-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f0a25;
    border: 1px solid var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--primary-glow);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10005;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    font-size: 1.8rem;
    color: var(--gold);
    animation: pulse 1.5s infinite;
}

.toast-content {
    color: var(--text-white);
}

.toast-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.toast-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 576px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 12px 18px;
    }
    
    .terms-modal-content {
        padding: 25px;
    }
    
    .terms-body {
        max-height: 300px;
    }
}

