﻿/* ================== CSS RESET & VARIABLES ================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #1a2744;
    --navy-dark: #111c30;
    --navy-light: #2d4a7a;
    --accent: #b91c1c;
    --accent-hover: #991b1b;
    --text-heading: #1a2744;
    --text: #3d4f6f;
    --text-light: #6b7c93;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --border: #dce3ec;
    --border-light: #e8edf3;
    --success: #1a8f6e;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--bg);
}

/* ================== MINIMAL ANIMATIONS ================== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-up {
    animation: fade-up 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: fade-up 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

/* ================== HEADER ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-container>span {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--navy);
}

.logo-container>span>span {
    color: var(--accent);
}

.landing-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

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

.nav-links a:not(.btn) {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--navy);
    background: var(--bg-alt);
}

/* Remove underline hover effect from SaaS style */
.nav-links a:not(.btn)::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 1.25rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--border-light);
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

/* Remove the SaaS sweep animation */
.btn::before {
    display: none;
}

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

.btn-primary:hover {
    background: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ================== HERO SECTION ================== */
.hero {
    background: var(--navy);
    padding: 11rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Hide SaaS decorative overlays */
.hero-bg,
.hero-grid {
    display: none;
}

.hero-home {
    background: #0f172a;
}

.hero-home::before {
    background: linear-gradient(180deg, rgba(8, 15, 29, 0.66) 0%, rgba(15, 23, 42, 0.56) 42%, rgba(8, 15, 29, 0.82) 100%);
}

.hero-home .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    background: url('hero.jpg') center center / cover no-repeat;
    opacity: 0.22;
    transform: scale(1.04);
    filter: saturate(0.9) contrast(1.03);
    pointer-events: none;
}

.hero-home .hero-grid {
    display: block;
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.10), transparent 28%);
    background-size: 88px 88px, 88px 88px, auto;
    opacity: 0.18;
    pointer-events: none;
}

.hero-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    /* Override SaaS pill styling */
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: none;
    box-shadow: none;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

/* Override gradient text animation */
.hero h1 .gradient-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
    background-size: unset;
}

.hero-description {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 620px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.35);
}

.trust-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* Hide the SaaS dashboard mockup */
.hero-visual {
    display: none;
}

/* ================== STATS SECTION ================== */
.stats-section {
    background: var(--bg);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--navy);
    background-clip: unset;
}

.stat-number .highlight {
    color: var(--accent);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent);
    background-clip: unset;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ================== SECTION COMMON ================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--navy-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

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

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.75px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================== FEATURES SECTION ================== */
.features {
    padding: 6rem 2rem;
    background: var(--bg-alt);
}

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

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Remove SaaS animated top bar */
.feature-card::before {
    display: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: none;
}

.feature-icon::after {
    display: none;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.625rem;
}

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

/* ================== HOW IT WORKS ================== */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg);
    position: relative;
}

/* Remove decorative line */
.how-it-works::before {
    display: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    box-shadow: none;
    transition: background 0.2s ease;
}

.step:hover .step-number {
    background: var(--navy-dark);
}

/* Remove spinning dashed ring */
.step-ring {
    display: none;
}

.step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border);
}

.step:last-child .step-connector {
    display: none;
}

.step h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================== BENEFITS SECTION ================== */
.benefits {
    padding: 6rem 2rem;
    background: var(--bg-alt);
    position: relative;
}

/* Hide decorative background */
.benefits-bg {
    display: none;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits .section-label {
    color: var(--navy-light);
    background: none;
    border: none;
}

.benefits .section-header h2 {
    color: var(--text-heading);
}

.benefits .section-header p {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
    backdrop-filter: none;
}

.benefit-item:hover {
    box-shadow: var(--shadow);
}

.benefit-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    box-shadow: none;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================== TESTIMONIALS (unused, kept for compatibility) ================== */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--navy);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-heading);
}

.testimonial-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ================== CTA SECTION ================== */
.cta {
    padding: 6rem 2rem;
    background: var(--navy);
    text-align: center;
    position: relative;
}

/* Hide decorative background */
.cta-bg {
    display: none;
}

.cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.75px;
    line-height: 1.15;
}

.cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--white);
    color: var(--navy);
    border: none;
    font-weight: 700;
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ================== FOOTER ================== */
.footer {
    background: var(--navy-dark);
    padding: 3.5rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo span span {
    color: var(--accent);
    background: none;
    -webkit-text-fill-color: var(--accent);
    -webkit-background-clip: unset;
    background-clip: unset;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
}

.footer-links-group {
    display: flex;
    gap: 3.5rem;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ================== SCROLL REVEAL ================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================== CONTACT MODAL ================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(16px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 1.75rem 2rem 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.375rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--border);
    color: var(--text-heading);
}

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

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.form-field input,
.form-field textarea {
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-submit {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-submit:hover:not(:disabled) {
    background: var(--navy-dark);
}

.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-success {
    text-align: center;
    padding: 2rem 0;
}

.modal-success-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 143, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--success);
    font-size: 1.75rem;
}

.modal-success h3 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin: 0 0 0.5rem;
}

.modal-success p {
    color: var(--text-light);
    margin: 0;
}

.modal-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.modal-error,
.modal-success {
    display: none;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .step-connector {
        display: none;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
        height: 64px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        width: 100%;
        padding: 0.75rem 1rem;
        color: var(--text);
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

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

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

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.25rem;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-links-group {
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .modal-header,
    .modal-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

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

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

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .footer-links-group {
        flex-direction: column;
        gap: 1.5rem;
    }
}