:root {
    --red: #df111d;
    --red-dark: #a90813;
    --red-soft: #fff0f1;
    --lime: #8dbb27;
    --ink: #171719;
    --muted: #707078;
    --line: #e9e9ed;
    --surface: #f8f8fa;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(25, 25, 30, .12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-weight: 900;
}

.brand-holoo {
    color: var(--red);
    font-size: 25px;
}

.brand-plus {
    color: #999;
    font-size: 19px;
}

.brand-limo {
    color: #333;
    font-size: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #57575d;
    font-size: 14px;
}

.main-nav a {
    transition: color .2s ease;
}

.main-nav a:hover {
    color: var(--red);
}

.header-button,
.primary-button,
.secondary-button,
.white-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-button,
.primary-button {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 10px 25px rgba(223, 17, 29, .2);
}

.header-button:hover,
.primary-button:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 660px;
    padding: 92px 0 110px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 70, 70, .3), transparent 28%),
        linear-gradient(120deg, #a90913 0%, #db0e19 50%, #f0212b 100%);
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 75px;
}

.hero-content {
    max-width: 570px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.hero .eyebrow {
    color: #ffd8da;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9bd230;
    box-shadow: 0 0 0 5px rgba(155, 210, 48, .16);
}

.hero h1 {
    max-width: 600px;
    font-size: clamp(39px, 5vw, 68px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: #ffe02d;
}

.hero-description {
    max-width: 510px;
    margin-top: 22px;
    color: #ffe9ea;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.secondary-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, .18);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 54px;
}

.trust-item {
    display: grid;
    gap: 2px;
}

.trust-item strong {
    font-size: 14px;
}

.trust-item span {
    color: #ffd3d5;
    font-size: 11px;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, .35);
}

.hero-visual {
    position: relative;
    min-height: 455px;
    display: grid;
    place-items: center;
}

.dashboard-card {
    position: relative;
    z-index: 3;
    width: min(560px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(90, 0, 0, .32);
    color: var(--ink);
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e9a2a5;
}

.window-dots span:first-child {
    background: #ef555d;
}

.dashboard-title {
    color: #777;
    font-size: 11px;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 365px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 22px 0;
    background: #252326;
}

.sidebar-logo,
.node-mark {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-weight: 900;
}

.sidebar-line {
    width: 17px;
    height: 5px;
    border-radius: 10px;
    background: #676269;
}

.sidebar-line.active {
    width: 27px;
    background: #fff;
}

.dashboard-main {
    padding: 24px;
    background: #fafafa;
}

.dashboard-heading,
.chart-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.dashboard-heading small {
    color: #888;
    font-size: 10px;
}

.dashboard-heading h3 {
    margin-top: 1px;
    font-size: 17px;
}

.live-badge {
    padding: 1px 9px;
    border-radius: 20px;
    color: #2c892f;
    background: #e5f7e5;
    font-size: 9px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.mini-stat,
.message-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
}

.stat-icon,
.message-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 7px;
    color: #fff;
    background: #46b649;
    font-size: 12px;
    font-weight: 700;
}

.stat-icon.orange {
    background: #f2a52d;
}

.mini-stat strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
}

.mini-stat small,
.message-preview p,
.message-time {
    color: #999;
    font-size: 9px;
}

.message-preview {
    margin-top: 10px;
}

.message-icon.blue {
    background: #438bd8;
}

.message-preview strong {
    display: block;
    font-size: 11px;
}

.message-time {
    margin-right: auto;
    white-space: nowrap;
}

.chart {
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
}

.chart-label {
    color: #777;
    font-size: 9px;
}

.chart-label b {
    color: var(--red);
    font-size: 14px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-around;
    height: 70px;
    margin-top: 13px;
    border-bottom: 1px solid #eee;
}

.chart-bars i {
    width: 18px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(#ef4e56, var(--red));
}

.floating-notification {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 16px 35px rgba(60, 0, 0, .2);
}

.notification-one {
    right: -20px;
    bottom: 32px;
}

.notification-two {
    left: -15px;
    top: 24px;
}

.notification-icon {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 8px;
    color: #fff;
    background: #45b84b;
}

.notification-icon.purple {
    background: #8c5ad2;
}

.floating-notification strong,
.floating-notification small {
    display: block;
}

.floating-notification strong {
    font-size: 11px;
}

.floating-notification small {
    color: #888;
    font-size: 9px;
}

.hero-glow {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.hero-glow-one {
    width: 600px;
    height: 600px;
    left: -250px;
    bottom: -300px;
}

.hero-glow-two {
    width: 400px;
    height: 400px;
    right: -170px;
    top: -180px;
}

.logo-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.logo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
    color: var(--muted);
    font-size: 13px;
}

.integration-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #999;
}

.integration-line b {
    color: var(--red);
    font-size: 20px;
}

.integration-line .limo-text {
    color: var(--lime);
    font-size: 15px;
}

.integration-line strong {
    color: var(--ink);
    font-size: 13px;
}

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-kicker {
    margin-bottom: 9px;
}

.section-heading h2,
.process-content h2,
.cta-inner h2 {
    font-size: clamp(27px, 3.2vw, 43px);
    line-height: 1.45;
    font-weight: 900;
}

.section-heading p,
.process-content > p,
.cta-inner p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.feature-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #f0b4b7;
    box-shadow: var(--shadow);
}

.feature-card.featured-card {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 20px 45px rgba(223, 17, 29, .2);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 19px;
    border-radius: 10px;
    color: var(--red);
    background: var(--red-soft);
    font-size: 21px;
    font-weight: 800;
}

.feature-icon.red {
    color: #d8323b;
    background: #fff0f1;
}

.feature-icon.blue {
    color: #317dc4;
    background: #edf6ff;
}

.feature-icon.orange {
    color: #d98a16;
    background: #fff6e7;
}

.feature-icon.green {
    color: #48a849;
    background: #edf9ed;
}

.feature-icon.purple {
    color: #8051c6;
    background: #f5efff;
}

.featured-card .feature-icon {
    color: var(--red);
    background: #fff;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 800;
}

.feature-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.featured-card p {
    color: #ffe1e3;
}

.feature-card a {
    display: inline-flex;
    gap: 7px;
    margin-top: 17px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.process-section,
.cta-section {
    color: #fff;
    background: #252326;
}

.process-section {
    padding: 95px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.light-kicker {
    color: #f3c9ca;
}

.process-content h2 {
    max-width: 480px;
}

.process-content > p {
    max-width: 530px;
    color: #c3bec1;
}

.process-steps {
    display: grid;
    gap: 22px;
    margin-top: 35px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.process-step > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-weight: 800;
}

.process-step h3 {
    font-size: 15px;
}

.process-step p {
    margin-top: 3px;
    color: #aaa5a8;
    font-size: 12px;
}

.integration-panel {
    position: relative;
    display: grid;
    gap: 26px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    background: linear-gradient(145deg, #312e31, #211f21);
}

.connection-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 9px;
    background: #fff;
    color: var(--ink);
}

.connection-node strong,
.connection-node small {
    display: block;
}

.connection-node strong {
    font-size: 15px;
}

.connection-node small {
    color: #8d8d93;
    font-size: 11px;
}

.limo-node .node-mark {
    background: var(--lime);
}

.connection-path {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    height: 25px;
}

.connection-path::before {
    position: absolute;
    right: 16%;
    left: 16%;
    height: 2px;
    background: var(--red);
    content: "";
}

.path-dot {
    position: relative;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff777e;
}

.panel-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #bbb6b9;
    font-size: 12px;
}

.caption-check {
    color: #94ce42;
}

.benefits-section {
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-item {
    padding: 25px 0;
    border-top: 2px solid #dcdce0;
}

.benefit-number {
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
}

.benefit-item h3 {
    margin-top: 18px;
    font-size: 17px;
}

.benefit-item p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.cta-section {
    padding: 76px 0;
    background: linear-gradient(110deg, var(--red-dark), var(--red));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner h2 {
    max-width: 610px;
}

.cta-inner p {
    max-width: 580px;
    color: #ffd9da;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.cta-phone,
.white-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    border-radius: 8px;
}

.cta-phone {
    border: 1px solid rgba(255, 255, 255, .35);
}

.cta-phone > span {
    font-size: 23px;
}

.cta-phone small,
.cta-phone strong {
    display: block;
}

.cta-phone small {
    color: #ffd3d5;
    font-size: 10px;
}

.cta-phone strong {
    font-size: 17px;
    direction: ltr;
}

.white-button {
    color: var(--red);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.white-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(70, 0, 0, .2);
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 80px;
}

.faq-heading {
    margin: 0;
    text-align: right;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
}

.faq-question span {
    color: var(--red);
    font-size: 23px;
    line-height: 1;
    transition: transform .2s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 19px;
    color: var(--muted);
    font-size: 13px;
}

.faq-item.active .faq-answer {
    display: block;
}

.site-footer {
    padding: 40px 0;
    background: #171618;
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 40px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 8px;
    color: #969297;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 22px;
    color: #c9c5c8;
    font-size: 12px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    color: #777277;
    font-size: 10px;
}

.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    background: var(--red);
    box-shadow: 0 10px 25px rgba(223, 17, 29, .35);
    font-size: 22px;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.open {
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.open a {
        padding: 12px;
        border-bottom: 1px solid var(--line);
    }

    .main-nav.open a:last-child {
        border-bottom: 0;
    }

    .hero-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        max-width: 700px;
        margin: auto;
        text-align: center;
    }

    .hero .eyebrow,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 420px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-heading {
        max-width: 600px;
        margin-inline: auto;
        text-align: center;
    }

    .cta-inner {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-inner p {
        margin-inline: auto;
    }

    .cta-actions {
        width: min(310px, 100%);
        margin-inline: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .header-button {
        display: none;
    }

    .brand-holoo {
        font-size: 21px;
    }

    .brand-limo {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 65px 0 80px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
        margin-top: 36px;
    }

    .trust-item span {
        font-size: 10px;
    }

    .hero-visual {
        min-height: 320px;
    }

    .dashboard-card {
        transform: none;
    }

    .dashboard-body {
        grid-template-columns: 45px 1fr;
        min-height: 290px;
    }

    .dashboard-main {
        padding: 14px;
    }

    .dashboard-heading h3 {
        font-size: 14px;
    }

    .dashboard-sidebar {
        gap: 21px;
    }

    .mini-stat {
        padding: 8px;
    }

    .mini-stat strong {
        font-size: 12px;
    }

    .message-preview {
        padding: 8px;
    }

    .message-preview strong {
        font-size: 9px;
    }

    .message-preview p,
    .message-time {
        font-size: 8px;
    }

    .chart {
        padding: 9px;
    }

    .floating-notification {
        padding: 9px;
    }

    .notification-one {
        right: -5px;
        bottom: 0;
    }

    .notification-two {
        left: -5px;
        top: 0;
    }

    .logo-strip-inner {
        display: grid;
        justify-content: center;
        gap: 9px;
        padding: 20px 0;
        text-align: center;
    }

    .integration-line {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2,
    .process-content h2,
    .cta-inner h2 {
        font-size: 28px;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .process-section {
        padding: 70px 0;
    }

    .integration-panel {
        padding: 30px 18px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .footer-links {
        gap: 13px;
    }
}
