
:root {
    --brand-primary: #2ca46e;
    --brand-deep: #1e6a46;
    --brand-soft: #eaf8f1;
    --brand: #2faa6f;
    --brand-dark: #1f8b58;
    --ink: #15281f;
    --muted: #6a786f;
    --line: rgba(21,40,31,.08);
    --surface: rgba(255,255,255,.86);
    --shadow: 0 24px 60px rgba(21,40,31,.08);
    --shadow-sm: 0 14px 34px rgba(21,40,31,.06);
    --radius: 28px;
    /* unified theme tokens */
    --brand-color: var(--brand);
    --brand-color-dark: var(--brand-deep);
    --brand-color-light: rgba(47,170,111,.14);
    --brand-color-glow: rgba(47,170,111,.34);
    --brand-scroll-track: #edf7f1;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}
* {
    scrollbar-width: thin;
    scrollbar-color: #0d6efd #f1f1f1;
}
#preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(18px);
    z-index: 9999;
}

.preloader-glass {
    width: 220px;
    height: 220px;
    border-radius: 28px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.logo-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid var(--brand-color);
    animation: spin 1.2s linear infinite;
}

.preloader-logo {
    width: 80px;
    filter: drop-shadow(0 0 15px var(--brand-color-glow));
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

body {
    cursor: none;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: var(--brand-color);
    box-shadow: 0 0 10px var(--brand-color), 0 0 20px var(--brand-color-glow), 0 0 35px rgba(47,170,111,.20);
}

.cursor-outline {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(47,170,111,.40);
    background: rgba(47,170,111,.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 0 14px rgba(47,170,111,.16), inset 0 0 10px rgba(255,255,255,.08);
    transition: width .22s ease, height .22s ease, background .22s ease, border-color .22s ease, transform .08s ease;
}

.cursor-hover .cursor-outline {
    width: 62px;
    height: 62px;
    background: rgba(47,170,111,.10);
    border-color: rgba(47,170,111,.72);
    box-shadow: 0 0 22px rgba(47,170,111,.28), 0 0 50px rgba(47,170,111,.14);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.35);
}

.cursor-click .cursor-outline {
    width: 34px;
    height: 34px;
}

.cursor-click .cursor-dot {
    transform: translate(-50%, -50%) scale(.85);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-color) var(--brand-scroll-track);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--brand-scroll-track);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand-color), var(--brand-color-dark));
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color-dark);
}
body {
    font-family: 'IBM Plex Sans Arabic',sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 15% 10%, rgba(47,170,111,.10), transparent 18%), radial-gradient(circle at 85% 12%, rgba(47,170,111,.08), transparent 18%), radial-gradient(circle at 30% 85%, rgba(47,170,111,.07), transparent 20%), linear-gradient(180deg,#fbfefc 0%,#f5fbf7 100%);
    overflow-x: hidden
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 4px;
    width: 0;
    z-index: 2000;
    background: linear-gradient(90deg,var(--brand),#8fe0b7);
    box-shadow: 0 6px 18px rgba(47,170,111,.28)
}

.navbar {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(17,36,28,.05)
}

.navbar-brand {
    font-weight: 900;
    color: var(--brand) !important
}

.nav-link {
    color: var(--ink);
    font-weight: 700;
    transition: color .2s ease,transform .2s ease
}

    .nav-link:hover {
        color: var(--brand-dark)
    }

.brand-logo {
}
    .brand-logo img {
        width: 65px;
        height: 65px;
    }

.btn-brand {
    background: linear-gradient(135deg,var(--brand),#39b97b);
    color: #fff;
    border: none;
    box-shadow: 0 12px 26px rgba(47,170,111,.22);
    transition: transform .25s ease,box-shadow .25s ease,filter .25s ease
}

    .btn-brand:hover, .btn-brand:focus {
        color: #fff;
        transform: translateY(-2px) scale(1.01);
        filter: saturate(1.05)
    }

.btn-outline-brand {
    border: 1px solid rgba(47,170,111,.24);
    color: var(--brand-dark);
    background: #fff;
    transition: transform .25s ease,background-color .25s ease,border-color .25s ease
}

    .btn-outline-brand:hover {
        background: var(--brand-soft);
        color: var(--brand-dark);
        border-color: var(--brand);
        transform: translateY(-2px)
    }

.section-title {
    font-size: clamp(2rem,3.2vw,3rem);
    font-weight: 700;
    margin-bottom: .8rem;
    letter-spacing: -.03em;
    line-height: 1.15
}

.section-subtitle {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 3rem;
    line-height: 1.95
}

.section-divider {
    width: 82px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--brand),#8de0b6);
    margin: 0 auto 1rem
}

.text-brand {
    color: var(--brand)
}

.card-ui, .feature-card, .pricing-card, .preview-card, .testimonial-card, .contact-card, .cta-card, .metric-card, .news-card, .hero-panel, .floating-ui, .dashboard-shell, .logo-cloud-item, .step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px)
}

.feature-card, .pricing-card, .preview-card, .testimonial-card, .contact-card, .metric-card, .news-card, .floating-ui, .step-card {
    padding: 1.6rem;
    height: 100%;
    position: relative;
    overflow: hidden
}

.feature-card, .pricing-card, .testimonial-card, .news-card, .floating-ui, .step-card, .metric-card, .logo-cloud-item {
    transition: transform .35s ease,box-shadow .35s ease,border-color .35s ease;
    will-change: transform;
    transform-style: preserve-3d
}

    .feature-card:hover, .pricing-card:hover, .testimonial-card:hover, .news-card:hover, .floating-ui:hover, .step-card:hover, .metric-card:hover, .logo-cloud-item:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 26px 70px rgba(21,40,31,.13);
        border-color: rgba(47,170,111,.2)
    }

.shine-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 40%;
    height: 260%;
    background: linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.35),rgba(255,255,255,0));
    transform: rotate(18deg);
    transition: left .9s ease;
    pointer-events: none
}

.shine-card:hover::after {
    left: 120%
}

.icon-box, .icon-badge {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,#fff,var(--brand-soft));
    color: var(--brand-dark);
    border: 1px solid rgba(47,170,111,.16);
    box-shadow: var(--shadow-sm);
    font-size: 1.28rem;
    flex-shrink: 0
}

.hero {
    background-image: radial-gradient(rgba(47,170,111,.08) 1px,transparent 1px),linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.32));
    background-size: 28px 28px,auto;
    animation: gridMove 18s linear infinite;
    padding: 10rem 0 6.5rem;
    position: relative;
    overflow: hidden
}

    .hero::before, .hero::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(47,170,111,.16) 0%,rgba(47,170,111,0) 70%);
        pointer-events: none;
        animation: floatGlow 9s ease-in-out infinite
    }
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 75% 25%, rgba(44, 164, 110, 0.2), transparent 65%), radial-gradient(circle at 25% 40%, rgba(44, 164, 110, 0.15), transparent 55%);
        z-index: -1;
    }
    .hero::before {
        width: 460px;
        height: 460px;
        top: -140px;
        right: -140px
    }

    .hero::after {
        width: 360px;
        height: 360px;
        left: -120px;
        bottom: -90px;
        animation-delay: 2s
    }

.hero-badge, .soft-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 800;
    font-size: .95rem
}

.hero h1 {
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.045em;
    font-size: clamp(2.0rem,4.8vw,3.8rem);
    margin-top: 1rem
}

.hero .lead {
    color: var(--muted);
    line-height: 1.95;
    font-size: 1.08rem;
    max-width: 620px
}

.mini-stat {
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%
}

.hero-showcase {
    position: relative;
    min-height: 560px;
    background: linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,255,255,.55));
    border: 1px solid rgba(47,170,111,.10);
    border-radius: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    overflow: hidden;
    padding: 1rem
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1rem;
    height: 100%
}

.hero-app {
    background: linear-gradient(180deg,#fff,#f7fcf9);
    border: 1px solid rgba(47,170,111,.10);
    border-radius: 28px;
    overflow: hidden
}

.app-topbar {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 1rem 1rem .75rem;
    border-bottom: 1px solid rgba(47,170,111,.08);
    background: linear-gradient(90deg,#fff,#f4fbf6)
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(47,170,111,.35)
}

.app-body {
    padding: 1.1rem
}

.app-hero-card {
    border: 1px solid rgba(47,170,111,.10);
    border-radius: 24px;
    background: linear-gradient(135deg,rgba(47,170,111,.10),rgba(47,170,111,.03));
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 180px;
    position: relative;
    overflow: hidden
}

    .app-hero-card::after {
        content: "";
        position: absolute;
        inset: auto -20px -20px auto;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle,rgba(47,170,111,.15),rgba(47,170,111,0) 70%)
    }

.app-block {
    border: 1px solid rgba(47,170,111,.09);
    border-radius: 18px;
    background: #fff;
    padding: .95rem;
    margin-bottom: .85rem;
    box-shadow: var(--shadow-sm)
}

.app-progress {
    height: 10px;
    border-radius: 999px;
    background: #e7f4ec;
    overflow: hidden
}

    .app-progress span {
        display: block;
        height: 100%;
        width: 74%;
        background: linear-gradient(90deg,var(--brand),#79d5a6)
    }

.hero-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem
}

.float-slow {
    animation: floatSoft 7s ease-in-out infinite
}

.floating-ui {
    animation: blockFloat 6s ease-in-out infinite
}

    .floating-ui:nth-child(2) {
        animation-delay: 1.5s
    }

.hero-side-image {
    height: 140px;
    object-fit: cover
}

.orbit-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none
}

    .orbit-wrap span {
        position: absolute;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(47,170,111,.22);
        box-shadow: 0 0 0 8px rgba(47,170,111,.05);
        animation: pulseDot 4s ease-in-out infinite
    }

        .orbit-wrap span:nth-child(1) {
            top: 12%;
            right: 8%
        }

        .orbit-wrap span:nth-child(2) {
            top: 34%;
            left: 8%;
            animation-delay: .8s
        }

        .orbit-wrap span:nth-child(3) {
            bottom: 18%;
            right: 18%;
            animation-delay: 1.2s
        }

        .orbit-wrap span:nth-child(4) {
            bottom: 8%;
            left: 24%;
            animation-delay: 1.8s
        }

.brand-chip {
    border: 1px solid rgba(47,170,111,.12);
    border-radius: 999px;
    padding: .65rem 1rem;
    background: #fff;
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    gap: .55rem;
    align-items: center
}

.text-muted-custom, .muted, .news-card small {
    color: var(--muted);
    line-height: 1.9
}

.news-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1rem;
    transition: transform .6s ease
}

.news-card:hover .news-image {
    transform: scale(1.08)
}

.pricing-toggle {
    background: #fff;
    border: 1px solid rgba(47,170,111,.12);
    border-radius: 999px;
    padding: .5rem 1rem;
    box-shadow: var(--shadow-sm)
}

.form-check-input:checked {
    background-color: var(--brand);
    border-color: var(--brand)
}

.pricing-card.featured {
    border: 1px solid rgba(47,170,111,.20);
    transform: translateY(-8px);
    background: linear-gradient(180deg,rgba(255,255,255,.99),rgba(234,248,241,.78))
}

.pricing-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    border-radius: 999px;
    padding: .4rem .85rem;
    font-size: .85rem;
    font-weight: 800
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1
}

.check-list {
    padding: 0;
    margin: 0;
    list-style: none
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: .65rem;
        margin-bottom: .95rem;
        color: var(--muted)
    }

    .check-list i {
        color: var(--brand);
        margin-top: .15rem
    }

.dashboard-shell {
    padding: 1rem;
    border-radius: 32px
}

.dashboard-sidebar {
    background: linear-gradient(180deg,#173228 0%,#214637 100%);
    border-radius: 24px;
    padding: 1.25rem;
    color: #fff;
    min-height: 100%
}

.dashboard-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .9rem;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    margin-bottom: .75rem;
    width: 100%
}

.metric-card {
    background: rgba(255,255,255,.9);
    padding: 1.2rem
}

.metric-chart {
    height: 10px;
    border-radius: 999px;
    background: #e8f3ee;
    overflow: hidden
}

    .metric-chart span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg,var(--brand),#81d8ad)
    }

.swiper {
    padding: .5rem .25rem 3rem
}

.preview-card, .testimonial-card {
    height: 100%
}

.preview-window {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(47,170,111,.10);
    height: 100%
}

.window-header {
    background: linear-gradient(90deg,#fff,#f5fbf7);
    padding: .9rem 1rem;
    border-bottom: 1px solid rgba(47,170,111,.10)
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(47,170,111,.30);
    display: inline-block;
    margin-left: 6px
}

.template-mock {
    padding: 1.35rem
}

.mock-hero {
    border-radius: 22px;
    padding: 1.4rem;
    background: linear-gradient(135deg,rgba(47,170,111,.12),rgba(47,170,111,.06)),url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=900&q=80') center/cover;
    min-height: 230px;
    position: relative;
    overflow: hidden
}

.mock-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,.96) 20%,rgba(255,255,255,.72) 60%,rgba(255,255,255,.18) 100%)
}

.mock-content {
    position: relative;
    z-index: 2
}

.mock-box {
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(180deg,#fff,#f7fbf8);
    border: 1px solid rgba(47,170,111,.10)
}

.steps-timeline {
    position: relative;
    margin-top: 2rem;
}

    .steps-timeline::before {
        content: "";
        position: absolute;
        top: 42px;
        right: 16.666%;
        left: 16.666%;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient( 90deg, rgba(47,170,111,.12), rgba(47,170,111,.45), rgba(47,170,111,.12) );
        z-index: 0;
    }

    .steps-timeline .col-lg-4 {
        position: relative;
        z-index: 1;
    }

.step-card {
    position: relative;
    text-align: center;
    padding: 3.5rem 1.5rem 1.75rem;
    border-radius: 28px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(47,170,111,.12);
    box-shadow: 0 20px 50px rgba(21,40,31,.07);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .step-card:hover {
        transform: translateY(-8px);
        border-color: rgba(47,170,111,.24);
        box-shadow: 0 28px 60px rgba(21,40,31,.12);
    }

.step-number {
    position: absolute;
    top: -22px;
    right: 50%;
    transform: translateX(50%);
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 28px rgba(47,170,111,.24), 0 0 0 8px rgba(47,170,111,.08);
    z-index: 3;
}

    .step-number::after {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 28px;
        border: 1px dashed rgba(47,170,111,.22);
    }

.step-card .icon-box {
    margin-top: .5rem;
}

.step-card h5 {
    margin-top: .5rem;
    margin-bottom: .75rem;
}

.step-card p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.step-arrow {
    display: none !important;
}

@media (max-width: 991.98px) {
    .steps-timeline::before {
        display: none;
    }

    .steps-timeline .col-lg-4 {
        margin-bottom: 1.5rem;
    }

    .step-card {
        padding: 3.25rem 1.25rem 1.5rem;
    }

    .step-number {
        width: 58px;
        height: 58px;
        font-size: 1.05rem;
    }
}
.moving-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    background: radial-gradient(circle,rgba(47,170,111,.22),rgba(47,170,111,0) 68%);
    animation: circleMove 12s linear infinite
}

    .moving-circle::after {
        content: "";
        position: absolute;
        inset: 20%;
        border-radius: 50%;
        border: 1px solid rgba(47,170,111,.18)
    }

    .moving-circle.c1 {
        width: 120px;
        height: 120px;
        top: 10%;
        left: 5%
    }

    .moving-circle.c2 {
        width: 170px;
        height: 170px;
        bottom: 10%;
        right: 10%;
        animation-duration: 16s
    }

    .moving-circle.c3 {
        width: 90px;
        height: 90px;
        top: 48%;
        right: 18%;
        animation-duration: 10s;
        animation-direction: reverse
    }

.testimonial-card img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 22px;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(47,170,111,.14)
}

.quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.swiper-pagination-bullet-active {
    background: var(--brand)
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem
}

.creative-contact {
    background: linear-gradient(135deg,#ffffff,#f3fbf7)
}

.form-control, .form-select {
    border-radius: 14px;
    padding: .95rem 1rem;
    border: 1px solid rgba(33,80,59,.14);
    transition: border-color .25s ease,box-shadow .25s ease,transform .2s ease
}

    .form-control:focus, .form-select:focus {
        border-color: rgba(47,170,111,.26);
        box-shadow: 0 0 0 .25rem rgba(47,170,111,.12);
        transform: translateY(-1px)
    }

.cta-card {
    background: linear-gradient(135deg,rgba(255,255,255,.94),rgba(234,248,241,.90));
    text-align: center;
    padding: 2rem
}

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(.985);
    filter: blur(4px);
    transition: opacity .85s ease,transform .85s ease,filter .85s ease
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0)
    }

footer {
    margin-top: 4rem;
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    background: linear-gradient(135deg,#10241c 0%,#183328 100%);
    color: rgba(255,255,255,.84);
    position: relative;
    overflow: hidden
}

    footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right,rgba(47,170,111,.14),transparent 20%);
        pointer-events: none
    }

.rich-footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem
}

.footer-mini-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 1rem;
    height: 100%
}

.footer-link {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    display: inline-block;
    margin-bottom: .55rem
}

    .footer-link:hover {
        color: #fff
    }

.footer-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
    margin-left: .5rem
}

    .footer-social:hover {
        background: var(--brand);
        color: #fff;
        transform: translateY(-2px)
    }

@keyframes gridMove {
    0% {
        background-position: 0 0,0 0
    }

    100% {
        background-position: 120px 120px,0 0
    }
}

@keyframes slideText {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    25% {
        transform: translateY(-6px);
        opacity: .86
    }

    50% {
        transform: translateY(0);
        opacity: 1
    }

    75% {
        transform: translateY(6px);
        opacity: .86
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes circleMove {
    0% {
        transform: translate(0,0) scale(1) rotate(0deg)
    }

    25% {
        transform: translate(24px,-18px) scale(1.08) rotate(45deg)
    }

    50% {
        transform: translate(48px,-34px) scale(.94) rotate(90deg)
    }

    75% {
        transform: translate(18px,14px) scale(1.05) rotate(135deg)
    }

    100% {
        transform: translate(0,0) scale(1) rotate(180deg)
    }
}

@keyframes floatGlow {
    0%,100% {
        transform: translateY(0) translateX(0) scale(1)
    }

    50% {
        transform: translateY(16px) translateX(-10px) scale(1.04)
    }
}

@keyframes blockFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes pulseDot {
    0%,100% {
        transform: scale(1);
        opacity: .6
    }

    50% {
        transform: scale(1.35);
        opacity: 1
    }
}

@keyframes floatSoft {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes pulseHero {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(47,170,111,.14)
    }

    50% {
        box-shadow: 0 0 0 18px rgba(47,170,111,0)
    }
}

@media (max-width:1199.98px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-showcase {
        min-height: auto
    }
}

@media (max-width:991.98px) {
    .hero {
        padding-top: 8rem
    }

    .pricing-card.featured {
        transform: none
    }

    .navbar .btn {
        width: 100%
    }

    .hero-showcase {
        min-height: auto
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .steps-timeline::before, .step-arrow {
        display: none
    }
}

@media (max-width:767.98px) {
    .hero {
        padding: 7.4rem 0 4.4rem
    }

    .section-subtitle {
        margin-bottom: 2rem
    }

    .hero h1 {
        font-size: 2.15rem
    }

    .hero-showcase {
        padding: .8rem
    }

    .feature-card, .pricing-card, .preview-card, .testimonial-card, .contact-card, .metric-card, .news-card, .step-card {
        border-radius: 22px
    }

    .hero-grid, .hero-stack {
        gap: .8rem
    }

    .app-body {
        padding: .85rem
    }

    .news-image {
        height: 180px
    }
}
.accordion-item {
    border: 1px solid var(--line);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 800;
    padding: 1.15rem 1.25rem;
    border-radius: 18px !important;
}

    .accordion-button:not(.collapsed) {
        color: var(--brand-dark);
        background: linear-gradient(135deg, var(--brand-soft), #f4fbf6);
        box-shadow: none;
    }
.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 50px -15px var(--brand-deep);
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

/*.btn-luxury {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-deep));
    border: none;
    color: white;
    border-radius: 60px;
    padding: 1.1rem 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 25px 40px -15px var(--brand-primary);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}*/

.icon-3d {
    background: linear-gradient(145deg, #ffffff, var(--brand-soft));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 30px -12px rgba(44, 164, 110, 0.2);
    transition: transform 0.2s;
}
    .icon-3d:hover {
        transform: rotate(8deg) scale(1.1);
    }

/*.section-title {
    background: linear-gradient(130deg, #1e6a46 20%,#2ca46e 60%, #0a262f 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 6s linear infinite;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}*/

/* Section animation enhancements */
.section-animate {
    position: relative;
    isolation: isolate;
}

.section-animate .section-inner-animate {
    opacity: 0;
    transform: translate3d(var(--section-shift, 0), 42px, 0) scale(.975);
    filter: blur(8px);
    transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1), filter .9s ease;
    transition-delay: var(--section-delay, 0ms);
    will-change: opacity, transform, filter;
}

.section-animate.is-visible .section-inner-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.section-animate::before,
.section-animate::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .75s ease, transform .75s ease;
}

.section-animate::before {
    inset: 12% 6% auto;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47,170,111,.14) 0%, rgba(47,170,111,0) 72%);
    filter: blur(24px);
    transform: translateY(30px) scale(.92);
    z-index: -1;
}

.section-animate::after {
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(47,170,111,.075), rgba(47,170,111,0) 46%);
    transform: scale(.985);
}

.section-animate.is-visible::before,
.section-animate.is-visible::after {
    opacity: 1;
}

.section-animate.is-visible::before {
    transform: translateY(0) scale(1);
}

.section-animate.is-visible::after {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .section-animate .section-inner-animate,
    .section-animate::before,
    .section-animate::after {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }
}
.step-card
{
    overflow:visible;
}