:root {
    --rn-navy-950: #06172b;
    --rn-navy-900: #09233f;
    --rn-navy-800: #10375f;
    --rn-primary: #087ff5;
    --rn-primary-dark: #0567ce;
    --rn-primary-soft: #e9f4ff;
    --rn-sky: #4eb6fb;
    --rn-cyan: #15b8c9;
    --rn-green: #27ad68;
    --rn-green-soft: #e9f8f0;
    --rn-orange: #f39a17;
    --rn-orange-soft: #fff3df;
    --rn-purple: #7f55d8;
    --rn-purple-soft: #f2eafd;
    --rn-white: #fff;
    --rn-bg: #f5f8fc;
    --rn-border: #dde6f0;
    --rn-ink: #102033;
    --rn-text: #44576e;
    --rn-muted: #7b8ca1;
    --rn-shadow: 0 12px 34px rgba(10, 39, 72, .09);
    --rn-shadow-lg: 0 28px 70px rgba(6, 24, 48, .2);
    --rn-radius: 18px;
    --rn-container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--rn-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: var(--rn-white);
    line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container {
    width: min(calc(100% - 40px), var(--rn-container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #fff;
    background: rgba(4, 20, 39, .98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    min-height: 80px;
    align-items: center;
    gap: 26px;
}

.brand {
    display: block;
    width: 245px;
    flex: 0 0 245px;
}

    .brand img {
        width: 75%;
        max-height: 115px;
    }

.site-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.site-nav a {
    position: relative;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--rn-sky);
}

.site-nav a.active::after {
    position: absolute;
    right: 0;
    bottom: -28px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--rn-primary);
}

.nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
}

.phone-link {
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
}

.phone-link span {
    margin-right: 7px;
    color: var(--rn-sky);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    transition: all .22s ease;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--rn-primary), var(--rn-primary-dark));
    box-shadow: 0 10px 24px rgba(8,127,245,.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 32px rgba(8,127,245,.34);
}

.btn-outline {
    color: #fff;
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.58);
}

.btn-outline:hover {
    background: rgba(255,255,255,.11);
}

.btn-nav {
    min-height: 40px;
    padding: 9px 17px;
}

.hero {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 27% 20%, rgba(14,121,229,.18), transparent 27%),
        linear-gradient(132deg, var(--rn-navy-950) 0 50%, #092744 50% 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    min-height: 550px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: 62px 44px 62px 0;
}

.hero-badge {
    display: inline-flex;
    padding: 7px 17px;
    color: #cce9ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    background: rgba(8,127,245,.14);
    border: 1px solid rgba(78,182,251,.2);
    border-radius: 7px;
}

.hero h1 {
    margin: 18px 0 14px;
    color: #fff;
    font-size: clamp(42px,4.8vw,62px);
    line-height: 1.06;
    letter-spacing: -2.2px;
}

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

.hero-copy > p {
    max-width: 580px;
    margin: 0;
    color: #d4e0ec;
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 27px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4,auto);
    gap: 18px;
    margin-top: 28px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hero-benefits i {
    color: var(--rn-sky);
    font-size: 18px;
    font-style: normal;
}

.hero-photo {
    position: relative;
    min-height: 550px;
    margin-right: calc((100vw - min(100vw - 40px, var(--rn-container))) / -2);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--rn-navy-950), transparent 24%);
}

.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--rn-border);
    box-shadow: 0 6px 18px rgba(8,35,66,.04);
}

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

.stats-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 78px;
    border-right: 1px solid var(--rn-border);
}

.stats-grid article:last-child { border-right: 0; }

.stat-icon {
    color: var(--rn-primary);
    font-size: 28px;
}

.stats-grid strong,
.stats-grid small {
    display: block;
}

.stats-grid strong {
    color: var(--rn-primary);
    font-size: 21px;
    line-height: 1.1;
}

.stats-grid small {
    margin-top: 3px;
    color: var(--rn-text);
    font-size: 10px;
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: var(--rn-bg);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rn-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 26px;
    height: 2px;
    content: "";
    background: currentColor;
}

.section h2 {
    margin: 13px 0 0;
    color: var(--rn-ink);
    font-size: clamp(34px,4vw,50px);
    line-height: 1.12;
    letter-spacing: -1.6px;
}

.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
}

.intro-copy p {
    margin: 0 0 17px;
    font-size: 16px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading p {
    margin: 13px 0 0;
    color: var(--rn-muted);
    font-size: 14px;
}

.dashboard-section {
    padding-top: 80px;
    background: #fff;
}

.dashboard-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.dashboard-shot {
    overflow: hidden;
    padding: 0;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    box-shadow: var(--rn-shadow);
    cursor: pointer;
    transition: .2s ease;
}

.dashboard-shot:hover,
.dashboard-shot.active {
    border-color: var(--rn-primary);
    transform: translateY(-3px);
}

.dashboard-shot img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: top;
}

.dashboard-viewer {
    overflow: hidden;
    background: var(--rn-navy-900);
    border-radius: 18px;
    box-shadow: var(--rn-shadow-lg);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 14px;
}

.browser-bar span {
    width: 9px;
    height: 9px;
    background: rgba(255,255,255,.28);
    border-radius: 50%;
}

.browser-bar p {
    flex: 1;
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    text-align: center;
}

.dashboard-viewer > img {
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    background: #f5f8fc;
    cursor: zoom-in;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.feature-card {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--rn-border);
    border-radius: var(--rn-radius);
    box-shadow: 0 8px 26px rgba(9,38,70,.05);
    transition: .22s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rn-shadow);
}

.feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--rn-primary);
    font-size: 23px;
    background: var(--rn-primary-soft);
    border-radius: 13px;
}

.feature-icon.cyan { color: var(--rn-cyan); background: #e7fbfd; }
.feature-icon.green { color: var(--rn-green); background: var(--rn-green-soft); }
.feature-icon.purple { color: var(--rn-purple); background: var(--rn-purple-soft); }
.feature-icon.orange { color: var(--rn-orange); background: var(--rn-orange-soft); }

.feature-card h3 {
    margin: 18px 0 8px;
    color: var(--rn-ink);
    font-size: 17px;
}

.feature-card p {
    margin: 0;
    color: var(--rn-muted);
    font-size: 12px;
}

.services-section {
    color: #fff;
    background: linear-gradient(145deg,var(--rn-navy-950),var(--rn-navy-900));
}

.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: #b8c8d8; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.service-grid article {
    padding: 25px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
}

.service-grid article > span {
    color: var(--rn-sky);
    font-size: 11px;
    font-weight: 800;
}

.service-grid h3 {
    margin: 15px 0 8px;
    color: #fff;
    font-size: 16px;
}

.service-grid p {
    margin: 0;
    color: #b8c8d8;
    font-size: 12px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-top: 38px;
}

.industry-grid article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    color: var(--rn-ink);
    background: #fff;
    border: 1px solid var(--rn-border);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(9,37,69,.04);
}

.industry-grid span {
    color: var(--rn-primary);
    font-size: 22px;
}

.industry-grid strong {
    font-size: 13px;
}

.contact-section {
    background: var(--rn-bg);
}

.contact-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
    padding: 52px;
    background: #fff;
    border: 1px solid var(--rn-border);
    border-radius: 23px;
    box-shadow: var(--rn-shadow);
}

.contact-copy p {
    color: var(--rn-muted);
}

.contact-copy ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.contact-copy li {
    margin: 10px 0;
    color: var(--rn-ink);
    font-size: 12px;
    font-weight: 600;
}

.contact-copy li::before {
    margin-right: 9px;
    color: var(--rn-green);
    content: "✓";
}

.demo-form {
    display: grid;
    gap: 14px;
}

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

.demo-form label span {
    display: block;
    margin-bottom: 6px;
    color: var(--rn-ink);
    font-size: 11px;
    font-weight: 700;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--rn-text);
    background: #fbfdff;
    border: 1px solid var(--rn-border);
    border-radius: 9px;
    outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
    border-color: var(--rn-primary);
    box-shadow: 0 0 0 3px rgba(8,127,245,.1);
}

.demo-form .btn {
    justify-self: start;
}

.form-message {
    margin: 0;
    color: var(--rn-green);
    font-size: 12px;
    font-weight: 600;
}

.site-footer {
    padding: 66px 0 22px;
    color: #aebfd0;
    background: var(--rn-navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3,1fr);
    gap: 46px;
}

.footer-brand img {
    width: 50%;
    max-height: 112px;
}

.footer-brand p {
    max-width: 340px;
    font-size: 11px;
}

.footer-grid h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: #9eafc1;
    font-size: 11px;
}

.footer-grid a:hover { color: var(--rn-sky); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 19px;
    font-size: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3,14,27,.92);
}

.image-modal.open { display: flex; }

.image-modal img {
    max-width: 96vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.image-modal-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    color: #fff;
    font-size: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 1120px) {
    .nav-actions .phone-link { display: none; }

    .site-nav {
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        display: none;
        padding: 18px;
        background: var(--rn-navy-950);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 14px;
        box-shadow: var(--rn-shadow-lg);
    }

    .site-nav.open { display: grid; }
    .site-nav a.active::after { display: none; }
    .nav-toggle { display: block; margin-left: auto; }
    .nav-actions { margin-left: 0; }
    .brand { margin-right: auto; }

    .hero-grid,
    .intro-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        min-height: 430px;
        margin: 0;
    }

    .hero-photo-overlay {
        background: linear-gradient(180deg,var(--rn-navy-950),transparent 25%);
    }

    .hero-benefits {
        grid-template-columns: repeat(2,auto);
        justify-content: start;
    }

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

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

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

    .footer-grid > div:last-child {
        grid-column: 2;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px),var(--rn-container));
    }

    .brand {
        width: 190px;
        flex-basis: 190px;
    }

    .btn-nav { display: none; }

    .hero-copy {
        padding: 54px 0 40px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.7px;
    }

    .hero-actions,
    .hero-benefits {
        display: grid;
    }

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

    .hero-photo { min-height: 310px; }

    .stats-grid,
    .dashboard-gallery,
    .feature-grid,
    .service-grid,
    .industry-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid article {
        justify-content: flex-start;
        padding: 18px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--rn-border);
    }

    .section { padding: 72px 0; }
    .section h2 { font-size: 35px; }

    .dashboard-shot img { height: auto; }

    .contact-card {
        gap: 34px;
        padding: 28px 20px;
    }

    .demo-form .btn { width: 100%; }

    .footer-grid > div:last-child { grid-column: auto; }

    .footer-bottom {
        display: grid;
        gap: 7px;
    }
}
/*==================================================
  Pricing Comparison
==================================================*/

.pricing-comparison-section {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
}

    .pricing-comparison-table thead th {
        padding: 18px 10px;
        border-bottom: 2px solid #ececec;
        font-weight: 600;
        color: #222;
        text-align: center;
    }

        .pricing-comparison-table thead th:first-child {
            text-align: left;
        }

    .pricing-comparison-table tbody td {
        padding: 20px 10px;
        border-bottom: 1px solid #efefef;
        text-align: center;
        color: #333;
    }

        .pricing-comparison-table tbody td:first-child {
            text-align: left;
            font-weight: 500;
            width: 40%;
        }

    .pricing-comparison-table tbody tr:hover {
        background: #fafafa;
    }

    .pricing-comparison-table strong {
        font-weight: 700;
    }

.active-plan {
    font-weight: 700;
}

.star {
    font-size: 16px;
    margin-left: 4px;
    vertical-align: middle;
}

@media(max-width:991px) {

    .pricing-comparison-section {
        overflow-x: auto;
    }

    .pricing-comparison-table {
        min-width: 900px;
    }
}