@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #22c55e; /*#16a34a;*/
    --green-dark: #16a34a; /*#15803d;*/
    --green-light: #dcfce74d; /*#dcfce7;*/
    --dark: #0f172a;
    --navy: #0b1220;
    --gray: #64748b;
    --border: #e5e7eb;
    --bg-alt: #f8fafc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-outline {
    background: #ffffff;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-white {
    background: #ffffff;
    color: var(--green-dark);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.link-btn {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.15s ease;
}

.link-btn:hover {
    color: var(--green);
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    border-bottom-color: var(--border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.brand img
{
    width: 150px;
}

.brand-mark {
    width: 22px;
    height: 20px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--dark);
}

.brand-text.light {
    color: #ffffff;
}

.brand-text em {
    font-style: normal;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.4px;
    color: var(--gray);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding: 6px 0;
    transition: color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
    padding: 56px 0 40px;
    background: linear-gradient(180deg, #f7fdf9 0%, #ffffff 70%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.text-green {
    color: var(--green);
}

.hero-sub {
    font-size: 15px;
    color: var(--gray);
    max-width: 460px;
    margin-bottom: 26px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.hero-perks li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    width: 64px;
}

.hero-perks svg {
    width: 26px;
    height: 26px;
    padding: 8px;
    background: var(--green-light);
    border-radius: 12px;
    box-sizing: content-box;
}

/* ---------- App mockup (shared) ---------- */
.main-dashboad-banner
{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;

    animation: continuousScale 3s linear infinite;
}

@keyframes continuousScale {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.main-dashboad-banner:hover{
    animation-play-state: paused;
}

.app-mockup {
    background: #ffffff;
    /*border: 1px solid var(--border);*/
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.app-mockup img{
    width: 100%;
}

.mockup-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}

.mockup-bar .brand-text {
    font-size: 11px;
}

.mockup-bar-icons {
    display: flex;
    gap: 10px;
    color: var(--gray);
}

.mockup-bar-icons svg {
    width: 14px;
    height: 14px;
}

.mockup-body {
    padding: 16px;
}

.mockup-greeting {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.mockup-greeting-sub {
    font-size: 10.5px;
    color: var(--gray);
    margin-bottom: 14px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.mockup-stat {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
}

.mockup-stat .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.mockup-stat .dot svg {
    width: 11px;
    height: 11px;
}

.mockup-stat b {
    display: block;
    font-size: 11.5px;
}

.mockup-stat span {
    display: block;
    font-size: 9px;
    color: var(--gray);
    margin-top: 2px;
}

.mockup-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 12px;
}

.mockup-chart-title,
.mockup-list-title {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.mockup-list-title span {
    color: var(--green);
    font-weight: 500;
    font-size: 9px;
}

.mockup-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9.5px;
    padding: 5px 0;
    border-bottom: 1px dashed var(--border);
}

.mockup-list li .num {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--bg-alt);
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-list li .val {
    margin-left: auto;
    font-weight: 600;
}

/* ---------- Trusted ---------- */
.trusted {
    background: var(--bg-alt);
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 18px;
}

.trusted-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.trusted-item:hover {
    opacity: 1;
}

.trusted-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trusted-item em {
    display: block;
    font-style: normal;
    font-size: 10px;
    font-weight: 400;
    color: var(--gray);
}

/* ---------- Sections ---------- */
.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.section-head.left {
    text-align: left;
    margin: 0;
}

.section-head h2 {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.section-head p {
    font-size: 14.5px;
    color: var(--gray);
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    white-space: nowrap;
}

/* ---------- Grids ---------- */
.grid {
    display: grid;
    gap: 18px;
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-modules {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* ---------- Feature cards ---------- */
.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #4ade80);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.09);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(150deg, var(--green-light), #bbf7d0);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--gray);
}

/* ---------- Module cards ---------- */
.module-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 168px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.module-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), #4ade80);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: transparent;
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.module-card .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 11px;
}

.module-card .icon-box svg {
    width: 19px;
    height: 19px;
}

.module-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.module-card:hover .module-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--green);
    color: #ffffff;
}

.module-arrow svg {
    width: 12px;
    height: 12px;
}

.module-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.module-card p {
    font-size: 12px;
    line-height: 1.55;
    color: var(--gray);
    flex-grow: 1;
}

/* ---------- Tabs ---------- */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 34px;
}

.tab {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: 'Inter', Arial, sans-serif !important;
}

.tab:hover {
    color: var(--green);
}

.tab.active {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
}

.action-panel {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 44px;
    align-items: center;
}

.action-panel{
    display:none;
}

.action-panel.active{
    display:grid;   /* or display:flex depending on your layout */
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

.checklist li:last-child {
    margin-bottom: 0;
}

.checklist .check-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist .check-dot svg {
    width: 12px;
    height: 12px;
}

.checklist h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.checklist p {
    font-size: 12.5px;
    color: var(--gray);
}

/* ---------- Reports ---------- */
.report-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.report-thumb {
    /*height: 300px;*/
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.report-thumb img
{
    width: 100%;
    height: 100%;
}

.report-thumb svg {
    width: 100%;
    height: 100%;
}

.report-card p {
    font-size: 12px;
    font-weight: 600;
    padding: 12px 8px;
}

/* ---------- Pricing ---------- */
.price-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.price-card.featured {
    background: var(--green-light);
    border-color: var(--green);
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 5px 14px;
    border-radius: 999px;
}

.price-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-tag {
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 18px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 2px;
}

.price-period {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 22px;
}

.price-list {
    margin-bottom: 26px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 6px 0;
    color: var(--dark);
}

.price-list li::before {
    content: "\2713";
    color: var(--green);
    font-weight: 700;
    font-size: 11px;
}

/* ---------- CTA ---------- */
.cta {
    background: var(--green);
    padding: 34px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #ffffff;
}

.cta-copy h2 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-copy p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 12px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 56px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.3fr;
    gap: 24px;
    padding-bottom: 40px;
}

.footer-brand p {
    font-size: 12.5px;
    margin: 14px 0 18px;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.socials a:hover {
    background: var(--green);
}

.socials svg {
    width: 13px;
    height: 13px;
    fill: #ffffff;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12.5px;
    margin-bottom: 11px;
    transition: color 0.15s ease;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-col .contact-line svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.heart {
    color: var(--green);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .action-panel {
        grid-template-columns: 1fr;
    }

    .action-panel{
        display:none;
    }

    .action-panel.active{
        display:grid;   /* or display:flex depending on your layout */
    }

    .grid-features,
    .grid-5,
    .grid-modules {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: flex;
    }

    .navbar-inner {
        flex-wrap: wrap;
    }

    .nav-links,
    .navbar-actions {
        display: none;
        width: 100%;
    }

    .navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0 10px;
        border-top: 1px solid var(--border);
        order: 3;
    }

    .navbar.menu-open .navbar-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-bottom: 16px;
        order: 4;
    }

    .hero-copy h1 {
        font-size: 27px;
    }

    .hero-ctas {
        flex-wrap: wrap;
    }

    .grid-3,
    .grid-features,
    .grid-5,
    .grid-modules {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.featured {
        transform: none;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .grid-3,
    .grid-features,
    .grid-5,
    .grid-modules {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .hero-perks {
        justify-content: center;
    }

    .mockup-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-columns {
        grid-template-columns: 1fr;
    }
}










.screenshot-card
{
    width: 100%;
    height: 100%;
}

.preview-image
{
    width:100%;
    display:block;
    cursor:zoom-in;

    border-radius:6px;

    transition:.35s ease;
}

.hero-visual:not(.disable-hover):hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.image-modal
{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(9,15,25,.55);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999999;
}

.image-modal.show
{
    opacity:1;
    visibility:visible;
}

.modal-content
{
    overflow:hidden;

    max-width:96vw;
    max-height:94vh;

    cursor:grab;
}

.modal-content:active
{
    cursor:grabbing;
}

.modal-content img
{
    max-width:100%;
    max-height:94vh;

    border-radius:6px;

    box-shadow:
    0 40px 120px rgba(0,0,0,.40);

    transition:
    transform .18s ease;

    transform-origin:center center;

    user-select:none;

    will-change:transform;
}

.modal-close {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .25s;
}

.modal-close:hover
{
    background:#fff;
    color:#111827;
}

#home, #features, #modules, #action, #reports, #pricing, #customers, #contact
{
    scroll-margin-top: 70px;
}
