/* =====================================================
   VEDSOLUTIONS — GLOBAL STYLESHEET
   Fiverr-inspired: #1DBF73 green, dark navy theme
   Font: Macan (Fiverr's font) → using 'Nunito Sans' as closest match
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;1,6..12,400&display=swap');

/* ---- VARIABLES ---- */
:root {
    /* Fiverr palette */
    --green: #1DBF73;
    --green-dark: #19a463;
    --green-glow: rgba(29, 191, 115, 0.20);
    --navy: #0d1117;
    --navy2: #131a22;
    --navy3: #1a2332;
    --card-bg: #1c2535;
    --card-hover: #222e42;
    --border: rgba(255, 255, 255, 0.08);
    --border2: rgba(255, 255, 255, 0.13);
    --text: #f5f5f5;
    --text-muted: #95a3b8;
    --text-dim: #566476;
    --white: #ffffff;
    --yellow: #ffbe0b;
    --red: #ff5a5f;
    /* Layout */
    --nav-h: 70px;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --font: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--navy);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    line-height: 1.15;
    color: var(--white)
}

h1 {
    font-size: clamp(38px, 5vw, 68px);
    letter-spacing: -1.5px
}

h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    letter-spacing: -0.8px
}

h3 {
    font-size: clamp(18px, 2vw, 24px)
}

h4 {
    font-size: 18px
}

p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7
}

/* ---- LAYOUT ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 90px 0
}

.section-sm {
    padding: 60px 0
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.flex {
    display: flex
}

.flex-center {
    align-items: center;
    justify-content: center
}

.text-center {
    text-align: center
}

.text-green {
    color: var(--green)
}

/* ---- SECTION HEADER ---- */
.section-header {
    text-align: center;
    margin-bottom: 56px
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-glow);
    border: 1px solid rgba(29, 191, 115, 0.3);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 16px
}

.section-header h2 {
    margin-bottom: 14px
}

.section-header p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 17px
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .22s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap
}

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 191, 115, 0.35)
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(29, 191, 115, 0.45)
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border2)
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-glow)
}

.btn-white {
    background: #fff;
    color: var(--navy);
    font-weight: 700
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px)
}

.btn-sm {
    padding: 9px 18px;
    font-size: 13px
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px
}

/* ---- CARDS ---- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s ease;
    position: relative;
    overflow: hidden
}

.card:hover {
    background: var(--card-hover);
    border-color: rgba(29, 191, 115, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4)
}

.card-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity .3s
}

.card-glow:hover::before {
    opacity: 1
}

/* ---- BADGE ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29, 191, 115, 0.08);
    border: 1px solid rgba(29, 191, 115, 0.22);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--text-muted)
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

/* ---- STARS ---- */
.stars {
    color: var(--yellow);
    font-size: 14px;
    letter-spacing: 1px
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: all .3s ease
}

nav.scrolled {
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px
}

.logo span {
    color: var(--green)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all .2s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06)
}

.nav-links a.active {
    color: var(--green)
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center
}

.fiverr-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(29, 191, 115, 0.1);
    border: 1px solid rgba(29, 191, 115, 0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s
}

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
    flex-direction: column;
    gap: 4px
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    padding: 13px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 10px
}

.mobile-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06)
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-h)
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: rgba(29, 191, 115, .12);
    top: -200px;
    right: -150px
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 87, 255, .10);
    bottom: -100px;
    left: -150px
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(29, 191, 115, .07);
    top: 50%;
    left: 40%
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px;
}

/* ---- GIG CARD (used on gigs page) ---- */
.gig-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .28s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column
}

.gig-card:hover {
    border-color: rgba(29, 191, 115, .4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(29, 191, 115, .15)
}

.gig-thumb {
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px
}

.gig-thumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(13, 17, 23, .95))
}

.gig-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.gig-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px
}

.gig-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.45;
    margin-bottom: 10px;
    flex: 1
}

.gig-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px
}

.gig-features li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px
}

.gig-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0
}

.gig-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto
}

.gig-price {
    font-size: 13px;
    color: var(--text-muted)
}

.gig-price span {
    font-size: 18px;
    font-weight: 800;
    color: var(--white)
}

.gig-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted)
}

.gig-rating .star {
    color: var(--yellow)
}

/* ---- REVIEW CARD ---- */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px
}

.review-card:hover {
    border-color: rgba(29, 191, 115, .25)
}

.review-quote {
    font-size: 28px;
    color: var(--green);
    margin-bottom: 8px;
    opacity: .4
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1DBF73, #0057ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff
}

.review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--white)
}

.review-meta {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px
}

/* ---- PROCESS STEPS ---- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.step {
    text-align: center;
    padding: 0 24px;
    position: relative
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    right: -50%;
    height: 1px;
    background: linear-gradient(90deg, var(--green), transparent);
    z-index: 0
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 24px rgba(29, 191, 115, .35)
}

.step-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

/* ---- STATS ---- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg)
}

.stat-cell {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid var(--border)
}

.stat-cell:last-child {
    border-right: none
}

.stat-num {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), #00e5b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    line-height: 1
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600
}

/* ---- MARQUEE ---- */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--navy2);
    padding: 15px 0
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marquee 35s linear infinite;
    width: max-content
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted)
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ---- CONTACT FORM ---- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px
}

label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .3px
}

input,
textarea,
select {
    background: var(--navy3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(29, 191, 115, .15)
}

textarea {
    resize: vertical;
    min-height: 130px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

select option {
    background: var(--navy3)
}

/* ---- FOOTER ---- */
footer {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    padding: 64px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 14px
}

.footer-logo span {
    color: var(--green)
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px
}

.footer-h {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color .2s
}

.footer-links a:hover {
    color: var(--green)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim)
}

.social-row {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .2s;
    color: var(--text-muted)
}

.social-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-glow)
}

/* ---- CTA BOX ---- */
.cta-box {
    background: linear-gradient(135deg, #0d3320 0%, #0a2218 50%, #0d3320 100%);
    border: 1px solid rgba(29, 191, 115, .25);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(29, 191, 115, .08), transparent 60%);
    pointer-events: none
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 16px
}

.cta-box p {
    color: rgba(255, 255, 255, .65);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

/* ---- PAGE INDICATOR ---- */
.page-hero-spacer {
    padding-top: calc(var(--nav-h) + 60px)
}

/* ---- TOAST ---- */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 8px 24px rgba(29, 191, 115, .4)
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-cell:nth-child(2) {
        border-right: none
    }

    .stat-cell:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    .step:not(:last-child)::after {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    h1 {
        letter-spacing: -0.5px
    }

    .section {
        padding: 64px 0
    }

    .nav-links,
    .nav-actions {
        display: none
    }

    .hamburger {
        display: flex
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .cta-box {
        padding: 48px 28px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .steps {
        grid-template-columns: 1fr
    }

    .stats-row {
        grid-template-columns: 1fr 1fr
    }
}

.hero-tagline {
    font-size: clamp(44px, 6.5vw, 70px);
    font-weight: 900;
    line-height: normal;
    margin-bottom: 30px
}
.accent-grad {
    background: linear-gradient(90deg, #1DBF73, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-sec-buttons {
   display:flex;
   gap:14px;
   flex-wrap:wrap;
   justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-glow);
    border: 1px solid rgba(29, 191, 115, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.trust-val {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    display: block;
    text-align: left;
}
.trust-lbl {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    text-align: left;
}

.trust-div {
    width: 1px;
    height: 34px;
    background: var(--border)
}

.shl {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

.shl::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.shl:hover::after {
    transform: scaleX(1)
}

.shl:hover {
    border-color: rgba(29, 191, 115, .35);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .4)
}

.shl-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px
}

.shl-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px
}

.shl-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px
}

.shl-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    transition: gap .2s;
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.shl-link:hover {
    gap: 10px
}

/* about-us */
.about-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 900px 400px at 0% 50%, rgba(29, 191, 115, .07), transparent)
}
.about-hero h1{
    margin-bottom:20px;
    letter-spacing: 0;
}
.about-hero p{
    font-size:17px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.visual-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 80px rgba(29, 191, 115, .3)
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29, 191, 115, .18)
}

.ring1 {
    width: 380px;
    height: 380px;
    animation: spin 22s linear infinite
}

.ring2 {
    width: 470px;
    height: 470px;
    animation: spin 35s linear infinite reverse;
    border-style: dashed
}

@keyframes spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.float-badge {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    animation: bob 3s ease-in-out infinite
}

.fb1 {
    top: 16px;
    right: -10px;
    animation-delay: 0s
}

.fb2 {
    bottom: 32px;
    left: -20px;
    animation-delay: 1.5s
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px
}

.why-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.why-ico {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px
}

.why-ttl {
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px
}

.why-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 4px
}

.tech-badge:hover {
    border-color: var(--green);
    color: var(--green)
}

@media(max-width:768px) {
    .split {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }
}

.contact-hero {
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(29, 191, 115, .07), transparent)
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start
}

.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px
}

.cinfo-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(29, 191, 115, .1);
    border: 1px solid rgba(29, 191, 115, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.cinfo-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 4px
}

.cinfo-val {
    font-weight: 600;
    color: var(--text);
    font-size: 15px
}

.cinfo-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px
}

.free-card {
    background: rgba(29, 191, 115, .06);
    border: 1px solid rgba(29, 191, 115, .2);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 32px
}

.free-card-ttl {
    font-weight: 800;
    font-size: 15px;
    color: var(--white);
    margin-bottom: 8px
}

.free-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6
}

.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px
}

.form-title {
    font-family: var(--font);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px
}

.form-note {
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 12px
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    border-radius: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 8px 24px rgba(29, 191, 115, .4)
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

@media(max-width:900px) {
    .contact-wrap {
        grid-template-columns: 1fr
    }
}

.gigs-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.gigs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 400px at 50% 0%, rgba(29, 191, 115, .08), transparent)
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px
}

.filt {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    transition: all .2s
}

.filt:hover,
.filt.on {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

/* GIG CARD FULL */
.gc {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .28s ease
}

.gc:hover {
    border-color: rgba(29, 191, 115, .4);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .5)
}

.gc-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden
}

.gc-thumb-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, .65);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .5px
}

.gc-thumb-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    color: #fff
}

.gc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.gc-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px
}

.gc-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px
}

.gc-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1
}

.gc-feats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px
}

.gc-feats li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 7px
}

.gc-feats li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0
}

.gc-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.gc-price {
    font-size: 13px;
    color: var(--text-muted)
}

.gc-price b {
    font-size: 17px;
    font-weight: 800;
    color: var(--white)
}

.gc-cta {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: all .2s;
    cursor: pointer;
    border: none;
    font-family: var(--font)
}

.gc-cta:hover {
    background: var(--green-dark);
    transform: scale(1.04)
}

.port-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.port-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 350px at 50% 0%, rgba(29, 191, 115, .07), transparent)
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px
}

.filt {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    transition: all .2s
}

.filt:hover,
.filt.on {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.pcard {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .28s;
    display: flex;
    flex-direction: column
}

.pcard:hover {
    border-color: rgba(29, 191, 115, .4);
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .5)
}

.pcard-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden
}

.pcard-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, .88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    padding: 20px;
    text-align: center
}

.pcard:hover .pcard-overlay {
    opacity: 1
}

.pcard-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.pcard-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px
}

.pcard-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px
}

.pcard-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1
}

.pcard-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

.ptag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .06);
    color: var(--text-muted)
}

.pcard-result {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(29, 191, 115, .08);
    border: 1px solid rgba(29, 191, 115, .2);
    border-radius: 8px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600
}

.rev-hero {
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.rev-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(255, 190, 11, .06), transparent)
}

.rating-summary {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 56px
}

.big-rating {
    text-align: center
}

.big-num {
    font-size: 80px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1
}

.big-stars {
    font-size: 28px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin: 8px 0
}

.big-label {
    font-size: 14px;
    color: var(--text-muted)
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.bar-label {
    font-size: 13px;
    color: var(--text-muted);
    width: 32px;
    text-align: right;
    flex-shrink: 0
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 100px
}

.bar-count {
    font-size: 12px;
    color: var(--text-dim);
    width: 30px;
    flex-shrink: 0
}

.badges-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(29, 191, 115, .08);
    border: 1px solid rgba(29, 191, 115, .22);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px
}

.trust-pill .pi {
    font-size: 24px
}

.trust-pill-ttl {
    font-weight: 700;
    color: var(--white);
    font-size: 14px
}

.trust-pill-sub {
    font-size: 12px;
    color: var(--text-muted)
}

.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px
}

.filt {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font);
    transition: all .2s
}

.filt:hover,
.filt.on {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.rc {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .25s
}

.rc:hover {
    border-color: rgba(29, 191, 115, .25);
    transform: translateY(-3px)
}

.rc-quote {
    font-size: 30px;
    color: var(--yellow);
    opacity: .35;
    margin-bottom: 6px;
    line-height: 1
}

.rc-stars {
    color: var(--yellow);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.rc-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #fff
}

.rc-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--white)
}

.rc-meta {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px
}

.rc-service {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: rgba(29, 191, 115, .1);
    border: 1px solid rgba(29, 191, 115, .2);
    border-radius: 5px;
    padding: 3px 8px
}

@media(max-width:900px) {
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
    }

    .badges-col {
        align-items: center
    }
}
