@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Roboto:wght@400;500;700;900&display=swap');

html,
body,
body * {
    font-family: 'Tajawal', sans-serif !important;
}

.brand-en,
.brand-en * {
    font-family: 'Roboto', sans-serif !important;
}

*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --hero-bg: linear-gradient(130deg, rgba(248, 249, 251, .97) 0%, rgba(248, 249, 251, .88) 52%, rgba(199, 221, 225, .7) 100%);
    --cream: #f5f7f8;
    --white: #ffffff;
    --navy: #0e1b2e;
    --teal: #007F80;
    --teal-deep: #005a5a;
    --teal-light: #e0f4f4;
    --teal-mid: #a8d5d5;
    --gold: #c9a84c;
    --gold-light: #f5ecd4;
    --gold-pale: #fdf8ee;
    --gold-soft: #d8b968;
    --text: #0e1b2e;
    --text-muted: #6b7e8e;
    --border: #dce8ea;
    --bg-section: #f0f7f7;
    --shadow: 0 2px 20px rgba(0, 127, 128, 0.07);
    --shadow-lg: 0 8px 48px rgba(0, 127, 128, 0.11);
    --shadow-xl: 0 20px 60px rgba(0, 127, 128, 0.15);
}



html {
    scroll-behavior: smooth
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: orbrise ease-in-out forwards
}

@keyframes orbrise {
    0% {
        opacity: 0;
        transform: scale(.7)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.13) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation-duration: 1.8s;
    animation-delay: .2s
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 221, 225, 0.5) 0%, transparent 70%);
    bottom: -80px;
    right: -100px;
    animation-duration: 2s;
    animation-delay: .4s
}

.orb-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 65%);
    top: 30%;
    right: 20%;
    animation-duration: 1.6s;
    animation-delay: .6s
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.09) 0%, transparent 65%);
    bottom: 20%;
    left: 30%;
    animation-duration: 1.4s;
    animation-delay: .8s
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.pt {
    position: absolute;
    border-radius: 50%;
    animation: ptfloat linear infinite
}

@keyframes ptfloat {
    0% {
        opacity: 0;
        transform: translate(0, 0)
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: .6
    }

    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy))
    }
}

.hero {
    min-height: 100vh;
    padding: 4rem 3rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--hero-bg)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 127, 128, 0.08) 0%, rgba(201, 168, 76, 0.08) 100%);
    border: 1px solid rgba(0, 127, 128, 0.18);
    border-radius: 50px;
    padding: .45rem 1.3rem;
    font-size: 15px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    animation: fadeDown .7s ease both
}

.hero-badge span {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1.3rem;
    animation: fadeUp .8s ease .1s both
}

.hero-title .teal {
    color: var(--teal)
}

.hero-desc {
    font-size: 15.5px;
    line-height: 2;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2.2rem;
    animation: fadeUp .8s ease .2s both;
    max-width: 520px
}


.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-left: auto;
    width: fit-content;
    animation: fadeUp .8s ease .3s both
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    animation: fadeUp .8s ease .3s both;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: .9rem 2.2rem;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(0, 127, 128, 0.32);
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    transition: right .6s;
}

.btn-primary:hover::before {
    right: 100%;
}

.btn-primary:hover {
    background: var(--teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(0, 127, 128, 0.42)
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    padding: .9rem 2.2rem;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid rgba(0, 127, 128, 0.2);
    transition: all .25s;
    font-family: 'Tajawal', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(0, 127, 128, 0.05)
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    animation: fadeUp .8s ease .45s both
}

.hero-stat-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--teal)
}

.hero-stat-val.gold-v {
    color: var(--gold)
}

.hero-stat-lbl {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px
}

.hero-stat-sep {
    width: 1px;
    background: rgba(0, 127, 128, 0.15)
}

.hero-visual {
    position: relative;
    animation: fadeUp 1s ease .5s both
}

.dashboard {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(199, 221, 225, 0.6);
    overflow: hidden
}

.db-header {
    padding: 1rem 1.4rem;
    background: linear-gradient(135deg, var(--teal) 0%, #009e9f 100%);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.db-dots {
    display: flex;
    gap: 6px
}

.db-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: .85
}

.db-dot.r {
    background: #ff5f57
}

.db-dot.y {
    background: #febc2e
}

.db-dot.g {
    background: #28c840
}

.db-title-bar {
    text-align: center
}

.db-title {
    font-size: 13.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 1)
}

.db-subtitle {
    font-size: 10px;
    color: rgba(255, 255, 255, .7);
    margin-top: 1px
}

.db-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: #a8ffd5;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 10px;
    border-radius: 20px
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite
}

@keyframes pulse-dot {

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

    50% {
        opacity: .4;
        transform: scale(.6)
    }
}

.db-body {
    padding: 1.2rem;
    background: rgba(248, 252, 252, 0.8)
}

.db-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-bottom: .8rem
}

.db-icon-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(199, 221, 225, 0.7);
    border-radius: 14px;
    padding: .9rem;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.db-icon-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.07) 0%, transparent 70%);
    border-radius: 50%
}

.db-icon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 127, 128, 0.1);
    border-color: rgba(0, 127, 128, 0.25)
}

.db-icon-card .ic-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: .3px
}

.db-icon-card .ic-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--teal);
    margin-top: 3px;
    line-height: 1
}

.db-revenue {
    background: linear-gradient(135deg, rgba(0, 127, 128, 0.07) 0%, rgba(201, 168, 76, 0.07) 100%);
    border: 1.5px solid rgba(0, 127, 128, 0.14);
    border-radius: 14px;
    padding: .9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .8rem;
    transition: all .3s
}

.db-revenue:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 127, 128, 0.09)
}

.db-revenue .rev-label {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500
}

.db-revenue .rev-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy)
}

.db-revenue .rev-change {
    font-size: 11px;
    color: #16a34a;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(34, 197, 94, 0.08);
    padding: 3px 8px;
    border-radius: 20px
}

.db-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: .8rem
}

.db-metric {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(199, 221, 225, 0.6);
    border-radius: 11px;
    padding: .7rem .6rem;
    text-align: center
}

.db-metric .m-val {
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy)
}

.db-metric .m-lbl {
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500
}

.db-metric .m-badge {
    font-size: 8.5px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    margin-top: 3px;
    display: inline-block
}

.db-pipe-label {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .6rem
}

.db-pipe-row {
    display: flex;
    flex-direction: column;
    gap: .38rem
}

.pipe-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(199, 221, 225, 0.5);
    transition: all .25s;
    animation: slideInCard .5s ease both
}

.pipe-item:hover {
    background: rgba(0, 127, 128, 0.04);
    border-color: rgba(0, 127, 128, 0.15)
}

@keyframes slideInCard {
    from {
        opacity: 0;
        transform: translateY(6px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pipe-item .pi-order {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--navy)
}

.pipe-item .pi-detail {
    font-size: 9.5px;
    color: var(--text-muted)
}

.pipe-item .pi-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px
}

.pipe-item .pi-amount {
    font-size: 12px;
    font-weight: 900;
    color: var(--teal)
}

.pb-prep {
    background: rgba(0, 127, 128, 0.08);
    color: var(--teal)
}

.pb-new {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6
}

.pb-done {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: .8rem 1rem;
    box-shadow: 0 10px 36px rgba(0, 127, 128, 0.14);
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--navy);
    z-index: 10;
    border: 1px solid rgba(199, 221, 225, 0.6)
}

.float-card-1 {
    top: -22px;
    left: -38px;
    animation: floatCard 4s ease-in-out infinite alternate
}

.float-card-2 {
    bottom: -20px;
    right: -32px;
    animation: floatCard 5s ease-in-out infinite alternate-reverse;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

@keyframes floatCard {
    0% {
        transform: translateY(0)
    }

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

.float-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fi-teal {
    background: rgba(0, 127, 128, 0.1)
}

.fi-gold {
    background: rgba(201, 168, 76, 0.12)
}


.kpi-strip {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem;
}

.kpi-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 127, 128, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.kpi-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.kpi-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.kpi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 127, 128, 0.08) 0%, rgba(201, 168, 76, 0.08) 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    padding: .45rem 1.3rem;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.kpi-eyebrow .diamond {
    color: var(--gold);
    font-size: 13px;
}

.kpi-main-title {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.35;
}

.kpi-main-title .accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.kpi-main-title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(201, 168, 76, 0.18);
    z-index: -1;
    border-radius: 4px;
}

.kpi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.kpi-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0, 127, 128, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s ease;
}

.kpi-card::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .4s;
}

.kpi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow: 0 20px 50px rgba(0, 127, 128, 0.1), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.kpi-card:hover::before {
    transform: scaleX(1);
}

.kpi-card:hover::after {
    opacity: 1;
}

.kpi-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 127, 128, 0.1) 0%, rgba(0, 127, 128, 0.05) 100%);
    border: 1px solid rgba(0, 127, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    position: relative;
    transition: all .4s;
}

.kpi-card-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.kpi-card:hover .kpi-card-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #009e9f 100%);
    border-color: transparent;
    transform: rotate(-6deg) scale(1.05);
}

.kpi-card:hover .kpi-card-icon svg {
    stroke: white;
}

.kpi-card-icon svg {
    transition: stroke .4s;
}

.kpi-card-gold-dot {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    opacity: .7;
}

.kpi-card-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: .5rem;
    letter-spacing: -0.5px;
    line-height: 1;
}

.kpi-card-val .gold-accent {
    color: var(--gold);
}

.kpi-card-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin-bottom: .75rem;
    transition: width .4s;
}

.kpi-card:hover .kpi-card-line {
    width: 50px;
}

.kpi-card-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 500;
}

section {
    padding: 6rem 3rem;
    position: relative
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.sec-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.sec-eyebrow::before,
.sec-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-mid), transparent);
}

.sec-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3
}

.sec-title .gold-word {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.sec-desc {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    line-height: 2;
    max-width: 620px;
    margin: 0 auto 4rem;
    font-weight: 400
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-l.in {
    opacity: 1;
    transform: translateX(0)
}

.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-r.in {
    opacity: 1;
    transform: translateX(0)
}

.d1 {
    transition-delay: .1s !important
}

.d2 {
    transition-delay: .2s !important
}

.d3 {
    transition-delay: .3s !important
}

.d4 {
    transition-delay: .4s !important
}

.d5 {
    transition-delay: .5s !important
}

.about-section {
    background: var(--white);
    overflow: hidden
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.about-text h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.2rem;
    line-height: 1.35
}

.about-text h3 .g-accent {
    color: var(--gold);
}

.about-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 2
}

.about-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.about-stat-card {
    background: var(--bg-section);
    border: 1.5px solid rgba(0, 127, 128, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.about-stat-card.gold-card {
    border-color: rgba(201, 168, 76, 0.2);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(245, 236, 212, 0.1) 100%);
}

.about-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 127, 128, 0.25)
}

.about-stat-card.gold-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.1);
}

.about-stat-card .val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal)
}

.about-stat-card .val.gold-val {
    color: var(--gold)
}

.about-stat-card .lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px
}

.features-section {
    background: var(--bg-section);
    overflow: hidden
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto
}

.feat-card {
    background: var(--white);
    border: 1.5px solid rgba(0, 127, 128, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    cursor: default
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s
}

.feat-card:hover {
    border-color: rgba(0, 127, 128, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 127, 128, 0.09)
}

.feat-card:hover::after {
    transform: scaleX(1)
}

.feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 127, 128, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: all .35s
}

.feat-card:hover .feat-icon {
    background: var(--teal);
    transform: scale(1.05)
}

.feat-card:hover .feat-icon svg {
    stroke: white
}

.feat-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .6rem
}

.feat-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9
}


.journey-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 127, 128, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.journey-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.journey-curve {
    position: absolute;
    width: 100%;
    height: 100%;
}

.journey-curve svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.journey-curve-path-1 {
    fill: none;
    stroke: url(#journeyGrad1);
    stroke-width: 2;
    stroke-dasharray: 8 6;
    opacity: .35;
    animation: dashMove 20s linear infinite;
}

.journey-curve-path-2 {
    fill: none;
    stroke: url(#journeyGrad2);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    opacity: .3;
    animation: dashMove 28s linear infinite reverse;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -120;
    }
}

.j-float-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: jFloat ease-in-out infinite alternate;
}

.j-fc-1 {
    width: 180px;
    height: 180px;
    top: 12%;
    left: 8%;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.1) 0%, transparent 70%);
    animation-duration: 6s;
}

.j-fc-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    right: 10%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    animation-duration: 5s;
    animation-delay: 1s;
}

.j-fc-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    animation-duration: 7s;
    animation-delay: 2s;
}

.j-fc-4 {
    width: 80px;
    height: 80px;
    top: 35%;
    right: 25%;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.09) 0%, transparent 70%);
    animation-duration: 4s;
    animation-delay: .5s;
}

@keyframes jFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -25px) scale(1.1);
    }
}

.j-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(0, 127, 128, 0.15);
    pointer-events: none;
    animation: jRingSpin linear infinite;
}

.j-ring-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -40px;
    animation-duration: 50s;
}

.j-ring-2 {
    width: 160px;
    height: 160px;
    bottom: -40px;
    left: -30px;
    border-color: rgba(201, 168, 76, 0.2);
    border-style: dotted;
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes jRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.j-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: jDotMove ease-in-out infinite;
}

@keyframes jDotMove {

    0%,
    100% {
        transform: translateY(0);
        opacity: .4;
    }

    50% {
        transform: translateY(-25px);
        opacity: 1;
    }
}

.journey-section .container {
    position: relative;
    z-index: 2;
}

.journey-content {
    position: relative;
    z-index: 1;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.journey-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.4
}

.journey-text h3 .g-accent {
    color: var(--gold);
}

.journey-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 2
}

.journey-steps {
    display: flex;
    flex-direction: column;
    position: relative
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 29px;
    width: 2px;
    background: linear-gradient(180deg, var(--teal-mid), rgba(0, 127, 128, 0.1))
}

.j-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 0;
    position: relative
}

.j-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all .4s;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(0, 127, 128, 0.07)
}

.j-step.active .j-num {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 127, 128, 0.32)
}

.j-step.completed .j-num {
    background: rgba(0, 127, 128, 0.08);
    color: var(--teal);
    border-color: rgba(0, 127, 128, 0.2)
}

.j-info {
    padding-top: .6rem
}

.j-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .3rem
}

.j-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.8
}

.funnel-section {
    background: var(--bg-section);
    overflow: hidden
}

.funnel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.funnel-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.4
}

.funnel-text h3 .g-accent {
    color: var(--gold);
}

.funnel-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 2
}

.funnel-visual {
    display: flex;
    flex-direction: column;
    align-items: center
}

.funnel-bar {
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--white);
    transition: all .35s;
    margin-bottom: 6px;
    position: relative;
    cursor: default
}

.funnel-bar:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12)
}

.funnel-bar .f-count {
    position: absolute;
    left: -60px;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy)
}

.channels-section {
    background: var(--white);
    overflow: hidden
}

.channels-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.channels-inner>div:first-child {
    align-self: center;
}

.channels-inner .crm-mock {
    align-self: center;
}

.channels-list {
    display: flex;
    flex-direction: column;
    gap: .85rem
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-section);
    border: 1.5px solid rgba(0, 127, 128, 0.08);
    border-radius: 14px;
    transition: all .3s;
    cursor: default
}

.channel-item:hover {
    background: rgba(0, 127, 128, 0.06);
    border-color: rgba(0, 127, 128, 0.2);
    transform: translateX(-5px)
}

.ch-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ch-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy)
}

.ch-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.6
}

.crm-mock {
    background: var(--white);
    border-radius: 22px;
    border: 1.5px solid rgba(0, 127, 128, 0.1);
    box-shadow: var(--shadow-xl);

    overflow: hidden
}

.crm-mock-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.crm-mock-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--white)
}

.crm-body {
    padding: 1.25rem
}

.crm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-bottom: 1.1rem
}

.crm-stat {
    padding: .7rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border)
}

.crm-stat-val {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy)
}

.crm-stat-lbl {
    font-size: 9.5px;
    color: var(--text-muted);
    margin-top: 2px
}

.contact-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .75rem;
    background: var(--bg-section);
    border-radius: 10px;
    margin-bottom: .55rem;
    transition: background .2s
}

.contact-row:hover {
    background: rgba(0, 127, 128, 0.06)
}

.contact-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white)
}

.contact-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy)
}

.contact-co {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 1px
}

.contact-badge {
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: .3px
}

.cb-hot {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626
}

.cb-warm {
    background: rgba(234, 179, 8, 0.08);
    color: #ca8a04
}

.cb-won {
    background: rgba(34, 197, 94, 0.08);
    color: #16a34a
}

.cb-new {
    background: rgba(0, 127, 128, 0.08);
    color: var(--teal)
}

.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem;
    background: var(--white);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orbit-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 900px;
    max-height: 100%;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 127, 128, 0.12);
    transform: translate(-50%, -50%);
}

.orbit-ring-1 {
    width: 280px;
    height: 280px;
    animation: orbitSpin 40s linear infinite;
}

.orbit-ring-2 {
    width: 450px;
    height: 450px;
    border-color: rgba(201, 168, 76, 0.15);
    animation: orbitSpin 60s linear infinite reverse;
}

.orbit-ring-3 {
    width: 640px;
    height: 640px;
    border-color: rgba(0, 127, 128, 0.06);
    animation: orbitSpin 80s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform-origin: center;
}

.orbit-dot-1 {
    background: var(--teal);
    box-shadow: 0 0 12px rgba(0, 127, 128, 0.5);
    animation: orbitDot1 12s linear infinite;
}

.orbit-dot-2 {
    background: var(--gold);
    box-shadow: 0 0 14px rgba(201, 168, 76, 0.55);
    animation: orbitDot2 18s linear infinite;
    width: 8px;
    height: 8px;
}

.orbit-dot-3 {
    background: var(--teal);
    box-shadow: 0 0 10px rgba(0, 127, 128, 0.4);
    animation: orbitDot3 24s linear infinite reverse;
    width: 6px;
    height: 6px;
    opacity: .7;
}

@keyframes orbitDot1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(140px) rotate(-360deg);
    }
}

@keyframes orbitDot2 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(225px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(225px) rotate(-360deg);
    }
}

@keyframes orbitDot3 {
    from {
        transform: translate(-50%, -50%) rotate(0deg) translateX(320px) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg) translateX(320px) rotate(-360deg);
    }
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulseCircle ease-in-out infinite;
    pointer-events: none;
}

.pulse-c1 {
    width: 220px;
    height: 220px;
    top: 18%;
    left: 12%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    animation-duration: 5s;
}

.pulse-c2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 14%;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.1) 0%, transparent 70%);
    animation-duration: 6s;
    animation-delay: 1s;
}

.pulse-c3 {
    width: 120px;
    height: 120px;
    top: 55%;
    right: 8%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
    animation-duration: 4s;
    animation-delay: 2s;
}

.pulse-c4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(0, 127, 128, 0.08) 0%, transparent 70%);
    animation-duration: 7s;
    animation-delay: .5s;
}

@keyframes pulseCircle {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.2);
        opacity: .3;
    }
}

.sparkle {
    position: absolute;
    border-radius: 50%;
    animation: sparkleFade ease-in-out infinite;
}

@keyframes sparkleFade {

    0%,
    100% {
        opacity: 0;
        transform: scale(.3);
    }

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

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.cta-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 127, 128, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    padding: .45rem 1.3rem;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.cta-banner-badge .star {
    color: var(--gold);
    animation: starSpin 4s linear infinite;
    display: inline-block;
}

@keyframes starSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-banner h3 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: .8rem;
    line-height: 1.3;
}

.cta-banner h3 .gold-txt {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.cta-banner h3 .gold-txt::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: rgba(201, 168, 76, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.cta-banner p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.cta-banner .btn-primary {
    margin: 0 auto;
    background: linear-gradient(135deg, var(--teal) 0%, #009e9f 100%);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(0, 127, 128, 0.3);
}

.cta-banner .btn-primary:hover {
    background: var(--teal-deep);
}


.cta-section {
    background: linear-gradient(135deg, #1a3348 0%, #0f2940 55%, #143248 100%);
    padding: 6rem 3rem 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -20%;
    width: 100%;
    height: 130%;
    background: radial-gradient(circle at right center,
            rgba(199, 221, 225, 0.35) 0%,
            rgba(201, 168, 76, 0.28) 35%,
            rgba(245, 236, 212, 0.15) 55%,
            transparent 75%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.cta-teal-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px)
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 160, 160, 0.28) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    animation: cta-drift 8s ease-in-out infinite alternate
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 140, 140, 0.2) 0%, transparent 65%);
    bottom: -120px;
    left: -80px;
    animation: cta-drift 10s ease-in-out infinite alternate-reverse
}

.cta-gold-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px)
}

.cta-gold-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(216, 185, 104, 0.25) 0%, transparent 65%);
    top: 10%;
    left: 15%;
    animation: cta-drift2 7s ease-in-out infinite alternate
}

.cta-gold-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(216, 185, 104, 0.2) 0%, transparent 65%);
    bottom: 25%;
    right: 22%;
    animation: cta-drift2 9s ease-in-out infinite alternate-reverse
}

.cta-gold-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(216, 185, 104, 0.3) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cta-pulse 5s ease-in-out infinite
}

@keyframes cta-drift {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(25px, -30px)
    }
}

@keyframes cta-drift2 {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(-20px, 20px)
    }
}

@keyframes cta-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .8
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: .4
    }
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 160, 160, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 160, 160, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent)
}

.cta-pts {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.cta-pt {
    position: absolute;
    border-radius: 50%;
    animation: cta-pt-float linear infinite
}

@keyframes cta-pt-float {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    20% {
        opacity: .9
    }

    80% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: translateY(-120px)
    }
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25
}

.cta-title .gold {
    color: var(--gold-soft);
    position: relative;
    display: inline-block;

}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 2;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300
}

.cta-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 3.5rem;
    flex-wrap: wrap
}

.cta-stat {
    text-align: center;
    position: relative
}

.cta-stat::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    border-radius: 2px
}

.cta-stat-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white)
}

.cta-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px
}

.cta-sep {
    width: 1px;
    background: rgba(255, 255, 255, .12)
}

.cta-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    z-index: 3;
}

.cta-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

.cta-wave-layer-1 {
    fill: rgba(255, 255, 255, 0.04);
    animation: waveMove1 12s ease-in-out infinite;
}

.cta-wave-layer-2 {
    fill: rgba(255, 255, 255, 0.07);
    animation: waveMove2 10s ease-in-out infinite;
}

.cta-wave-layer-3 {
    fill: #006375;
}

@keyframes waveMove1 {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }
}

@keyframes waveMove2 {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.counter {
    display: inline
}

@media(max-width:900px) {


    section {
        padding: 4.5rem 1.5rem
    }

    .hero {
        padding: 7rem 1.5rem 4rem
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-visual {
        display: none
    }

    .about-grid,
    .funnel-grid,
    .channels-inner,
    .journey-content {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }

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



    .funnel-bar .f-count {
        display: none
    }

    .hero-stats {
        gap: 1.5rem
    }

    .cta-stats {
        gap: 2rem
    }

    .orbit-ring-3 {
        width: 420px;
        height: 420px;
    }

    @keyframes orbitDot3 {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateX(210px) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg) translateX(210px) rotate(-360deg);
        }
    }
}

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

    .kpi-cards {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.2rem
    }


}

.star-icon {
    color: #c9a84c !important;
}