*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    /* Set white background for the entire site */
    color: #333;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    /* Space between logo and menu */
    align-items: center;
    /* Align items vertically */
    padding: 10px 20px;
    background-color: #2c3e50;
    /* Dark background for the navbar */
    position: fixed;
    /* Lock navbar to top while scrolling */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    /* Ensure it stays above other elements */
}

/* Offset page content so it doesn't hide behind the fixed navbar */
body {
    padding-top: 65px;
}

.nav-logo {
    display: flex;
    align-items: center;
    /* Align logo and text vertically */
    gap: 10px;
    /* Add spacing between the logo and text */

}

.nav-logo .logo {
    width: 45px;
    /* Adjust the size of the logo */
    height: 45px;
    /* Ensure the height matches the width for a perfect circle */
    border-radius: 50%;
    /* Make the logo circular */
    object-fit: cover;
    /* Ensure the image scales properly within the circle */
    border: 2px solid #fff;
    /* Add a clean white border */
    box-shadow: none;
    /* Ensure no shadow is applied */
    background-color: #fff;
    /* Add a white background to mask any grey edges */
    transform: translateZ(0);
    /* Force GPU rendering */
}

.nav-logo .logo-text {
    color: #fff;
    /* White text color */
    font-size: 1.2em;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    /* Add spacing between menu items */
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    /* White text color */
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffc107;
    /* Highlight color on hover */
}

/* Responsive Menu Styles */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    color: #fff;
    cursor: pointer;
}

/* Always-visible login/logout button next to hamburger */
.nav-auth-btn {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.nav-login-btn:hover {
    background-color: rgba(255,255,255,0.28);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .nav-login-btn span { display: none; }
    .nav-login-btn { padding: 7px 9px; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        /* Hide the menu by default on mobile */
        flex-direction: column;
        background-color: #2c3e50;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 220px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        /* Add vertical padding to the menu box */
        z-index: 1001;
        /* Ensure it's above the sticky navbar */
    }

    .nav-menu.show {
        display: flex;
        /* Show the menu when toggled */
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu a {
        padding: 12px 20px;
        /* Increase padding for better spacing and touch area */
        text-align: left;
        /* Left-align text in the menu */
        width: 100%;
        display: block;
    }

    .menu-toggle {
        display: block;
        /* Show the toggle button on mobile */
    }

    /* Hero Responsive */
    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-description {
        font-size: 1.1em;
        margin: 10px 0;
    }

    .store-buttons {
        gap: 10px;
        margin-top: 15px;
    }

    .store-btn-container {
        width: 140px;
        height: 52.5px;
        display: inline-block;
        position: relative;
    }
}

/* Hero Section (Header) */
.hero {
    position: relative;
    padding: 10px 20px;
    /* Reduce padding inside the header */
    background-color: #fff;
    /* Light gray background for the header */
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.logo-container {
    position: absolute;
    top: 10px;
    left: 40px;
    text-align: center;
    /* Center-align the text relative to the logo */
}

.logo {
    width: 65px;
    /* Keep the logo small */
    height: auto;
    /* Maintain aspect ratio */
}

.logo-text {
    font-size: 0.8em;
    /* Adjust font size for the text */
    color: #2c3e50;
    /* Match the color scheme */
    margin-top: 2px;
    /* Add spacing between the logo and text */
    font-weight: bold;
    /* Make the text bold */
}

.hero-content {
    max-width: 90%;
    /* Reduce the width for smaller screens */
    padding: 0 20px;
    /* Add padding for better spacing */
    margin: 0 auto;
    /* Center the content */
    margin-bottom: 10px;
    /* Reduce margin below the hero content */
}

.hero-content h1 {
    font-size: 3.5em;
    /* Make the h1 text larger */
    margin: 10px 0;
    color: #2c3e50;
}

.hero-description {
    font-size: 1.4em;
    /* Adjust font size as needed */
    font-weight: bold;
    /* Make the text bold */
    color: #2c3e50;
    /* Keep it consistent with the design */
    margin: 15px 0;
    /* Add spacing around the text */
    white-space: normal;
    /* Allow text to wrap to the next line */
    overflow: visible;
    /* Ensure no text is hidden */
    text-overflow: clip;
    /* Disable ellipsis */
    word-wrap: break-word;
    /* Break long words if necessary */
    line-height: 1.5;
}

.launch {
    color: #007bff;
    /* Change to blue color */
    font-size: 1.5em;
    /* Make it larger */
    font-weight: bold;
    /* Make it stand out */
    margin-top: 10px;
    white-space: normal;
    /* Allow text to wrap to the next line */
    overflow: visible;
    /* Ensure no text is hidden */
    text-overflow: clip;
    /* Disable ellipsis */
}

/* Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.store-btn-container {
    width: 160px;
    height: 60px;
    display: inline-block;
    position: relative;
}

.store-btn-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.store-btn-container img:hover {
    transform: scale(1.05);
}

.store-btn-container.coming-soon a {
    opacity: 0.5;
    cursor: not-allowed;
    display: block;
    width: 100%;
    height: 100%;
}

.store-btn-container.coming-soon .badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* New sleek store badge */
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.store-badge:hover {
    background-color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.store-badge-play { background-color: #1a1a1a; }
.store-badge-apple { background-color: #1a1a1a; opacity: 0.6; cursor: not-allowed; }

.store-badge-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.store-badge-sub {
    font-size: 0.68em;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.store-badge-name {
    font-size: 1.05em;
    font-weight: 700;
    white-space: nowrap;
}

.store-badge-wrap {
    position: relative;
    display: inline-flex;
}

.store-badge-wrap .badge {
    position: absolute;
    top: -10px;
    right: -6px;
    background: #ffc107;
    color: #1a1a1a;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65em;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    letter-spacing: 0.03em;
}

@media (max-width: 480px) {
    .store-badge {
        min-width: 145px;
        max-width: 145px;
        width: 145px;
        padding: 9px 16px;
    }
    .store-badge-name { font-size: 0.95em; }
    .store-badge-sub { font-size: 0.62em; }
}

/* Screenshots Section */
.screenshots {
    margin-top: 0;
    /* Remove extra margin at the top of the screenshot section */
    padding: 20px 0;
    /* Adjust padding for better spacing */
    background-color: #fff;
    /* Ensure the screenshots section has a white background */
    text-align: center;
}

.screenshots h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.screenshot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow images to wrap on smaller screens */
    gap: 20px;
    /* Add spacing between images */
    max-width: 800px;
    margin: 0 auto;
    /* Center the screenshot */
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-image {
    width: 700px;
    /* Increase the width for a larger image */
    max-width: 90%;
    /* Ensure it remains responsive on smaller screens */
    height: auto;
    /* Maintain aspect ratio */
    margin: 20px auto;
    /* Add spacing around the image */
    display: block;
    /* Center the image */
}

.screenshot:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 40px 20px;
    background-color: #fff;
    /* Set white background for the features section */
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: bold;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .features-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }
}

.features-text {
    text-align: left;
    padding: 0 20px;
}

@media (min-width: 992px) {
    .features-text {
        padding-left: 60px;
    }
}

.features-text h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.features-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.features-image img {
    width: 100%;
    /* Ensure the image scales responsively */
    max-width: 250px;
    /* Limit the maximum width of the image */
    height: auto;
    /* Maintain the aspect ratio */
    border-radius: 10px;
    /* Add rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */
    margin: 0 auto;
    /* Center the image */
}

.features-list {
    display: flex;
    flex-direction: column;
    /* Stack feature items vertically */
    gap: 20px;
    /* Add spacing between feature items */
    padding: 0 20px;
}

@media (min-width: 992px) {
    .features-list {
        padding-right: 60px;
    }
}

/* Feature Item */
.feature-item {
    background-color: #fff;
    padding: 15px;
    /* Reduce padding to make the box smaller */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.feature-item h4 {
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: bold;
    margin: 0;
    /* Remove margin to align with the dot */
    display: inline-block;
    /* Ensure the heading stays inline with the dot */
}

.feature-item-header {
    display: flex;
    /* Use flexbox to align the dot and heading */
    align-items: center;
    /* Vertically align the dot and heading */
    gap: 10px;
    /* Add spacing between the dot and heading */
    margin-bottom: 10px;
    /* Add spacing below the header */
}

.feature-item p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
    margin: 0;
    /* Remove extra margin to make the box smaller */
}

.feature-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.feature-icon.green {
    background-color: #28a745;
}

.feature-icon.yellow {
    background-color: #ffc107;
}

.feature-icon.red {
    background-color: #dc3545;
}

/* INSTANT AI INSIGHTS Section */
.instant-ai-insights {
    padding: 40px 20px;
    background-color: #fff;
    /* Set white background for the AI Insights section */
    text-align: center;
}

.instant-ai-insights h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.insights-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    align-items: center;
    /* Vertically center-align children */

}

.insights-text {
    flex: 1;
    max-width: 350px;
    text-align: left;
}

.insights-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.insights-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.insights-logo img {
    width: 40px;
    height: auto;
}

.insights-logo p {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

/* Insights Images */
.insights-images {
    display: flex;
    justify-content: center;
    /* Center the images horizontally */
    gap: 20px;
    /* Add spacing between images */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.insights-images img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* AI Summaries Section */
.ai-summaries {
    padding: 40px 20px;
    background-color: #fff;
    /* Set white background for the AI Summaries section */
    text-align: center;
}

.ai-summaries h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ai-summaries-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.ai-summaries-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.ai-summaries-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.ai-summaries-image {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.ai-summaries-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* STOCKS Section */
.stocks {
    padding: 40px 20px;
    background-color: #fff;
    /* White background for the STOCKS section */
    text-align: center;
}

.stocks h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.stocks-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.stocks-image {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.stocks-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.stocks-details {
    flex: 1;
    max-width: 500px;
    text-align: left;
    padding-left: 30px;
    /* Add space inside the section to shift content */
}

.stock-item {
    margin-bottom: 20px;
}

.stock-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stock-item-header h4 {
    font-size: 1.2em;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.stock-item p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.stock-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.stock-icon.yellow {
    background-color: #ffc107;
}

.stock-icon.green {
    background-color: #28a745;
}

.stock-icon.red {
    background-color: #dc3545;
}

/* Themes Section */
.themes {
    padding: 40px 20px;
    background-color: #fff;
    /* White background for consistency */
    text-align: center;
}

.themes h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.themes-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.themes-text {
    flex: 1;
    max-width: 400px;
    text-align: left;
    /* Keep the text aligned to the left */
    padding-left: 30px;
    /* Shift the text slightly to the right */
}

.themes-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.themes-images {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    /* Add spacing between images */
}

.themes-images img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Us Section */
.about-us {
    padding: 40px 20px;
    background-color: #fff;
    ;
    /* white background */
    text-align: center;
}

.about-us-container {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    padding: 0 20px;
}

.about-us-container p {
    margin-bottom: 20px;
}

.about-us-container a {
    color: #007bff;
    /* Blue color for the email link */
    text-decoration: none;
}

.about-us-container a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

.about-us-container h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 30px;
}

/* Privacy Content */
.privacy-content {
    max-width: 800px;
    /* Limit the width for better readability */
    margin: 20px auto;
    /* Center the content horizontally */
    padding: 20px;
    text-align: left;
    /* Align text to the left */
    line-height: 1.6;
    /* Improve readability with proper line spacing */
    color: #333;
    /* Standard text color */
}

.privacy-content h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    /* Slightly darker color for headings */
    font-weight: bold;
}

.privacy-content p {
    font-size: 1em;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 20px;
    /* Add indentation for the list */
    padding-left: 20px;
}

.privacy-content ul li {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Terms Content */
.terms-content {
    max-width: 800px;
    /* Limit the width for better readability */
    margin: 20px auto;
    /* Center the content horizontally */
    padding: 20px;
    text-align: left;
    /* Align text to the left */
    line-height: 1.6;
    /* Improve readability with proper line spacing */
    color: #333;
    /* Standard text color */
}

.terms-content h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    /* Slightly darker color for headings */
    font-weight: bold;
}

.terms-content h3 {
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.terms-content p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* Disclaimer Content */
.disclaimer-content {
    max-width: 800px;
    /* Limit the width for better readability */
    margin: 20px auto;
    /* Center the content horizontally */
    padding: 20px;
    text-align: left;
    /* Align text to the left */
    line-height: 1.6;
    /* Improve readability with proper line spacing */
    color: #333;
    /* Standard text color */
}

.disclaimer-content h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
    /* Slightly darker color for headings */
    font-weight: bold;
}

.disclaimer-content p {
    font-size: 1em;
    margin-bottom: 15px;
}

.disclaimer-content a {
    color: #007bff;
    /* Blue color for links */
    text-decoration: none;
    /* Remove underline from links */
}

.disclaimer-content a:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

.disclaimer-content ul {
    list-style-type: disc;
    /* Use bullets for the list */
    margin-left: 20px;
    /* Add indentation for the list */
    padding-left: 20px;
}

.disclaimer-content ul li {
    font-size: 1em;
    margin-bottom: 10px;
    /* Add spacing between list items */
    line-height: 1.6;
    /* Improve readability */
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #333;
    /* Dark background for the footer */
    color: #fff;
    /* White text for contrast */
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #444;
    /* Subtle border for separation */
}

.footer a {
    color: #00bcd4;
    /* Light blue color for links */
    text-decoration: none;
    /* Remove underline from links */
    margin: 0 5px;
    /* Add spacing between links */
}

.footer a:hover {
    text-decoration: underline;
    /* Add underline on hover */
}

/* Disclaimer Section */
.disclaimer {
    padding: 20px;
    background-color: #fff;
    /* Match the site's white background */
    color: #333;
    /* Standard text color */
    text-align: center;
    border-top: 1px solid #ddd;
    /* Add a subtle border for separation */
    margin-top: 20px;
}

.disclaimer h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
    /* Slightly darker color for the heading */
}

.disclaimer p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    /* Limit the width for better readability */
}

/* App Reviews Section */
.app-reviews {
    padding: 40px 20px;
    background-color: #e9ecef;
    /* Light gray background */
    text-align: center;
}

.app-reviews h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .reviews-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.review {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.review p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.review span {
    font-size: 0.9em;
    font-weight: bold;
    color: #555;
    display: block;
    text-align: right;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    /* Position it 20px from the bottom */
    right: 20px;
    /* Position it 20px from the right */
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    /* Dark background color */
    color: #fff;
    /* White arrow color */
    border-radius: 50%;
    /* Make it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    /* Arrow size */
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Add a subtle shadow */
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Prevent interaction when hidden */
}

.back-to-top.show {
    opacity: 1;
    /* Make it visible */
    visibility: visible;
    transform: translateY(0);
    /* Reset any transform */
}

.back-to-top:hover {
    background-color: #ffc107;
    /* Highlight color on hover */
    color: #2c3e50;
    /* Change arrow color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        position: static;
        /* Remove absolute positioning */
        margin-bottom: 20px;
        /* Add spacing below the logo */
    }

    .hero {
        padding-top: 20px;
        /* Add padding to accommodate the logo */
    }

    .hero-content h1 {
        font-size: 2.5em;
        /* Reduce font size for smaller screens */
    }

    .hero-description {
        font-size: 1em;
        /* Reduce font size for smaller screens */
        line-height: 1.5;
    }

    .launch {
        font-size: 1.2em;
        /* Adjust font size for smaller screens */
    }

    .store-buttons img {
        width: 140px;
        /* Reduce button size for smaller screens */
    }

    .screenshot {
        width: 90%;
        /* Make screenshots responsive */
    }

    .center-image {
        width: 100%;
        /* Make the center image responsive */
    }


    .features-container {
        grid-template-columns: 1fr;
        /* Stack all columns vertically on smaller screens */
    }

    .features-text {
        text-align: center;
        /* Center-align text on mobile */
        padding: 10px;
        /* Reduce padding for smaller screens */
    }

    .features-list {
        align-items: center;
        /* Center-align the feature items */
        text-align: center;
        /* Center-align the text inside the feature items */
        padding-right: 0;
        /* Remove the right padding */
        margin: 0 auto;
        /* Center the list horizontally */
    }

    .insights-container {
        flex-direction: column;
        /* Stack text and images vertically */
        align-items: center;
    }

    .insights-images {
        gap: 10px;
        /* Reduce spacing between images on smaller screens */
    }

    .insights-images img {
        width: 120px;
        /* Reduce image size on smaller screens */
    }

    .ai-summaries-container {
        flex-direction: column;
        /* Stack text and image vertically */
    }

    .ai-summaries-image {
        max-width: 100%;
        /* Allow the image to take full width */
    }

    .stocks-container {
        flex-direction: column;
        /* Stack image and details vertically */
    }

    .stocks-image {
        max-width: 100%;
        /* Allow the image to take full width */
    }

    .themes-images {
        flex-wrap: wrap;
        /* Allow images to wrap on smaller screens */
        justify-content: center;
    }

    .themes-images img {
        width: 80px;
        /* Reduce image size on smaller screens */
    }

    .reviews-container {
        grid-template-columns: 1fr;
        /* One review per row on smaller screens */
    }

    /* Refine coins-section padding for mobile */
    .coins-section {
        padding: 30px 10px;
        /* Reduce side padding on mobile */
    }

    .coins-section .container {
        padding: 0 10px;
    }

    .coin-packages {
        padding: 0 5px;
        /* Give more room for cards to stretch */
    }

    .balance-card,
    .usage-card,
    .txn-card,
    .transaction-history {
        padding: 20px 15px;
        margin: 15px auto;
        width: 95%;
        /* Ensure it doesn't touch the edges */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2em;
        /* Further reduce font size for very small screens */
    }

    .hero-description {
        font-size: 0.9em;
        /* Adjust font size for very small screens */
    }

    .store-buttons img {
        width: 120px;
        /* Further reduce button size */
    }

    .insights-images {
        grid-template-columns: 1fr;
        /* 1 image per row on very small screens */
    }

    .themes-images {
        grid-template-columns: 1fr;
        /* Display 1 image per row on very small screens */
    }
}

/* Container for consistent alignment */
.container {
    max-width: 1600px;
    /* Set a maximum width for the content */
    margin: 0 auto;
    /* Center the container horizontally */
    padding: 0 20px;
    /* Add padding for smaller screens */
}

/* Auth & Form Sections (Sign Up, Login) - same as existing site */
.auth-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    min-height: 60vh;
}

.auth-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.auth-section .auth-subtitle {
    font-size: 1em;
    color: #333;
    margin-bottom: 30px;
}

.auth-form {
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.form-group input:focus {
    outline: none;
    border-color: #2c3e50;
}

.auth-form .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: bold;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #fff;
    background-color: #2c3e50;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.auth-form .btn:hover {
    background-color: #ffc107;
    color: #2c3e50;
}

.auth-form .form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #333;
}

.auth-form .form-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.auth-form .form-footer a:hover {
    text-decoration: underline;
}

.auth-form .otp-sent-msg {
    font-size: 0.95em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.coins-section .coins-logged-in-notice {
    font-size: 1em;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons - same style as site */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #fff;
    background-color: #2c3e50;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #ffc107;
    color: #2c3e50;
}

.btn-secondary {
    background-color: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Coin Purchase Section */
.coins-section {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.coins-section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}



.coins-section .coins-login-notice {
    font-size: 1em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coins-section .coins-subtitle {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coins-section .coins-description {
    font-size: 1em;
    color: #333;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coin-packages {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .coin-packages {
        flex-direction: row;
        align-items: stretch;
    }
}

.coin-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.08);
    text-align: left;
    flex: 1;
    min-width: 280px;
    max-width: 100%;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 20px;
}

.coin-card h3 {
    font-size: 1.5em;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 5px;
}

.coin-card .coin-amount {
    font-size: 2em;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

.coin-card .coin-price {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.coin-card .card-header {
    background-color: #213a55;
    /* dark blue */
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coin-card .card-header-left h3 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.coin-card .card-subtitle {
    margin: 8px 0 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95em;
    font-weight: 500;
}

.coin-card .card-star {
    font-size: 1.6em;
    color: #fff;
    margin-left: 12px;
}

.coin-card .card-content {
    padding: 18px 20px 22px;
    background-color: #fafafa;
}

.coin-card .btn {
    width: 100%;
    border-radius: 10px;
    background-color: #213a55;
    color: #fff;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
}

.coin-card ul li::before {
    color: #213a55;
}

.coin-card .coin-desc {
    font-size: 0.9em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.coin-card .btn {
    width: 100%;
}

.coin-checkout {
    max-width: 420px;
    margin: 40px auto 0;
    padding: 25px;
    background-color: #e9ecef;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* additional cards and sections for coins page */
.balance-card,
.usage-card,
.txn-card {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 20px 10px;
    text-align: center;
}

@media (min-width: 620px) {

    .balance-card,
    .usage-card,
    .txn-card {
        margin: 20px auto;
    }
}

.balance-card {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: #fff;
}

.usage-card h3,
.txn-card h3 {
    font-size: 1.5em;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 3em;
    color: #fff;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coin-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
}

#balance-amount {
    font-weight: bold;
}

.usage-card h3 {
    font-size: 1.5em;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 20px;
}

.usage-item {
    display: flex;
    align-items: center;
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    gap: 15px;
}

.usage-icon {
    width: 50px;
    height: 50px;
    background-color: #d1e7f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
}

.usage-text {
    flex: 1;
    font-size: 1em;
    color: #333;
    font-weight: 500;
    text-align: left;
}

.usage-coins {
    font-size: 1em;
    color: #2c3e50;
    font-weight: bold;
    white-space: nowrap;
}

.usage-card .note {
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
    text-align: left;
}

/* plan card bullet list styling */
.coin-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.coin-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #333;
}

.coin-card ul li::before {
    content: '\2713';
    /* check mark */
    position: absolute;
    left: 0;
    color: #007bff;
}



.transaction-history {
    max-width: 800px;
    margin: 20px auto;
}

.txn-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    position: relative;
}

.txn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.txn-item h4 {
    margin: 0;
    font-size: 1.1em;
    color: #2c3e50;
    font-weight: bold;
}

.txn-date {
    font-size: 0.9em;
    color: #666;
}

.txn-details {
    margin: 5px 0 10px 0;
    font-size: 0.9em;
    color: #666;
    text-align: left;
}

.txn-item .coins-change {
    display: block;
    font-weight: bold;
    font-size: 1em;
    text-align: right;
    margin-top: 8px;
}


.faq-section {
    max-width: 800px;
    margin: 40px auto 20px;
    text-align: left;
}

.faq-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item .question {
    font-weight: bold;
    color: #2c3e50;
}

.faq-item .answer {
    margin-top: 5px;
    color: #333;
    text-align: left;
}

.coin-checkout h3 {
    font-size: 1.3em;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.coin-checkout .checkout-summary {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}

.coin-checkout .btn {
    width: 100%;
    margin-top: 10px;
}

/* Login Dialog - slides in from right */
.login-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-dialog-overlay.open {
    opacity: 1;
    visibility: visible;
}

.login-dialog {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2001;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.login-dialog.open {
    right: 0;
}

.login-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid #ddd;
}

.login-dialog-header h2 {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
}

.login-dialog-close {
    background: none;
    border: none;
    font-size: 1.6em;
    color: #2c3e50;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.login-dialog-close:hover {
    color: #dc3545;
}

.login-dialog-body {
    padding: 25px;
    flex: 1;
}

.auth-app-notice {
    font-size: 0.88em;
    color: #fff;
    background: linear-gradient(90deg, #1a3a52, #2c5aa0);
    border-radius: 8px;
    padding: 9px 14px;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.login-dialog-body .auth-subtitle {
    font-size: 0.95em;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.login-dialog-body .form-group {
    margin-bottom: 18px;
}

.login-dialog-body .form-group label {
    display: block;
    font-size: 1em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.login-dialog-body .form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.login-dialog-body .form-group input:focus {
    outline: none;
    border-color: #2c3e50;
}

.login-dialog-body .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: bold;
}

.login-dialog-body .otp-sent-msg {
    font-size: 0.95em;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
}

.dialog-error-msg {
    font-size: 0.95em;
    color: #dc3545;
    background-color: #fff3f3;
    border: 1px solid #dc3545;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: left;
}

.dialog-link {
    text-align: center;
    margin-top: 15px;
    font-size: 0.95em;
}

.dialog-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.dialog-link a:hover {
    text-decoration: underline;
}

/* Country code dropdown + mobile number row */
.mobile-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.country-code-select {
    padding: 12px 8px;
    font-size: 1em;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    min-width: 105px;
}

.country-code-select:focus {
    outline: none;
    border-color: #2c3e50;
}

.mobile-input-row input[type="tel"] {
    flex: 1;
}

/* Google Sign-In button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px 20px;
    font-size: 0.97em;
    font-weight: 600;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: #3c4043;
    background-color: #fff;
    border: 1.5px solid #dadce0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.btn-google:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* OR divider between Google and OTP */
.auth-or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0 14px;
    color: #888;
    font-size: 0.9em;
}

.auth-or-divider::before,
.auth-or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.auth-or-divider span {
    padding: 0 12px;
}

@media (max-width: 480px) {
    .login-dialog {
        width: 100%;
        max-width: 100vw;
        right: -100%;
    }
}

/* ── Coin Balance Card ─────────────────────────────────────────────────── */
.balance-card {
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 16px rgba(26, 58, 82, 0.25);
}

.balance-card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.balance-label {
    font-size: 0.95em;
    opacity: 0.85;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.balance-amount {
    font-size: 2.4em;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coin-icon {
    background-color: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    font-weight: bold;
}

.balance-expiry {
    font-size: 0.85em;
    opacity: 0.8;
    margin-top: 6px;
}

.balance-card .btn {
    background-color: #fff;
    color: #1a3a52;
    flex-shrink: 0;
}

.balance-card .btn:hover {
    background-color: #ffc107;
    color: #1a3a52;
}

/* ── Usage / How Coins Work card ────────────────────────────────────────── */
.usage-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: left;
}

.usage-card h3 {
    font-size: 1.2em;
    color: #1a3a52;
    margin-bottom: 16px;
}

.usage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.usage-item:last-of-type {
    border-bottom: none;
}

.usage-icon {
    font-size: 1.4em;
}

.usage-text {
    flex: 1;
    font-size: 1em;
    color: #333;
}

.usage-coins {
    font-weight: bold;
    color: #1a3a52;
    background: #e8f0fe;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9em;
}

.usage-card .note {
    margin-top: 14px;
    font-size: 0.85em;
    color: #888;
}

/* ── Transaction History ─────────────────────────────────────────────────── */
.transaction-history {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    text-align: left;
}

.transaction-history h3 {
    font-size: 1.2em;
    color: #1a3a52;
    margin-bottom: 16px;
}

.txn-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

.txn-item:last-child {
    border-bottom: none;
}

.txn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.txn-header h4 {
    margin: 0;
    font-size: 1em;
    color: #1a3a52;
}

.txn-date {
    font-size: 0.8em;
    color: #888;
}

.txn-details {
    font-size: 0.85em;
    color: #555;
    margin: 2px 0 6px;
}

.coins-change {
    font-weight: bold;
    font-size: 0.95em;
}

/* ── Plan Details page ────────────────────────────────────────────────────── */
.plan-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 20px;
}

.plan-title-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.plan-icon {
    width: 70px;
    height: 70px;
    background: #1a3a52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    flex-shrink: 0;
}

.plan-title-section h2 {
    font-size: 1.8em;
    color: #1a3a52;
    margin: 0 0 4px;
}

.plan-subtitle {
    font-size: 1em;
    color: #2c5aa0;
    margin: 0;
}

.plan-details-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: left;
}

.plan-details-card h3 {
    font-size: 1.1em;
    color: #1a3a52;
    margin: 0 0 18px;
}

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

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

.detail-item { text-align: left; }

.detail-label {
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 2em;
    font-weight: 800;
    color: #1a3a52;
}

.features-section {
    margin-bottom: 24px;
    text-align: left;
}

.features-section h3 {
    font-size: 1.1em;
    color: #1a3a52;
    margin-bottom: 12px;
}

.features-section ul li {
    padding: 4px 0;
    color: #333;
}

/* Amount picker for Small plan */
.select-amount-section {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid #ffc107;
    text-align: left;
}

.select-amount-header {
    font-size: 1em;
    color: #1a3a52;
    font-weight: 700;
    margin-bottom: 10px;
}

.select-amount-header .required { color: #e74c3c; }

.coins-formula {
    font-size: 0.9em;
    color: #888;
    font-style: italic;
    margin-bottom: 14px;
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.amount-btn {
    padding: 10px 18px;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #1a3a52;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.2s ease;
}

.amount-btn:hover { border-color: #1a3a52; background: #f4f8ff; }
.amount-btn.active { background: #1a3a52; color: #fff; border-color: #1a3a52; }

.your-coins-section {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.your-coins-header {
    display: flex;
    justify-content: space-between;
    font-size: 1em;
    color: #1a3a52;
}

/* Action button (Proceed to Payment) */
.action-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1a3a52, #2c5aa0);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26,58,82,0.25);
}

.action-button:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,58,82,0.3); }
.action-button:active { transform: translateY(0); }
.action-button:disabled { background: #b0bec5; cursor: not-allowed; box-shadow: none; transform: none; }

/* ── FAQ section ─────────────────────────────────────────────────────────── */
.faq-section {
    max-width: 700px;
    margin: 24px auto;
    text-align: left;
}

.faq-section h3 {
    font-size: 1.3em;
    color: #1a3a52;
    margin-bottom: 16px;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0;
}

.faq-item .question {
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-item .answer {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}