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

:root {
    --primary-color: #004985;
    --primary-dark: #003b6a;
    --secondary-color: #0073e6;
    --accent-color: #ffa02e;
    --muted-color: #64748b;
    --text-dark: #101820;
    --text-light: #2c3947;
    --bg-light: #f4f7fa;
    --bg-white: #ffffff;
    --border-color: #dbe5f1;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -12px rgba(15, 23, 42, 0.25);
    --shadow-lg: 0 24px 48px -28px rgba(15, 23, 42, 0.3);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(circle at 0% 0%, #f4f7fa 0, #ffffff 45%);
    padding-bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
}

.nav-menu a.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    /* padding: 6.5rem 0; */
    padding-top: 40px;
    min-height: calc(100vh - 84px);
    min-height: calc(100svh - 84px);
    background:
        radial-gradient(circle at 8% 18%, rgba(0, 115, 230, 0.2), transparent 32%),
        radial-gradient(circle at 90% 12%, rgba(0, 73, 133, 0.2), transparent 34%),
        linear-gradient(135deg, #f4f7fa 0%, #ffffff 45%, #ffffff 100%);
    display: flex;
    align-items: center;
}

.hero .container {
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.text-primary {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-proof {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.hero-proof span {
    background-color: rgba(0, 115, 230, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 73, 133, 0.2);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-window {
    width: min(520px, 100%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.hero-window-top {
    display: flex;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.hero-window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bfdbfe;
}

.hero-window-top span:first-child {
    background-color: #fca5a5;
}

.hero-window-top span:nth-child(2) {
    background-color: var(--accent-color);
}

.hero-window-top span:nth-child(3) {
    background-color: #93c5fd;
}

.hero-window-body {
    padding: 1.4rem;
}

.hero-stat {
    display: inline-block;
    width: calc(50% - 0.35rem);
    background: #f8fbff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    padding: 0.9rem;
    margin: 0 0.35rem 0.7rem 0;
}

.hero-stat p {
    margin-bottom: 0.3rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.hero-stat strong {
    font-size: 1.45rem;
    color: var(--primary-dark);
}

.hero-progress {
    background: #f8fbff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    margin: 0.4rem 0 0.9rem;
}

.hero-progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.86rem;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-progress-bar {
    height: 8px;
    background-color: #dbe5f1;
    border-radius: 999px;
    overflow: hidden;
}

.hero-progress-bar span {
    display: block;
    width: 84%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.hero-list {
    list-style: none;
}

.hero-list li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    padding: 1.5rem 1.3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    transition: var(--transition);
    text-align: left;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.35);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f4f7fa, #ffffff);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.92rem;
}

/* Reports Section */
.reports {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.report-card {
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.report-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.report-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.report-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Highlights Section */
.highlights {
    padding: 6rem 0 0 0;
    background-color: var(--bg-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.highlight-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Screenshots Gallery Section */
.screenshots-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: var(--transition);
    aspect-ratio: 16 / 9;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.screenshot-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0.8);
    transition: var(--transition);
}

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

/* Screenshot Lightbox Modal */
.screenshot-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.screenshot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.screenshot-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.screenshot-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.screenshot-modal-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.screenshot-nav-btn {
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-weight: 300;
}

.screenshot-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.screenshot-nav-btn:active {
    transform: scale(0.95);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.video-wrapper {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-white);
    padding: 1rem;
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    background-color: #000;
}


/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 73, 133, 0.08), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(0, 115, 230, 0.08), transparent 26%),
        var(--bg-white);
}

.pricing-title {
    margin-bottom: 1rem;
    letter-spacing: -0.8px;
    text-wrap: balance;
}

.pricing-note {
    text-align: center;
    margin: 0 0 2.2rem;
}

.pricing-note-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: linear-gradient(180deg, #f4f7fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 73, 133, 0.22);
    box-shadow: 0 10px 24px -18px rgba(0, 73, 133, 0.7);
}

.pricing-note-chip::before {
    content: "●";
    color: var(--accent-color);
    font-size: 0.6rem;
}

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

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.2);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.3);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    padding: 1.8rem 1.6rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 0 16px 0 16px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.pricing-body {
    padding: 1.6rem;
}

.pricing-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.onboarding-fee {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.limited-offer {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

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

.divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.included-features {
    text-align: center;
}

.included-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
    text-align: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓";
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-footer {
    padding: 0 1.6rem 1.6rem;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: #ffffff;
    color: var(--text-dark);
    border: 2px solid #ffffff;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: none;
    box-shadow: 0 12px 28px -16px rgba(2, 6, 23, 0.65);
}

.cta .btn-primary:hover {
    background: #f4f7fa;
    color: var(--text-dark);
    border-color: #dbe5f1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: linear-gradient(165deg, #101820 0%, #2c3947 100%);
    color: white;
    padding: 4rem 0 6.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section p a:hover {
    color: white;
    text-decoration: underline;
}

.footer-section p strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.sticky-footer-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: env(safe-area-inset-bottom, 0);
    z-index: 2100;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom, 0));
    background: rgba(16, 24, 32, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-footer-actions .btn {
    min-width: 150px;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
}

.sticky-footer-actions .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
}

.sticky-footer-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

body.checkout-modal-open .sticky-footer-actions {
    display: none;
}

body.checkout-modal-open .modal {
    padding-bottom: 1rem;
}

body.checkout-modal-open .modal-content {
    max-height: calc(100vh - 40px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    padding: 1rem 1rem 110px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: calc(100vh - 140px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.18);
    position: relative;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    position: relative;
}

.modal-body {
    padding: 1.5rem 2.5rem 2.5rem;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.demo-video-content {
    max-width: 860px;
    max-height: calc(100vh - 140px);
}

.demo-video-content .modal-body {
    overflow-y: auto;
    padding: 1rem 1.25rem 1.25rem;
    flex: 1;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 340px);
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
}

.video-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.demo-video-fallback {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    color: var(--text-light);
    text-align: center;
}

.demo-video-fallback a {
    color: var(--primary-color);
    font-weight: 600;
}


/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-stage-indicator {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.stage-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.55rem 0.45rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 700;
}

.stage-pill.active {
    border-color: var(--primary-color);
    background-color: rgba(0, 73, 133, 0.08);
    color: var(--primary-color);
}

.form-stage {
    display: none;
}

.form-stage.active {
    display: block;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section:last-of-type {
    margin-bottom: 0;
}

/* Plan Display */
.plan-display {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-display-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.plan-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.plan-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Package Selection Styles */
.package-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.package-option {
    position: relative;
    cursor: pointer;
    display: flex;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    background: var(--bg-white);
    width: 100%;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.package-option input[type="radio"]:checked + .package-card:hover,
.package-option.selected .package-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 8px 20px rgba(37, 99, 235, 0.15);
}

.package-option input[type="radio"]:checked + .package-card,
.package-option.selected .package-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.04));
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.package-option.selected .package-card::before {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
    z-index: 1;
}

.package-card.featured {
    border: 2px solid var(--border-color);
    background: rgba(37, 99, 235, 0.05);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.package-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price span {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
}

.package-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.package-features {
    margin-top: 0.5rem;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.25rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.package-features li strong {
    color: var(--primary-color);
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 0.62rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 72px;
}

/* Radio Button Styles */
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--bg-white);
    font-weight: 500;
    color: var(--text-dark);
}

.radio-label:hover {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-custom {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--bg-white);
    transition: var(--transition);
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: var(--primary-color);
    font-weight: 600;
}

.radio-label input[type="radio"]:checked {
    position: absolute;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

/* Fallback for browsers that don't support :has() */
.radio-label.checked {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.radio-text {
    flex: 1;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.payment-note {
    margin-top: 0.8rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 73, 133, 0.2);
    background: rgba(0, 115, 230, 0.06);
    color: var(--text-dark);
}

.bank-details {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 73, 133, 0.18);
    background-color: #f8fbff;
}

.bank-details h4 {
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.bank-details p {
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.pricing-receipt {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px dashed rgba(0, 73, 133, 0.32);
    background: #ffffff;
}

.pricing-receipt h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    color: var(--text-dark);
}

.receipt-row.total {
    margin-top: 0.4rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
}

.stage-actions {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.stage-actions .btn {
    min-width: 150px;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 14px;
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.15rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding: 1rem;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-menu a.btn {
        width: calc(100% - 4rem);
        margin: 0 2rem;
        text-align: center;
    }

    .navbar .container {
        position: relative;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-stat {
        width: 100%;
        margin-right: 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .reports-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .screenshots-section {
        padding: 4rem 0;
    }

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

    .video-section {
        padding: 4rem 0;
    }

    .video-wrapper {
        padding: 0.5rem;
    }

    .pricing {
        padding: 4rem 0;
        scroll-margin-top: 80px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-header {
        padding: 2rem 1.5rem 1rem;
    }

    .pricing-body {
        padding: 2rem 1.5rem;
    }

    .pricing-footer {
        padding: 0 1.5rem 2rem;
    }

    .modal-content {
        width: 95%;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1rem 1.5rem 2rem;
    }

    .form-stage-indicator {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .container {
        padding: 0 15px;
    }

    .package-options {
        grid-template-columns: 1fr;
    }

    .sticky-footer-actions {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.65rem 0.65rem calc(0.65rem + env(safe-area-inset-bottom, 0));
    }

    .sticky-footer-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.88rem;
        padding: 0.62rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.95rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-window-body {
        padding: 1rem;
    }

    .features,
    .reports,
    .highlights,
    .screenshots-section,
    .video-section,
    .faq,
    .how-it-works,
    .benefits,
    .pricing,
    .cta {
        padding: 3rem 0;
    }

    .pricing {
        scroll-margin-top: 70px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .report-card,
    .highlight-item {
        padding: 1.5rem;
    }

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

    .feature-icon,
    .report-icon {
        font-size: 2.5rem;
    }

    .nav-brand h1 {
        font-size: 1.25rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 6.5rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .reports-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .feature-card h3,
    .report-card h3,
    .highlight-item h3 {
        font-size: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .modal-content {
        width: 95%;
        max-height: calc(100vh - 170px);
    }

    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }

    .modal-body {
        padding: 1rem 1rem 1.5rem;
    }

    .form-section-title {
        font-size: 1.1rem;
    }

    .form-stage-indicator {
        grid-template-columns: 1fr;
    }

    .stage-actions {
        flex-direction: column;
    }

    .stage-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .radio-label {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .radio-custom {
        width: 18px;
        height: 18px;
        margin-right: 0.625rem;
    }

    .plan-display {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .plan-display-content {
        gap: 0.625rem;
    }

    .plan-icon {
        font-size: 1.25rem;
    }

    .plan-text {
        font-size: 0.95rem;
    }

    .package-card {
        padding: 1rem;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .package-price {
        font-size: 1.25rem;
    }

    body {
        padding-bottom: 0;
    }

    .sticky-footer-actions .btn {
        flex: 1 1 0;
        font-size: 0.8rem;
        padding: 0.6rem 0.3rem;
    }

    .sticky-footer-actions {
        bottom: env(safe-area-inset-bottom, 0);
    }

    .package-option.selected .package-card::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }

    .radio-label input[type="radio"]:checked + .radio-custom::after {
        width: 7px;
        height: 7px;
    }

    .price {
        font-size: 2.25rem;
    }

    .price span {
        font-size: 1rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-header {
        padding: 1.5rem 1rem 1rem;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-body {
        padding: 1.5rem 1rem;
    }

    .onboarding-fee {
        font-size: 1.5rem;
    }

    .limited-offer {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
        margin-left: 0.25rem;
    }

    .pricing-footer {
        padding: 0 1rem 1.5rem;
    }

    .pricing-footer {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .screenshot-modal-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .screenshot-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .screenshot-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    .screenshot-modal-nav {
        padding: 0 10px;
    }
}

