/* Import Google Fonts - Outfit + Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --black: #000000;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
    --off-white: #fafafa;
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    border-bottom: 1px solid var(--light-gray);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    /* font-size: 24px; */
    font-size: 29px !important;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: opacity 0.3s ease;
    z-index: 10001;
    position: relative;
}

/* .logo:hover {
    opacity: 0.7;
} */

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Navigation */
nav {
    z-index: 10000;
}

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

nav ul li a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--black);
}

/* Header Coffee Button */
.header-coffee-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    white-space: nowrap;
}

.header-coffee-btn:hover {
    background: var(--black);
    color: var(--white);
}

.header-coffee-btn .coffee-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0);
}

.header-coffee-btn:hover .coffee-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2.5px;
    color: var(--black);
    margin-bottom: 28px;
}

.hero .subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.coffee-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.btn-outline:hover .coffee-icon {
    filter: brightness(0) invert(1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -1.5px;
}

.stat-item p {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: var(--black);
    margin-bottom: 24px;
}

.about-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Badge Grid */
.badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Badge Colors - Black and White Only */
.badge-1 {
    background: #f5f5f5;
    color: #1a1a1a;
    border-color: #e5e5e5;
}

.badge-2 {
    background: #eeeeee;
    color: #1a1a1a;
    border-color: #e0e0e0;
}

.badge-3 {
    background: #e8e8e8;
    color: #1a1a1a;
    border-color: #d5d5d5;
}

.badge-4 {
    background: #e0e0e0;
    color: #1a1a1a;
    border-color: #cccccc;
}

.badge-5 {
    background: #d8d8d8;
    color: #1a1a1a;
    border-color: #c5c5c5;
}

.badge-6 {
    background: #f8f8f8;
    color: #1a1a1a;
    border-color: #e8e8e8;
}

.badge-7 {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #dddddd;
}

.badge-8 {
    background: #e5e5e5;
    color: #1a1a1a;
    border-color: #d0d0d0;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--off-white);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.timeline-date {
    min-width: 150px;
}

.timeline-date h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-date p {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 80px;
    color: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--black);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Developer Section */
.developer-section {
    padding: 140px 0;
    background: var(--off-white);
}

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

.developer-avatar {
    width: 120px;
    height: 120px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.developer-avatar svg {
    width: 56px;
    height: 56px;
    stroke: var(--white);
}

.developer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
    letter-spacing: -1px;
}

.developer-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.support-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-top: 48px;
    border: 1px solid var(--light-gray);
}

.support-box p {
    font-size: 17px;
    margin-bottom: 28px;
    color: var(--dark);
}

/* CTA Section */
.cta-section {
    padding: 0 0 80px 0;
    background: var(--white);
    text-align: center;
    /* border-top: 1px solid var(--light-gray); */
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--black);
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Content Pages */
.content-page {
    padding: 140px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--black);
    letter-spacing: -1.5px;
}

.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.content-page p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.content-page ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.content-page ul li {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.content-page ul li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: var(--black);
    font-weight: 700;
    font-size: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contact-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info a {
    font-size: 18px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    word-break: break-word;
}

.contact-info a:hover {
    opacity: 0.7;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 48px 0 32px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-4px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    transition: stroke 0.3s ease;
}

.social-links a:hover svg {
    stroke: var(--black);
}

footer p {
    font-size: 15px;
    opacity: 0.7;
    margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 16px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .header-coffee-btn {
        display: none;
    }

    /* nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: var(--white);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
    } */

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: white;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: 10000;
        padding-top: 18%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        height: auto;
        gap: 0;
        padding: 0;
        width: 100%;
        max-width: 400px;
    }

    nav ul li {
        border-bottom: 1px solid var(--light-gray);
        width: 100%;
    }

    nav ul li:first-child {
        border-top: 1px solid var(--light-gray);
    }

    nav ul li a {
        display: block;
        padding: 24px 32px;
        font-size: 22px;
        font-weight: 600;
        color: var(--dark);
    }

    .mobile-coffee-link {
        display: block;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid var(--light-gray);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

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

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

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

    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section,
    .features {
        padding: 80px 0;
    }

    .section-title,
    .about-header h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .badge-grid {
        margin-bottom: 48px;
    }

    .badge {
        font-size: 14px;
        padding: 12px 20px;
    }

    .developer-section {
        padding: 100px 0;
    }

    .developer-content h2 {
        font-size: 32px;
    }

    .developer-content p {
        font-size: 16px;
    }

    .support-box {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .content-page {
        /* padding: 120px 24px 80px; */
    }

    .content-page h1 {
        font-size: 36px;
    }

    .content-page h2 {
        font-size: 26px;
    }

    .content-page p,
    .content-page ul li {
        font-size: 16px;
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 70px;
    }

    .logo {
        font-size: 20px;
    }

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

/* Selection */
::selection {
    background: var(--black);
    color: var(--white);
}

/* Smooth transitions for AOS */
[data-aos] {
    pointer-events: auto;
}

/* Logo Styling */
.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-tagline {
    /* font-family: 'Outfit', sans-serif; */
    font-family: 'Playfair Display', serif;
    font-size: 8.25px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 3px;
    line-height: 2;
    text-transform: uppercase;
}

/* .logo:hover .logo-text,
.logo:hover .logo-tagline {
    opacity: 0.7;
    transition: opacity 0.3s ease;
} */

/* Mobile Menu Footer - Hidden on Desktop */
.mobile-footer {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-footer {
        display: block;
        margin-top: auto;
        padding-top: 48px;
        position: absolute;
        /* bottom: 5% !important; */
        top: 68%;
        left: 0;
    }
}

/* Social Section - NO TOP BORDER */
.social-section {
    padding: 0 32px 24px;
    text-align: center;
}

.social-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    margin: 0 0 20px 0;
    letter-spacing: 1.5px;
}

.social-icons {
    display: flex;
    gap: 16px;
    /* justify-content: center; */
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.social-icons svg {
    stroke: var(--black);
    transition: stroke 0.3s ease;
}

.social-icons a:hover svg {
    stroke: var(--white);
}

/* Indie Badge */
.indie-badge {
    padding: 20px 32px 32px;
    text-align: center;
    display: none;
}

.indie-badge p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.45);
    margin: 0;
    letter-spacing: 0.3px;
}

#bmc-wbtn {
    z-index: 10 !important;
}

/* Apps Section Styles */
.apps-section {
    padding: 140px 0 100px;
    background: var(--white);
}

.apps-section h1 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--black);
}

.apps-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 80px;
}

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

.app-card {
    background: var(--off-white);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--black);
}

.app-card.coming-soon {
    opacity: 0.7;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.app-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

.app-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
    letter-spacing: -0.5px;
}

.app-tagline {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.app-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    align-self: flex-start;
}

.app-download-btn:hover {
    background: var(--dark);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.app-download-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.coming-soon .app-download-btn {
    display: none;
}

/* Footer Links */
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    /* text-decoration: underline; */
}

.footer-divider {
    opacity: 0.5;
}

/* Responsive - Apps Page */
@media (max-width: 768px) {
    .apps-section {
        /* padding: 120px 24px 80px; */
    }

    .apps-section h1 {
        font-size: 36px;
    }

    .apps-intro {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .app-card {
        padding: 32px 24px;
    }

    .app-card h2 {
        font-size: 28px;
    }

    .app-tagline {
        font-size: 16px;
    }

    .app-description {
        font-size: 15px;
    }

    .app-download-btn {
        width: 100%;
    }

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

    .footer-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .apps-section h1 {
        font-size: 32px;
    }

    .app-icon {
        width: 64px;
        height: 64px;
    }

    .app-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* App Presence Text */
.app-presence {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--black);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--black);
    border-radius: 4px;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    align-self: flex-start;
}

.coming-soon-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .app-presence {
        font-size: 16px;
        padding: 16px;
        margin-bottom: 24px;
    }

    .coming-soon-badge {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .app-presence {
        font-size: 15px;
    }

    .coming-soon-badge {
        font-size: 14px;
    }
}

/* Payment */

/* Support Button */
.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.support-btn:hover {
    background: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.support-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.payment-info-text {
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px !important;
    color: var(--gray);
    margin: 0;
}

.payment-info-text svg {
    width: 12px;
    height: 12px;
    stroke: var(--gray);
}

/* Bottom Sheet Overlay */
.bottom-sheet-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.bottom-sheet-overlay.active {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Bottom Sheet */
.bottom-sheet {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    border-radius: 24px 24px 0 0;
    padding: 0;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Sheet Handle */
.sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    margin: 12px auto 0;
    flex-shrink: 0;
}

/* Fixed Header */
.sheet-header-fixed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: 24px 24px 0 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sheet-header-fixed h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.close-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

.close-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark);
}

/* Scrollable Content Wrapper */
.sheet-content-scroll {
    overflow-y: auto;
    flex: 1;
}

/* Sheet Content */
.sheet-content {
    padding: 24px;
}

/* Amount Input Section */
.amount-input-section {
    margin-bottom: 24px;
}

.amount-input-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    pointer-events: none;
}

#amountInput {
    width: 100%;
    padding: 20px 20px 20px 50px;
    font-size: 32px;
    font-weight: 700;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    background: var(--off-white);
    color: var(--black);
}

#amountInput:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
}

#amountInput.valid {
    border-color: var(--black);
    background: var(--white);
}

.min-amount-text {
    font-size: 13px;
    color: var(--gray);
    margin: 8px 0 0 4px;
}

/* Quick Amounts - 4 in one row */
.quick-amounts {
    margin-bottom: 24px;
}

.suggestions-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.amount-chips {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.amount-chip {
    padding: 14px 8px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    background: var(--off-white);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.amount-chip:hover {
    border-color: var(--gray);
    background: var(--white);
    transform: translateY(-2px);
}

.amount-chip.selected {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
}

/* Payment Methods - 3 in one row */
.payment-methods {
    margin-bottom: 24px;
}

.methods-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.method-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-method-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.payment-method-btn:hover {
    border-color: var(--gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-method-btn.selected {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Smaller Icon Size */
.method-icon-small {
    width: 60px !important;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    /* background: var(--dark); */
    padding: 8px;
}

.method-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    /* filter: brightness(0) invert(1); */
}

.payment-method-btn span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.check-mark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: var(--black);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.check-mark svg {
    stroke: var(--white);
}

.payment-method-btn.selected .check-mark {
    display: flex;
}

/* Pay Button */
.pay-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 16px;
}

.pay-btn:hover:not(:disabled) {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pay-btn:disabled {
    background: var(--light-gray);
    color: var(--gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.pay-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Secure Note */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    text-align: center;
}

#secure-note-text {
    font-size: 13px !important;
}

.secure-note svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray);
}

/* Loading Overlay - iOS Style */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
}

.ios-loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-content p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Thank You Sheet */
.thank-you-sheet {
    max-height: auto;
}

.thank-you-content {
    text-align: center;
    padding: 40px 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    stroke: var(--white);
}

.thank-you-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 16px 0;
}

.thank-you-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.close-thank-you-btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.close-thank-you-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .bottom-sheet {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .sheet-header-fixed {
        padding: 12px 20px;
        border-radius: 20px 20px 0 0;
    }

    .sheet-header-fixed h3 {
        font-size: 22px;
    }

    .sheet-content {
        padding: 20px;
    }

    #amountInput {
        font-size: 28px;
        padding: 18px 18px 18px 45px;
    }

    .currency-symbol {
        left: 18px;
        font-size: 24px;
    }

    .amount-chips {
        gap: 8px;
    }

    .amount-chip {
        padding: 12px 6px;
        font-size: 15px;
    }

    .method-grid-three {
        gap: 10px;
    }

    .payment-method-btn {
        padding: 16px 10px;
    }

    .method-icon-small {
        width: 40px;
        height: 40px;
    }

    .payment-method-btn span {
        font-size: 12px;
    }

    .thank-you-content {
        padding: 32px 24px;
    }

    .thank-you-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    #amountInput {
        font-size: 24px;
    }

    .currency-symbol {
        font-size: 20px;
    }

    .amount-chips {
        gap: 6px;
    }

    .amount-chip {
        padding: 10px 4px;
        font-size: 14px;
    }

    .method-grid-three {
        gap: 8px;
    }

    .payment-method-btn {
        padding: 14px 8px;
    }

    .method-icon-small {
        width: 36px;
        height: 36px;
    }

    .payment-method-btn span {
        font-size: 11px;
    }
}

#support-zenova {
    text-align: left;
}

/* @media (max-width: 768px) {
    #support-zenova {
        text-align: center;
    }
}

@media (max-width: 480px) {
    #support-zenova {
        text-align: center;
    }
} */

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* ================================================
   CONTACT FORM — append these styles to style.css
   ================================================ */

/* Section wrapper */
.contact-form-section {
    margin-top: 56px;
    margin-bottom: 8px;
}

.contact-form-section>h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-top: 0;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.contact-form-section>p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 28px;
}

/* Form card */
.contact-form {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 16px;
    padding: 36px;
}

/* Two-column row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Individual field group */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.required {
    color: var(--black);
}

/* Inputs, textarea, select */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: 10px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

/* Validation states */
.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}

.form-group input.input-valid,
.form-group textarea.input-valid,
.form-group select.input-valid {
    border-color: #38a169;
}

/* Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Select dropdown with custom arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--gray);
    pointer-events: none;
}

.select-wrapper select {
    cursor: pointer;
    padding-right: 40px;
}

/* Inline field error */
.field-error {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 6px;
    display: none;
    line-height: 1.4;
}

.field-error.visible {
    display: block;
}

/* Send button */
.send-message-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.send-message-btn:hover:not(:disabled) {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.send-message-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.send-message-btn svg {
    stroke: currentColor;
    flex-shrink: 0;
}

/* Spinner animation used inside button while sending */
@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

.send-message-btn .btn-spinner {
    animation: btnSpin 0.9s linear infinite;
    transform-origin: center;
}

/* Success message */
.form-success {
    display: none;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding: 18px 20px;
    background: #f0fff4;
    border: 1.5px solid #38a169;
    border-radius: 12px;
    animation: formSuccessFade 0.4s ease;
}

.form-success.visible {
    display: flex;
}

@keyframes formSuccessFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.success-check {
    width: 42px;
    height: 42px;
    background: #38a169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-check svg {
    stroke: #fff;
}

.success-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #276749 !important;
    margin: 0 0 4px !important;
    line-height: 1.4 !important;
}

.success-sub {
    font-size: 13px !important;
    color: #38a169 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Responsive */
@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px 18px;
    }

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

    .contact-form-section>h2 {
        font-size: 26px;
    }
}

/* ── QR Sheet ── */
.qr-sheet {
    max-height: 90vh;
}

.qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px 32px;
}

.qr-instruction-text {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.qr-box {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.qr-canvas {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-canvas img,
.qr-canvas canvas {
    width: 200px !important;
    height: 200px !important;
    border-radius: 8px;
    display: block;
}

.qr-amount-badge {
    background: var(--black);
    color: var(--white);
    padding: 8px 28px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.qr-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
    margin-bottom: 24px;
    text-align: left;
}

.qr-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-num {
    min-width: 28px;
    height: 28px;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.qr-step p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.qr-step p strong {
    color: var(--dark);
}

.upi-id-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 340px;
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    gap: 12px;
}

.upi-id-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.upi-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upi-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.copy-upi-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1.5px solid var(--light-gray);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-upi-btn:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.qr-paid-btn {
    width: 100%;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.qr-paid-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .qr-canvas {
        width: 180px;
        height: 180px;
    }

    .qr-canvas img,
    .qr-canvas canvas {
        width: 180px !important;
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .qr-canvas {
        width: 160px;
        height: 160px;
    }

    .qr-canvas img,
    .qr-canvas canvas {
        width: 160px !important;
        height: 160px !important;
    }
}

/* Hide payment app selector on desktop */
@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

/* Desktop: QR as centered modal */
@media (min-width: 769px) {
    #qrBottomSheet {
        align-items: center;
        justify-content: center;
    }

    #qrBottomSheet .bottom-sheet {
        border-radius: 20px;
        max-width: 480px;
        max-height: 90vh;
        animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 769px) {
    .bottom-sheet-overlay {
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .bottom-sheet {
        border-radius: 20px;
        max-width: 480px;
        width: 100%;
        max-height: 85vh;
        margin: auto;
        animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}