:root {
    --white: #ffffff;
    --off-white: #f7f8fa;
    --light-gray: #f0f2f5;
    --border: #e4e7ec;
    --text-muted: #6b7280;
    --text-body: #374151;
    --text-dark: #0f1720;
    --green: #0db35a;
    --green-light: #e8f8ef;
    --green-dark: #087a3d;
    --blue: #1a6fff;
    --blue-light: #e8f0ff;
    --blue-dark: #1050c0;
    --gold: #d4a020;
    --gold-light: #fdf6e3;
    --orange: #e8620a;
    --orange-light: #fff1e8;
    --beige: #f5efe6;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.text-gold {
    color: var(--gold) !important;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    padding-left: 40px;
    height: 80px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-ghost {
    background: none;
    border: 1.5px solid var(--border);
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-primary {
    background: var(--green);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(13, 179, 90, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 4px 16px rgba(13, 179, 90, 0.35);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: background 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(212, 160, 32, 0.25);
}

.btn-gold:hover {
    background: #b5881a;
    box-shadow: 0 4px 16px rgba(212, 160, 32, 0.35);
}

.btn-primary-lg {
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(13, 179, 90, 0.3);
}

.btn-outline-lg {
    background: none;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 13px 34px;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid var(--border);
    transition: border-color 0.15s, color 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-lg:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ── HERO ── */
.hero {
    padding: 140px 40px 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(13, 179, 90, 0.15);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--green);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--light-gray);
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13px;
    color: var(--text-muted);
}

.trust-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-bg {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-light) 0%, var(--blue-light) 60%, transparent 80%);
    opacity: 0.6;
}

.hero-visual img {
    width: 380px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(13, 179, 90, 0.15));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

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

/* floating cards */
.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    white-space: nowrap;
}

.float-card-top {
    top: 40px;
    left: -20px;
    animation: float2 4s 0.5s ease-in-out infinite;
}

.float-card-bottom {
    bottom: 60px;
    right: -10px;
    animation: float2 4s 1s ease-in-out infinite;
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0)
    }

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

.fc-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3px;
}

.fc-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.fc-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 4px;
    display: inline-block;
}

.fc-green {
    background: var(--green-light);
    color: var(--green-dark);
}

.fc-blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

/* ── STATS ── */
.stats-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num span {
    color: var(--green);
}

.stat-lbl {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── SECTION COMMON ── */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.section-header {
    margin-bottom: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ── ROLES ── */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.role-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.role-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.role-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.rc-startup::after {
    background: linear-gradient(90deg, var(--green), #00c4a7);
}

.rc-startup:hover {
    border-color: rgba(13, 179, 90, 0.25);
}

.rc-investor::after {
    background: linear-gradient(90deg, var(--blue), #6040ff);
}

.rc-investor:hover {
    border-color: rgba(26, 111, 255, 0.25);
}

.rc-company::after {
    background: linear-gradient(90deg, var(--gold), var(--orange));
}

.rc-company:hover {
    border-color: rgba(212, 160, 32, 0.25);
}

.rc-seller::after {
    background: linear-gradient(90deg, var(--orange), #e8a00a);
}

.rc-seller:hover {
    border-color: rgba(232, 98, 10, 0.25);
}

.role-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.rc-startup .role-icon-wrap {
    background: var(--green-light);
}

.rc-investor .role-icon-wrap {
    background: var(--blue-light);
}

.rc-company .role-icon-wrap {
    background: var(--gold-light);
}

.rc-seller .role-icon-wrap {
    background: var(--orange-light);
}

.role-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.role-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
}

.rc-startup .tag {
    background: var(--green-light);
    color: var(--green-dark);
}

.rc-investor .tag {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.rc-company .tag {
    background: var(--gold-light);
    color: #7a5a00;
}

.rc-seller .tag {
    background: var(--orange-light);
    color: #7a3000;
}

.role-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.role-card:hover .role-arrow {
    background: var(--green-light);
    border-color: rgba(13, 179, 90, 0.3);
    color: var(--green);
}

/* ── HOW IT WORKS ── */
.how-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.step-row:last-child {
    border-bottom: none;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.step-num-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.sn-1 {
    background: var(--green-light);
    color: var(--green-dark);
    border: 1.5px solid rgba(13, 179, 90, 0.2);
}

.sn-2 {
    background: var(--blue-light);
    color: var(--blue-dark);
    border: 1.5px solid rgba(26, 111, 255, 0.2);
}

.sn-3 {
    background: var(--gold-light);
    color: var(--gold);
    border: 1.5px solid rgba(212, 160, 32, 0.2);
}

.sn-4 {
    background: var(--beige);
    color: var(--orange);
    border: 1.5px solid rgba(232, 98, 10, 0.2);
}

.step-connector {
    width: 1px;
    flex: 1;
    min-height: 20px;
    background: var(--border);
    margin-top: 6px;
}

.step-content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.price-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 32, 0.08), var(--shadow-md);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
}

.price-role-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.price-amount {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-amount sup {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    margin-top: 10px;
    color: var(--text-muted);
}

.price-period {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    margin-top: 6px;
}

.price-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.price-features li {
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
}

.price-card:nth-child(2) .check-icon {
    background: var(--green-light);
    color: var(--green);
}

.price-card:nth-child(3) .check-icon {
    background: var(--blue-light);
    color: var(--blue);
}

.price-card:nth-child(4) .check-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
    border-radius: 10px;
    padding: 13px;
    font-size: 15px;
}

.btn-green-outline {
    background: none;
    color: var(--green);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid rgba(13, 179, 90, 0.35);
    transition: background 0.15s, border-color 0.15s;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-green-outline:hover {
    background: var(--green-light);
    border-color: var(--green);
}

.btn-blue-outline {
    background: none;
    color: var(--blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px;
    border-radius: 10px;
    cursor: pointer;
    border: 1.5px solid rgba(26, 111, 255, 0.35);
    transition: background 0.15s, border-color 0.15s;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-blue-outline:hover {
    background: var(--blue-light);
    border-color: var(--blue);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--beige);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testi-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: var(--light-gray);
}

.testi-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.testi-role-tag {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.cta-box {
    background: var(--text-dark);
    border-radius: 24px;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 179, 90, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(26, 111, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.cta-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.cta-actions .btn-primary {
    white-space: nowrap;
    font-size: 15px;
    padding: 14px 32px;
}

.cta-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-align: right;
}

/* ── FOOTER ── */
footer {
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.footer-brand img {
    height: 90px;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 240px;
}

.footer-col-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.fbadge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: #fff;
}

/* ── DARK MODE ── */
body.dark-mode {
    --white: #0f1720;
    --off-white: #17202b;
    --light-gray: #1e293b;
    --border: #334155;
    --text-muted: #94a3b8;
    --text-body: #cbd5e1;
    --text-dark: #f8fafc;
    --beige: #17202b;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .float-card,
body.dark-mode .role-card,
body.dark-mode .price-card,
body.dark-mode .testi-card {
    background: var(--white);
}

body.dark-mode .cta-box {
    background: #1e293b;
}

body.dark-mode nav {
    background: rgba(15, 23, 32, 0.95);
}

body.dark-mode .tag,
body.dark-mode .fc-badge {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .role-arrow {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .hero-visual-bg {
    background: radial-gradient(circle, rgba(13, 179, 90, 0.15) 0%, rgba(26, 111, 255, 0.15) 60%, transparent 80%);
}

body.dark-mode .fc-green {
    color: #4ade80;
}

body.dark-mode .fc-blue {
    color: #60a5fa;
}

/* ── RTL SUPPORT ── */
body[dir="rtl"] {
    text-align: right;
    font-family: 'Plus Jakarta Sans', 'Sora', 'Cairo', sans-serif;
    /* Adding Cairo for Arabic if needed */
}

body[dir="rtl"] .nav-links {
    padding-right: 0;
}

body[dir="rtl"] .trust-avatars span {
    margin-left: 0;
    margin-right: -10px;
}

body[dir="rtl"] .trust-avatars span:first-child {
    margin-right: 0;
}

body[dir="rtl"] .step-row {
    grid-template-columns: 64px 1fr;
}

body[dir="rtl"] .step-left {
    align-items: center;
}

body[dir="rtl"] .hero {
    direction: rtl;
}

body[dir="rtl"] .btn-ghost,
body[dir="rtl"] .btn-primary,
body[dir="rtl"] .btn-outline-lg,
body[dir="rtl"] .btn-green-outline {
    font-family: inherit;
}