* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --red: #ff3b3b;
    --orange: #ff7a00;
    --dark: #0a0a0f;
    --dark2: #12121a;
    --dark3: #1a1a26;
    --surface: #1e1e2e;
    --surface2: #252538;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f8;
    --muted: #8888aa;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --fire: linear-gradient(135deg, #ff3b3b 0%, #ff7a00 100%);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--dark)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 3px
}

.gt {
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.btn-f {
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(255, 59, 59, .3);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-f:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 59, 59, .45)
}

.btn-g {
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-g:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 59, 59, .4);
    transform: translateY(-2px)
}

.gc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: transform .3s, border-color .3s, box-shadow .3s
}

.gc:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 59, 59, .3);
    box-shadow: 0 20px 50px rgba(255, 59, 59, .08)
}

.slb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 59, .1);
    border: 1px solid rgba(255, 59, 59, .25);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px
}

.ib {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 59, 59, .12), rgba(255, 122, 0, .08));
    border: 1px solid rgba(255, 59, 59, .2);
    color: var(--red);
    flex-shrink: 0;
    font-size: 22px;
    transition: all .25s
}

.gc:hover .ib {
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1)
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

@keyframes floatR {

    0%,
    100% {
        transform: translateY(0) rotate(5deg)
    }

    50% {
        transform: translateY(16px) rotate(-5deg)
    }
}

@keyframes spinS {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.af {
    animation: float 4s ease-in-out infinite
}

.afr {
    animation: floatR 5s ease-in-out infinite
}

.as {
    animation: spinS 14s linear infinite
}

.fu {
    animation: fadeUp .7s ease forwards;
    opacity: 0
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .35s
}

.d4 {
    animation-delay: .5s
}

.d5 {
    animation-delay: .65s
}

.shimline {
    background: linear-gradient(90deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .03) 100%);
    background-size: 200%;
    animation: shimmer 2s linear infinite;
    border-radius: 4px
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, .85);
    border-bottom: 1px solid var(--border);
    transition: background .3s
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    width: 230px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    font-family: 'Outfit', sans-serif
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--text)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

/* ===== MOBILE MENU ADD ===== */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

@media(max-width:600px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
              position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ff6612;
        flex-direction: column;
        gap: 18px;
        padding: 20px 50px;
        border-radius: 10px;
        margin: 20px;
        display: none;
        border-top: 1px solid rgb(255 255 255 / 76%);
    }

    .nav-links.active {
        display: flex;
        align-items: flex-start;
    }

    .nav-cta {
        display: none;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 59, 59, .22) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 50%, rgba(255, 122, 0, .12) 0%, transparent 60%), var(--dark)
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 32px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px
}

.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 36px
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px
}

.trust {
    display: flex;
    align-items: center;
    gap: 14px
}

.avatars {
    display: flex
}

.avatars span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -8px
}

.avatars span:first-child {
    margin-left: 0
}

.trust-text small {
    display: block;
    font-size: 13px;
    color: var(--muted)
}

.trust-text strong {
    color: var(--text)
}

/* scroll indicator */
.scroll-ind {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    animation: float 3s ease-in-out infinite
}

.scroll-ind span {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--red), transparent);
    border-radius: 1px
}

/* MOCKUP */
.mockup {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    margin: 0 auto
}

.mk-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border)
}

.mk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.mk-bal {
    margin: 16px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00)
}

.mk-bal p {
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 4px;
    font-weight: 500
}

.mk-bal .amount {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    font-family: 'Outfit', sans-serif
}

.mk-bal .change {
    font-size: 11px;
    color: rgba(255, 255, 255, .65);
    margin-top: 4px
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 56px;
    padding: 0 16px 12px
}

.chart-bars div {
    flex: 1;
    border-radius: 2px;
    transition: all .3s
}

.quick-acts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 16px 12px
}

.qa-item {
    background: var(--surface2);
    border-radius: 10px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s
}

.qa-item span:first-child {
    font-size: 16px
}

.qa-item:hover {
    background: rgba(255, 59, 59, .1);
    color: var(--red)
}

.mk-tx {
    padding: 0 16px 16px
}

.mk-tx-head {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .06em;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px
}

.tx-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border)
}

.tx-row:last-child {
    border-bottom: none
}

.tx-ico {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.tx-info {
    flex: 1
}

.tx-info p {
    font-size: 12px;
    font-weight: 500
}

.tx-info small {
    font-size: 10px;
    color: var(--muted)
}

.tx-amt {
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif
}

/* floating badges */
.fb {
    position: absolute;
    background: rgba(18, 18, 26, .92);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    z-index: 10
}

/* orbit ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 59, 59, .18);
    transform: translate(-50%, -50%)
}

/* STATS */
.stats {
    background: linear-gradient(90deg, var(--surface), var(--surface2));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    border-right: 1px solid var(--border)
}

.stat-item:first-child {
    padding-left: 0
}

.stat-item:last-child {
    border-right: none
}

.stat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255, 59, 59, .1);
    border: 1px solid rgba(255, 59, 59, .2);
    flex-shrink: 0
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1
}

.stat-lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

/* SECTION BASE */
section {
    position: relative;
    overflow: hidden
}

.sec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px
}

.sec-head {
    text-align: center;
    margin-bottom: 56px
}

.sec-head h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1
}

.sec-head p {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.feat-card {
    padding: 28px;
    position: relative
}

.feat-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px
}

.feat-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 16px 0 10px
}

.feat-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65
}

.feat-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity .25s
}

.feat-card:hover .feat-more {
    opacity: 1
}

/* ABOUT */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.about-visual {
    position: relative
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    z-index: 2
}

.ab-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border)
}

.ab-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 17px
}

.ab-logo-name {
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 15px
}

.ab-logo-sub {
    font-size: 11px;
    color: var(--muted)
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px
}

.metric-box {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px
}

.metric-box .mv {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1
}

.metric-box .ml {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px
}

.pb-wrap {
    margin-bottom: 10px
}

.pb-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px
}

.pb-row span:first-child {
    color: var(--muted)
}

.pb-track {
    height: 5px;
    background: var(--surface2);
    border-radius: 3px;
    overflow: hidden
}

.pb-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff3b3b, #ff7a00);
    border-radius: 3px
}

.about-dec {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
    z-index: 3
}

.about-points {
    list-style: none;
    space-y: 12px
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
    transition: all .2s;
    cursor: default
}

.about-point:hover {
    border-color: rgba(255, 59, 59, .3);
    background: rgba(255, 59, 59, .03)
}

.ap-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(74, 222, 128, .15);
    border: 1px solid rgba(74, 222, 128, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 1px
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.srv-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex
}

.srv-hov {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s;
    border-radius: 20px;
    pointer-events: none
}

.srv-card:hover .srv-hov {
    opacity: 1
}

.srv-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 14px 0 8px
}

.srv-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1
}

.srv-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    transition: gap .2s
}

.srv-card:hover .srv-link {
    gap: 10px
}

/* ticker */
.ticker-wrap {
    overflow: hidden;
    margin-top: 20px;
    padding: 16px 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px
}

.ticker-inner {
    animation: ticker 22s linear infinite;
    display: inline-block;
    white-space: nowrap
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 28px;
    font-size: 13px;
    color: var(--muted)
}

.tick-sep {
    color: rgba(255, 59, 59, .4);
    font-size: 10px
}

/* HOW IT WORKS */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start
}

.steps-wrapper {
    display: flex;
    align-items: start;
    gap: 16px;
}

/* MOBILE FIX */
@media(max-width:768px) {

    .steps-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .step-card {
        width: 100%;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        text-align: left;
    }

    .step-ico {
        margin: 0 0 12px 0;
    }

    .step-num {
        top: 10px;
        right: 10px;
    }
}

.step-card {
    padding: 24px;
    position: relative;
    text-align: center
}

.step-num {
    position: absolute;
    top: -14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    font-family: 'Outfit', sans-serif
}

.step-ico {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 59, 59, .1);
    border: 1px solid rgba(255, 59, 59, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px
}

.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 40px;
    flex-shrink: 0
}

.step-arrow {
    display: flex;
    align-items: center
}

/* GLOBAL IMPACT */
.impact-box {
    background: linear-gradient(135deg, rgba(255, 59, 59, .12), rgba(255, 122, 0, .08));
    border: 1px solid rgba(255, 59, 59, .2);
    border-radius: 28px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.impact-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 59, .07) 0%, transparent 65%);
    pointer-events: none
}

.impact-nums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 36px 0
}

.imp-num {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07)
}

.imp-num .in-ico {
    font-size: 24px;
    margin-bottom: 8px
}

.imp-num .in-val {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.imp-num .in-lbl {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px
}

.impact-box h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px
}

.impact-box>p {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto
}

/* FREELANCER */
.fl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.fl-checks {
    list-style: none;
    margin: 20px 0 32px
}

.fl-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px
}

.fl-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(74, 222, 128, .15);
    border: 1px solid rgba(74, 222, 128, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #4ade80;
    flex-shrink: 0
}

.fl-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fl-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    transition: all .25s
}

.fl-card:hover {
    border-color: rgba(255, 59, 59, .25);
    transform: translateY(-4px)
}

.fl-card .fc-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 10px
}

.fl-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif
}

.fl-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 10px
}

.fl-card .badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
    display: inline-block
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog-card {
    overflow: hidden
}

.blog-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}


.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-body {
    padding: 20px
}

.blog-cat {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted)
}

.blog-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    opacity: 0;
    transition: opacity .25s
}

.blog-card:hover .blog-more {
    opacity: 1
}

/* CTA SECTION */
.cta-wrap {
    background: linear-gradient(135deg, rgba(255, 59, 59, .12), rgba(255, 122, 0, .08));
    border: 1px solid rgba(255, 59, 59, .18);
    border-radius: 28px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-wrap h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px
}

.cta-wrap>p {
    font-size: 16px;
    color: var(--muted);
    max-width: 460px;
    margin: 0 auto 36px
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px
}

.cta-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 18px
}

/* CTA MOBILE FIX */
@media(max-width:768px) {

    section[style*="padding:60px 32px"] {
        padding: 40px 16px !important;
    }

    .cta-wrap {
        padding: 32px 20px !important;
        border-radius: 20px;
    }

    .cta-wrap h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .cta-wrap p {
        font-size: 14px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }

    .cta-btns button {
        width: 100%;
        justify-content: center;
    }

    .cta-note {
        font-size: 11px;
        line-height: 1.4;
    }

    .glow {
        display: none;
        /* mobile pe remove for clean look */
    }
}

/* FOOTER */
footer {
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 59, 59, .07) 0%, transparent 70%), var(--dark2);
    padding-top: 64px
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border)
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-flex
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 370px;
    margin-bottom: 20px
}

.nl-row {
    display: flex;
    gap: 8px
}

.nl-input {
    flex: 1;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    outline: none
}

.nl-input::placeholder {
    color: var(--muted)
}

.nl-input:focus {
    border-color: rgba(255, 59, 59, .4)
}

.nl-btn {
    background: linear-gradient(135deg, #ff3b3b, #ff7a00);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 16px;
    transition: transform .2s
}

.nl-btn:hover {
    transform: scale(1.05)
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none
}

.soc-btn:hover {
    border-color: rgba(255, 59, 59, .4);
    color: var(--red)
}

.footer-col h5 {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--text)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted)
}

.status-badge {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    background: rgba(74, 222, 128, .1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2)
}

.ssl-badge {
    font-size: 12px;
    color: var(--muted)
}

/* RESPONSIVE */
@media(max-width:900px) {

    .hero-inner,
    .about-inner,
    .fl-inner {
        grid-template-columns: 1fr
    }

    .hero-right {
        display: none
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr
    }

    .how-grid {
        grid-template-columns: 1fr 1fr
    }

    .step-connector {
        display: none
    }

    .impact-nums,
    .stats-inner,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 16px 0
    }

    .fl-inner {
        gap: 32px
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .features-grid,
    .services-grid,
    .blog-grid,
    .how-grid,
    .fl-cards {
        grid-template-columns: 1fr
    }

    .sec-inner {
        padding: 56px 20px
    }

    .impact-nums {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .about-inner {
        grid-template-columns: 1fr
    }

    .cta-wrap,
    .impact-box {
        padding: 32px 20px
    }
}