@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* 
    DESIGN TOKENS (Variables)
    These are like "saved colors" or "shortcut names". 
    Instead of typing the color code #00D1FF every time, we just type var(--accent-color).
    If we change it here, it changes everywhere on the website!
*/
:root {
    --bg-color: #0B0E14;
    /* The dark background of the whole page */
    --surface-color: #161B22;
    /* A slightly lighter color for cards and sections */
    --surface-accent: #1F2631;
    --primary-gradient: linear-gradient(135deg, #00D1FF 0%, #0094FF 100%);
    /* The neon blue gradient */
    --accent-color: #00F0FF;
    /* Bright neon cyan */
    --text-primary: #FFFFFF;
    /* Pure white text */
    --text-secondary: #94A3B8;
    /* Soft gray text for descriptions */
    --glass-bg: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --btn-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.orb {
    display: none;
    /* Removed all background orbs */
}

.orb-1 {
    display: none;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 148, 255, 0.15);
    bottom: 20%;
    left: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 240, 255, 0.1);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }

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

/* 
    UNIVERSAL RESET
    Browsers have their own default spacing. We reset them to 0 so we have 
    total control over the design.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Padding won't make things wider than they should be */
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    /* Uses our saved dark color */
    color: var(--text-primary);
    /* Uses our saved white color */
    line-height: 1.6;
    /* Adds space between lines of text */
    overflow-x: hidden;
    /* Prevents the page from shaking sideways */
}

h1,
h2,
h3,
h4,
.outfit {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 
    NAVIGATION BAR
    The menu at the top. We use "backdrop-filter" to get that 
    cool blurred glass effect.
*/
nav {
    position: fixed;
    /* Sticks to the top while scrolling */
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Stays on top of everything else */
    padding: 1.5rem 0;
    background: #05070a !important;
    /* Solid dark background to prevent any scrolling content overlap or text bleed */
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    /* This makes the logo text have a gradient color */
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
    width: auto;
    mix-blend-mode: screen;
    /* Makes black background perfectly transparent */
    filter: contrast(1.5) brightness(1.1);
    /* Forces near-black to pure black */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-shadow);
}

/* 
    HERO SECTION
    This is the first big area you see. We use a "Grid" to put text 
    on the left and the image on the right.
*/
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Left side is 1.2x wider than right side */
    gap: 4rem;
    /* Space between text and image */
    align-items: center;
    /* Centers them vertically */
}

.hero-text h1 {
    font-size: 4.5rem;
    /* Slightly larger for impact */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    /* Solid Neon Cyan */
    color: #000;
    /* Dark text for contrast */
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    /* Neon glow */
}

.hero-phone-container {
    width: 100%;
    max-width: 380px;
    /* Increased slightly for the high-quality mockup */
    margin: 0 auto;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    /* Smooth entrance */
}



#hero-phone-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Removed mix-blend-mode because the new image is a high-quality PNG with transparency */
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    /* Adds depth to the mockup */
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {

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

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

/* Stats Bar */
.stats-bar {
    background: var(--surface-color);
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Features Section */
.features {
    padding: 10rem 0;
}

#features {
    padding-top: 4.5rem;
    /* Reduced to pull dashboard row perfectly centered on scroll */
    padding-bottom: 8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

#features .section-header {
    margin-bottom: 2.5rem;
    /* Tighter spacing so entire dashboard is visible on screen */
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* New Feature Row Layout (Side-by-Side) */
.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 18rem;
    /* Increased spacing for isolation */
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-visual {
    flex: 1;
    max-width: 380px;
    position: relative;
    display: flex;
    justify-content: center;
}

.feature-visual img {
    width: 280px;
    height: 580px;
    /* Forced height to ensure consistent visual 'box' */
    object-fit: contain;
    /* Ensures the entire phone mockup is visible without stretching */
    border-radius: 2rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 3.5rem;
    /* Even larger and bolder */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-info .accent-p {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.4rem;
    /* Increased size */
    margin-bottom: 2rem;
}

.feature-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-info ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    /* Increased size */
}

.feature-info ul li i {
    color: var(--accent-color);
    width: 20px;
}

@media (max-width: 979px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column-reverse;
        text-align: center;
        gap: 4rem;
        margin-bottom: 8rem;
    }

    .feature-info ul li {
        justify-content: center;
    }
}



/* Global Reach Section */
.global-reach {
    padding: 10rem 0;
    background: var(--bg-color);
}

.global-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-direction: row;
    /* Image LEFT, Text RIGHT */
}

.global-image {
    flex: 1;
    max-width: 480px;
    display: flex;
    justify-content: center;
}

.global-image-mobile {
    display: none !important;
    /* Hide by default on desktop */
}

.global-text {
    flex: 1.4;
}

.global-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.global-text h2 span {
    color: var(--accent-color);
}

.language-bar {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.lang-title {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.lang-list {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 979px) {
    .global-content {
        text-align: center;
        gap: 4rem;
    }

    .global-image {
        display: none !important;
        /* Hide desktop image on mobile */
    }

    .global-image-mobile {
        display: block !important;
        /* Show mobile image exactly below bullet points */
    }

    .global-text ul {
        display: inline-block;
        text-align: left;
    }
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.lang-tag {
    background: var(--surface-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

/* Pricing Section */
.pricing {
    padding: 10rem 0;
}

#pricing,
#how-it-works {
    padding-top: 4.5rem;
    /* Reduced to pull grids perfectly centered on scroll */
    padding-bottom: 8rem;
}

#pricing .section-header,
#how-it-works .section-header {
    margin-bottom: 2.5rem;
    /* Tighter spacing so entire content is visible on screen */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    position: relative;
}

.pricing-card.premium {
    border: 2px solid var(--accent-color);
    box-shadow: var(--neon-shadow);
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-gradient);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 900;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background: #05070A;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    /* Adjusted for 5 columns */
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}



/* 
    RESPONSIVE DESIGN (Mobile Support)
    This section tells the browser: "If the screen is smaller than 992 pixels 
    (like a Tablet or Phone), use these different styles."
*/
@media (max-width: 979px) {
    .hero-text h1 {
        font-size: 3rem;
        /* Smaller text for tablets */
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns instead of 3 */
    }

    .hero-content {
        grid-template-columns: 1fr;
        /* Stack text and image on top of each other */
        text-align: center;
        /* Center everything */
    }
}

@media (max-width: 768px) {

    /* Even smaller screens (Phones) */
    .features-grid {
        grid-template-columns: 1fr;
        /* 1 column (vertical list) */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* App Screenshots Carousel */
.app-screenshots {
    padding: 10rem 0;
    background: #05070A;
}

.screenshots-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.screenshots-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.screenshot-item {
    flex: 0 0 300px;
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.3s;
    background: transparent;
}

.screenshot-item img {
    width: 100%;
    display: block;
    mix-blend-mode: screen;
    /* Hides black background in screenshots too */
}

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

.screenshot-item img {
    width: 100%;
    display: block;
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
    background: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

@media (min-width: 601px) {
    .testimonial-card.clone {
        display: none !important;
    }
}

.star-rating {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-card p {
    color: var(--text-secondary);
    /* Light gray text */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    /* Not bold */
    max-width: 280px;
    /* Keeps quotes short */
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.user-info img {
    width: 40px;
    /* Smaller profile photo */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0.2);
    /* Subtle real look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle clean border */
}

.user-avatar-placeholder {
    width: 40px;
    height: 40px;
    background: var(--surface-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 1px solid var(--glass-border);
    text-transform: uppercase;
}

.user-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.user-details span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Download Badges */
.download-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    /* Allows buttons to stack on small screens */
    justify-content: flex-start;
}

@media (max-width: 979px) {
    .download-badges {
        justify-content: center;
        /* Centers buttons on mobile/tablet */
    }
}

.play-store-btn {
    background: #000;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: 1px solid #A6A6A6;
    transition: background 0.3s, transform 0.2s;
    min-width: 180px;
}

.play-store-btn:hover {
    background: #111;
    transform: translateY(-2px);
    border-color: #FFFFFF;
}

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

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

.btn-text span {
    display: block;
    font-size: 0.65rem;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-text strong {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 979px) {

    /* ... existing media queries ... */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 1rem 0 !important;
        background: #05070a !important;
        /* Solid background on mobile to prevent overlapping overlap logo */
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .container {
        padding: 0 1rem;
        /* Better mobile padding */
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 14, 20, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

    /* Reduce huge padding and gaps on mobile */
    .features,

    .global-reach,
    .pricing,
    .app-screenshots,
    .testimonials,
    section[style*="padding: 8rem 0"] {
        padding: 4rem 0 !important;
    }

    .hero {
        padding: 8rem 0 4rem !important;
        /* Kept top padding big enough to clear navbar */
    }

    .feature-row,
    .feature-row.reverse {
        display: flex !important;
        flex-direction: column !important;
        /* Stack image on top, text below */
        text-align: center !important;
        margin-bottom: 5rem !important;
        gap: 2rem !important;
    }

    .feature-visual {
        width: 100% !important;
        max-width: 220px !important;
        /* Beautiful medium size */
        margin: 0 auto;
        display: flex !important;
        justify-content: center;
        padding: 2rem 0;
    }

    .feature-visual img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
        /* Sleek shadow */
    }

    .feature-info {
        text-align: left !important;
        /* Keep text readable */
        max-width: 320px;
        /* Force compact column */
        margin: 0 auto;
        /* Center the block itself */
    }

    .feature-info ul li {
        display: flex !important;
        align-items: flex-start !important;
        /* Align tick with the first line of text */
        justify-content: flex-start !important;
        /* Left-align bullet contents */
        text-align: left !important;
    }

    .feature-info ul li i {
        margin-top: 4px !important;
        /* Push tick down slightly to match first line of text */
        flex-shrink: 0 !important;
        /* Prevent tick from squeezing on small screens */
    }

    /* Mobile Footer Layout */
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
    }

    .footer-logo {
        grid-column: 1 / -1;
        /* Make logo take full width */
        text-align: left;
    }

    .footer-links h4 {
        margin-bottom: 1rem;
        /* Reduce gap below heading */
    }

    .hero-phone-container {
        max-width: 200px !important;
        margin-top: 1rem;
    }

    .global-image img {
        max-height: 280px !important;
        width: auto !important;
    }

    /* Make Text slightly smaller so it fits with the image */
    .feature-info h3,
    .global-text h2 {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem;
    }

    .feature-info .accent-p {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    /* Mobile Testimonial Slider */
    .testimonial-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 1.5rem !important;
        padding: 1.5rem 0.5rem !important;
        -ms-overflow-style: none !important;
        /* IE and Edge */
        scrollbar-width: none !important;
        /* Firefox */
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none !important;
        /* Chrome, Safari, Opera */
    }

    .testimonial-card {
        flex: 0 0 85% !important;
        /* Shows a peek of the next card */
        scroll-snap-align: center !important;
        max-width: none !important;
        margin-bottom: 0 !important;
    }

    .slider-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }

    .dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.2) !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        display: inline-block !important;
    }

    .dot.active {
        background: var(--accent-color) !important;
        transform: scale(1.2) !important;
    }
}

/* Coming Soon Toast */
#coming-soon-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

#coming-soon-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Scroll Offset for Fixed Header */
#features,
#pricing,
#how-it-works {
    scroll-margin-top: 68px;
    /* Fits header and sections perfectly under navbar on click */
}


.global-reach {
    scroll-margin-top: 120px;
}