/* =========================================
   RORASERVICE LANDING PAGE
========================================= */


/* =========================================
   NAVBAR
========================================= */

.landing-navbar {
    height: 76px;

    background: white;

    border-bottom: 1px solid var(--border);
}


.navbar-inner {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================
   BRAND
========================================= */

.brand {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 21px;

    font-weight: 800;

    color: var(--dark);
}


.brand span span {
    color: var(--primary);
}


.brand-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: white;

    border-radius: 10px;

    font-size: 20px;

    font-weight: bold;
}


/* =========================================
   NAVIGATION
========================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 32px;
}


.desktop-nav a {
    color: var(--text);

    font-size: 14px;

    font-weight: 500;
}


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


.admin-link {
    color: var(--primary) !important;
}


.nav-button {
    padding: 10px 17px;

    font-size: 14px;
}


.mobile-menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 24px;

    cursor: pointer;

    margin-left: auto;

    color: var(--text);

    padding: 5px;

    line-height: 1;

}


/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    padding: 90px 0 100px;

    background:

        radial-gradient(
            circle at 90% 10%,
            #e8f5f8 0%,
            transparent 30%
        ),

        white;
}


.hero-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


.hero-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border-radius: 20px;

    background: var(--secondary);

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 22px;
}


.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--success);
}


.hero-content h1 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--dark);

    max-width: 650px;
}


.hero-content h1 span {
    color: var(--primary);
}


.hero-description {
    margin-top: 24px;

    font-size: 18px;

    line-height: 1.7;

    color: var(--muted);

    max-width: 560px;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 32px;
}


.hero-button {
    padding: 14px 20px;
}


.hero-trust {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 38px;
}


.trust-avatars {
    display: flex;
}


.trust-avatars div {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--secondary);

    border: 2px solid white;

    margin-left: -7px;
}


.trust-avatars div:first-child {
    margin-left: 0;
}


.hero-trust strong,
.hero-trust span {
    display: block;
}


.hero-trust strong {
    color: var(--dark);

    font-size: 13px;
}


.hero-trust span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;
}


.visual-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 22px;

    box-shadow:
        0 25px 70px rgba(23, 107, 135, 0.15);
}


.visual-card-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 18px;
}


.mini-label {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.visual-card h3 {
    color: var(--dark);

    margin-top: 5px;
}


.live-indicator {
    font-size: 10px;

    color: var(--success);

    font-weight: 800;
}


/* =========================================
   MOCK MAP
========================================= */

.mock-map {
    height: 230px;

    position: relative;

    overflow: hidden;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #e8f0e8,
            #dce9df
        );
}


.map-grid {
    position: absolute;

    inset: 0;

    opacity: 0.5;

    background-image:

        linear-gradient(
            35deg,
            transparent 45%,
            white 46%,
            white 49%,
            transparent 50%
        ),

        linear-gradient(
            125deg,
            transparent 45%,
            white 46%,
            white 49%,
            transparent 50%
        );

    background-size: 80px 80px;
}


.map-pin {
    position: absolute;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 50% 50% 50% 0;

    transform: rotate(-45deg);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);
}


.pin-one {
    top: 30px;

    left: 25%;
}


.pin-two {
    top: 100px;

    left: 65%;
}


.pin-three {
    bottom: 25px;

    left: 45%;
}


.pin-four {
    top: 65px;

    left: 48%;
}


/* =========================================
   REPORT LIST
========================================= */

.visual-report-list {
    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.visual-report {
    display: flex;

    align-items: center;

    gap: 10px;
}


.report-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--secondary);
}


.report-info {
    flex: 1;
}


.report-info strong,
.report-info span {
    display: block;
}


.report-info strong {
    font-size: 13px;

    color: var(--dark);
}


.report-info span {
    font-size: 11px;

    color: var(--muted);
}


.visual-report .badge {
    font-size: 10px;
}


/* =========================================
   FLOATING STAT
========================================= */

.floating-stat {
    position: absolute;

    bottom: -25px;

    left: -35px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: white;

    padding: 14px 18px;

    border-radius: 14px;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);
}


.floating-stat-icon {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #dcfce7;

    color: var(--success);

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: bold;
}


.floating-stat strong,
.floating-stat span {
    display: block;
}


.floating-stat strong {
    color: var(--dark);
}


.floating-stat span {
    font-size: 11px;

    color: var(--muted);
}


/* =========================================
   SECTIONS
========================================= */

.impact-section,
.how-section {
    padding: 90px 0;
}


.impact-section {
    background: #f8fafb;
}


.section-heading {
    max-width: 600px;

    margin-bottom: 45px;
}


.section-heading.centered {
    margin-left: auto;

    margin-right: auto;

    text-align: center;
}


.section-label {
    color: var(--primary);

    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 800;
}


.section-heading h2 {
    margin-top: 10px;

    color: var(--dark);

    font-size: 36px;

    letter-spacing: -1px;
}


.section-heading p {
    margin-top: 12px;

    color: var(--muted);
}


/* =========================================
   IMPACT STATS
========================================= */

.impact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.impact-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 28px;

    text-align: center;
}


.impact-card strong,
.impact-card span {
    display: block;
}


.impact-card strong {
    font-size: 32px;

    color: var(--primary);
}


.impact-card span {
    font-size: 13px;

    color: var(--muted);
}


/* =========================================
   HOW IT WORKS
========================================= */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.step-card {
    position: relative;

    padding: 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;
}


.step-number {
    position: absolute;

    top: 20px;

    right: 22px;

    color: #dce6e9;

    font-size: 28px;

    font-weight: 800;
}


.step-icon {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--secondary);

    border-radius: 14px;

    font-size: 25px;

    margin-bottom: 22px;
}


.step-card h3 {
    color: var(--dark);
}


.step-card p {
    color: var(--muted);

    font-size: 14px;

    margin-top: 8px;
}


/* =========================================
   FOOTER
========================================= */

.landing-footer {
    padding: 30px 0;

    background: var(--dark);

    color: white;
}


.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.landing-footer .brand {
    color: white;
}


.landing-footer p,
.landing-footer > .container > span {
    color: #a9b8c7;

    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

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


    .hero-visual {
        max-width: 600px;
    }


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

}


@media (max-width: 650px) {

    .navbar-inner {

        position: relative;

    }


    .mobile-menu-toggle {

        display: block;

        position: absolute;

        right: 18px;

        top: 50%;

        transform: translateY(-50%);

    }


    .desktop-nav {

        display: none;

        position: absolute;

        top: calc(100% + 1px);

        left: 0;

        right: 0;

        background: white;

        border-bottom: 1px solid var(--border);

        flex-direction: column;

        padding: 0 18px;

        gap: 0;

        box-shadow: var(--shadow);

        z-index: 100;

    }


    .desktop-nav.active {

        display: flex;

    }


    .desktop-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .desktop-nav .btn {

        display: flex;

        justify-content: center;

        width: 100%;

        margin-top: 12px;

        margin-bottom: 12px;

    }


    .desktop-nav a:last-child {

        border-bottom: none;

    }


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


    .hero-content h1 {
        font-size: 43px;
    }


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


    .hero-button {
        width: 100%;
    }


    .floating-stat {
        left: 10px;
    }


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


    .footer-inner {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

}