/* SwimUp Landing Page Design System */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Outfit:wght@100..900&display=swap');

:root {
    /* Color Palette matching the SwimUp game mockup */
    --bg-gradient-start: #1b85eb;
    --bg-gradient-mid: #1068c7;
    --bg-gradient-end: #0c4a92;
    --water-light: #4ea8ff;
    --water-dark: #073467;
    --accent-yellow: #ffd200;
    --accent-yellow-hover: #e6bd00;
    --accent-orange: #ff8c00;
    --text-primary: #ffffff;
    --text-secondary: #e2f1ff;
    --text-dark: #0f375f;
    --bg-card: rgba(255, 255, 255, 0.92);
    --bg-card-dark: rgba(7, 44, 87, 0.7);
    --shadow-primary: 0 10px 30px rgba(0, 74, 146, 0.3);
    --shadow-accent: 0 8px 20px rgba(255, 210, 0, 0.4);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --font-heading: 'Fredoka', 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Animated Water Bubbles Background */
.bubble-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    animation: floatUp 12s infinite linear;
}

.bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header & Navigation */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition-normal);
}

header.scrolled {
    background: rgba(12, 74, 146, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent-yellow);
    margin-top: -4px;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-yellow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: var(--shadow-accent);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 210, 0, 0.6);
    background: #fff;
    color: var(--bg-gradient-end);
    border-color: var(--accent-yellow);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 21px;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(12, 74, 146, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    }

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

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

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

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

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

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

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

.badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 52, 102, 0.4);
    background: linear-gradient(to bottom, #ffffff 40%, #c4e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 560px;
}

/* Download Buttons & QR Code Container */
.download-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 14px;
    transition: var(--transition-normal);
    border: 1.5px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255,255,255,0.3);
    background: #111111;
}

.download-btn.ios {
    background: #ffffff;
    color: #000000;
    border-color: rgba(0,0,0,0.1);
}

.download-btn.ios:hover {
    background: #f3f3f3;
}

.download-btn svg {
    width: 24px;
    height: 24px;
}

.btn-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-meta span:first-child {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.btn-meta span:last-child {
    font-size: 16px;
    font-weight: 700;
}

/* QR Code Section Desktop Only */
.qrcode-showcase {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 10px;
    max-width: 500px;
}

.qrcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.qrcode-box svg {
    width: 100px;
    height: 100px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.qrcode-box span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Hero Mockup Graphic */
.hero-mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-shell {
    position: relative;
    width: 280px;
    height: 570px;
    background: #0d121c;
    border: 10px solid #1e293b;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 2;
    transition: var(--transition-slow);
}

.phone-shell:hover {
    transform: translateY(-5px) rotate(1deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.phone-camera {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.hero-deco-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotateDeco 40s linear infinite;
    z-index: 1;
}

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

.hero-bubble-deco {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatAnimation 6s ease-in-out infinite alternate;
}

.hero-bubble-deco.b1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.hero-bubble-deco.b2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/* Feature Section */
.features {
    padding: 100px 0;
    background: rgba(7, 52, 103, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 36px 30px;
    color: var(--text-dark);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background: #ffffff;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-gradient-start), var(--water-light));
    border-radius: 3px;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(27, 133, 235, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-gradient-start);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--bg-gradient-start);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0c4a92;
}

.feature-card p {
    font-size: 15px;
    color: #4b6a8d;
    line-height: 1.5;
}

/* Screenshots Gallery Section */
.gallery-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.gallery-container {
    width: 100%;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    touch-action: pan-y;
}

.screenshot-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
}

.screenshot-slider:active {
    cursor: grabbing;
}

.slide {
    min-width: 33.333%;
    padding: 0 15px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .slide {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .slide {
        min-width: 100%;
    }
}

.gallery-phone {
    width: 100%;
    max-width: 260px;
    background: #0d121c;
    border: 8px solid #1e293b;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    aspect-ratio: 9 / 19.3;
}

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

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    box-shadow: var(--shadow-accent);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    width: 26px;
    border-radius: 5px;
    background: var(--accent-yellow);
    box-shadow: 0 0 8px var(--accent-yellow);
}

/* Call to Action (CTA) Download Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 52, 103, 0.6) 100%);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-qrcode-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-qr-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 30px 24px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: var(--transition-normal);
}

.cta-qr-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255,255,255,0.2);
}

.cta-qr-card svg {
    width: 140px;
    height: 140px;
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cta-qr-card h4 {
    font-size: 18px;
    font-weight: 700;
}

.cta-qr-card .download-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
}

/* Footer Section */
footer {
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: var(--water-dark);
    position: relative;
    z-index: 10;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand .logo-text {
    font-size: 22px;
}

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

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
    transform: scale(1.1);
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #ffffff;
    color: #1e293b;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 80vh;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

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

.modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 24px;
    color: #0c4a92;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #64748b;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: #0f172a;
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.6;
}

.modal-body h4 {
    margin: 20px 0 8px 0;
    color: #0f172a;
    font-size: 18px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 16px;
    color: #475569;
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
    color: #475569;
}

.modal-body li {
    margin-bottom: 6px;
}

/* Responsive Media Queries (Mobile First approach overrides) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .download-buttons {
        justify-content: center;
    }

    .qrcode-showcase {
        display: none; /* Hide QR codes on tablet/mobile hero as the user is already on a mobile, or direct buttons are preferred */
    }
}

@media (min-width: 993px) {
    /* Show QR codes on desktop */
    .qrcode-showcase {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 15px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

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

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