/* ===== ROOT & BASE ===== */
:root {
    --real-primary: #0d6efd;
    --real-purple: #be73ff;
    --real-green: #03cf64;
    --real-gradient: linear-gradient(to right, #0d6efd, #be73ff, #03cf64);
    --real-gradient-135: linear-gradient(135deg, #0d6efd, #be73ff, #03cf64);
    --real-dark: #0b0f1a;
    --real-soft-bg: #f4f7ff;
    --real-card-bg: #ffffff;
    --real-text: #1a1e2e;
    --real-muted: #6b7594;
    --real-border: rgba(13, 110, 253, 0.12);
    --real-shadow: 0 8px 40px rgba(13, 110, 253, 0.1);
    --real-shadow-lg: 0 20px 60px rgba(13, 110, 253, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--real-primary) #e8efff;
}

body {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--real-text);
    background: #ffffff;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e8efff;
}

::-webkit-scrollbar-thumb {
    background: var(--real-primary);
    border-radius: 10px;
}

/* ===== GRADIENT TEXT UTILITY ===== */
.real-gradient-text {
    background: var(--real-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GRADIENT BG UTILITY ===== */
.real-gradient-bg {
    background: var(--real-gradient);
}

/* ===== NAVBAR ===== */
#real-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--real-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

#real-navbar.real-scrolled {
    box-shadow: 0 4px 30px rgba(13, 110, 253, 0.1);
}

.real-brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.real-nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--real-text) !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition:
        background 0.2s,
        color 0.2s;
    text-decoration: none;
}

.real-nav-link:hover {
    background: #e8efff;
    color: var(--real-primary) !important;
}

.real-nav-cta {
    background: var(--real-primary);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 9px 22px !important;
    border-radius: 10px;
    text-decoration: none;
    transition:
        opacity 0.2s,
        transform 0.2s;
    display: inline-block;
}

.real-nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff !important;
}

/* ===== HERO ===== */
#real-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--real-soft-bg);
    padding: 80px 0 60px;
}

.real-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}

.real-hero-blob-1 {
    width: 520px;
    height: 520px;
    background: var(--real-primary);
    top: -120px;
    left: -100px;
}

.real-hero-blob-2 {
    width: 380px;
    height: 380px;
    background: var(--real-purple);
    bottom: -80px;
    right: 10%;
}

.real-hero-blob-3 {
    width: 260px;
    height: 260px;
    background: var(--real-green);
    top: 40%;
    right: 30%;
}

.real-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--real-border);
    border-radius: 50px;
    padding: 6px 16px 6px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--real-primary);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(13, 110, 253, 0.1);
}

.real-hero-badge .real-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--real-green);
    border-radius: 50%;
    display: inline-block;
    animation: real-pulse 2s infinite;
}

@keyframes real-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(3, 207, 100, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(3, 207, 100, 0);
    }
}

.real-hero-heading {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: var(--real-text);
    margin-bottom: 22px;
}

.real-hero-sub {
    font-size: 1.08rem;
    color: var(--real-muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

.real-btn-primary {
    background: var(--real-primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.real-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(13, 110, 253, 0.35);
    color: #fff;
}

.real-btn-outline {
    background: transparent;
    color: var(--real-primary);
    border: 2px solid var(--real-primary);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    z-index: 999999;
    display: inline-block;
}

.real-btn-outline:hover {
    background: var(--real-primary);
    color: #fff;
}

.real-hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.real-stat-item {
    text-align: left;
}

.real-stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}

.real-stat-label {
    font-size: 0.82rem;
    color: var(--real-muted);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Hero Visual Card */
.real-hero-visual {
    position: relative;
}

.real-hero-card-main {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--real-shadow-lg);
    border: 1px solid var(--real-border);
    position: relative;
    z-index: 2;
}

.real-hero-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--real-muted);
    margin-bottom: 18px;
}

.real-metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f4ff;
}

.real-metric-row:last-child {
    border-bottom: none;
}

.real-metric-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.real-metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.real-metric-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--real-text);
}

.real-metric-change {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

.real-up {
    background: #e6fff2;
    color: #03cf64;
}

.real-down {
    background: #fff0f0;
    color: #ff4d4d;
}

.real-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    border: 1px solid var(--real-border);
    z-index: 3;
}

.real-floating-card-1 {
    bottom: -28px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.real-floating-card-2 {
    top: -24px;
    right: -20px;
    text-align: center;
}

.real-fc-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--real-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.real-fc-label {
    font-size: 0.75rem;
    color: var(--real-muted);
    font-weight: 500;
}

.real-fc-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--real-text);
}

/* ===== SECTION HEADERS ===== */
.real-section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--real-primary);
    margin-bottom: 12px;
    display: block;
}

.real-section-heading {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--real-text);
    margin-bottom: 16px;
}

.real-section-sub {
    font-size: 1rem;
    color: var(--real-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== PARTNER/GROWTH SECTION ===== */
#real-growth {
    padding: 90px 0;
    background: #fff;
}

.real-growth-card {
    background: var(--real-soft-bg);
    border: 1px solid var(--real-border);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.real-growth-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--real-gradient);
    opacity: 0;
    transition: opacity 0.25s;
}

.real-growth-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--real-shadow);
}

.real-growth-card:hover::before {
    opacity: 1;
}

.real-growth-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--real-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.real-growth-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--real-text);
}

.real-growth-card p {
    font-size: 0.88rem;
    color: var(--real-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== SYSTEM / 3-COLUMN ===== */
#real-system {
    padding: 90px 0;
    background: var(--real-soft-bg);
}

.real-system-col {
    position: relative;
}

.real-system-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: var(--real-shadow);
    border: 1px solid var(--real-border);
    transition: transform 0.25s;
}

.real-system-card:hover {
    transform: translateY(-6px);
}

.real-system-num {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    background: var(--real-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.real-system-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--real-text);
}

.real-system-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.real-system-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--real-muted);
    padding: 8px 0;
    border-bottom: 1px solid #f0f4ff;
    font-weight: 500;
}

.real-system-list li:last-child {
    border-bottom: none;
}

.real-system-list li i {
    color: var(--real-primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

/* ===== SERVICES ===== */
#real-services {
    padding: 90px 0;
    background: #fff;
}

.real-service-card {
    background: #fff;
    border: 1.5px solid var(--real-border);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.real-service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--real-gradient);
    transition: height 0.3s;
    z-index: 0;
}

.real-service-card:hover {
    border-color: transparent;
    box-shadow: var(--real-shadow-lg);
    transform: translateY(-8px);
}

.real-service-card:hover::after {
    height: 4px;
}

.real-service-card > * {
    position: relative;
    z-index: 1;
}

.real-service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.real-service-card:hover .real-service-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.real-service-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--real-text);
}

.real-service-card p {
    font-size: 0.88rem;
    color: var(--real-muted);
    line-height: 1.75;
    margin: 0;
}

.real-icon-blue {
    background: #e8f0ff;
    color: var(--real-primary);
}

.real-icon-purple {
    background: #f4e8ff;
    color: var(--real-purple);
}

.real-icon-green {
    background: #e6fff2;
    color: var(--real-green);
}

.real-icon-pink {
    background: #ffe8f4;
    color: #ff4fa3;
}

.real-icon-orange {
    background: #fff3e8;
    color: #ff8c00;
}

/* ===== RESULTS ===== */
#real-results {
    padding: 90px 0;
    background: var(--real-gradient);
    position: relative;
    overflow: hidden;
}

#real-results::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.real-results-stat {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.real-results-number {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
}

.real-results-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}

.real-results-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 80px;
    align-self: center;
}

/* ===== WHY US ===== */
#real-why {
    padding: 90px 0;
    background: var(--real-soft-bg);
}

.real-why-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--real-border);
    transition: all 0.25s;
    align-items: flex-start;
    margin-bottom: 16px;
}

.real-why-item:hover {
    box-shadow: var(--real-shadow);
    transform: translateX(6px);
}

.real-why-num {
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--real-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.real-why-item h6 {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--real-text);
}

.real-why-item p {
    font-size: 0.86rem;
    color: var(--real-muted);
    line-height: 1.7;
    margin: 0;
}

/* Why visual */
.real-why-visual {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--real-shadow-lg);
    border: 1px solid var(--real-border);
    height: 100%;
}

.real-funnel-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.real-funnel-step-1 {
    background: #e8f0ff;
    color: var(--real-primary);
}

.real-funnel-step-2 {
    background: #f4e8ff;
    color: #9b3fff;
    margin: 0 20px;
}

.real-funnel-step-3 {
    background: #fff3e8;
    color: #e07b00;
    margin: 0 40px;
}

.real-funnel-step-4 {
    background: #e6fff2;
    color: #00a550;
    margin: 0 60px;
}

.real-funnel-arrow {
    text-align: center;
    color: var(--real-muted);
    font-size: 1.2rem;
    margin: 6px 0;
}

/* ===== CTA ===== */
#real-cta {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.real-cta-box {
    background: var(--real-soft-bg);
    border: 1px solid var(--real-border);
    border-radius: 32px;
    padding: 70px 40px;
    position: relative;
    overflow: hidden;
}

.real-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--real-gradient);
    opacity: 0.04;
}

.real-cta-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--real-gradient);
}

.real-cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.real-cta-sub {
    font-size: 1.05rem;
    color: var(--real-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.real-btn-gradient {
    background: var(--real-gradient);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
        opacity 0.2s,
        transform 0.2s;
    box-shadow: 0 8px 28px rgba(13, 110, 253, 0.25);
    z-index: 999999;
}

.real-btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(13, 110, 253, 0.3);
    color: #fff;
}

/* ===== FOOTER ===== */
#real-footer {
    background: var(--real-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 28px;
}

.real-footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.real-footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.55);
}

.real-footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.real-footer-link {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}

.real-footer-link:hover {
    color: #fff;
}

.real-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 20px;
}

.real-footer-bottom {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.real-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 1rem;
    transition:
        background 0.2s,
        color 0.2s;
    margin-right: 6px;
}

.real-social-icon:hover {
    background: var(--real-primary);
    color: #fff;
}

/* ===== ANIMATIONS ===== */
.real-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.real-fade-up.real-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.real-delay-1 {
    transition-delay: 0.1s;
}

.real-delay-2 {
    transition-delay: 0.2s;
}

.real-delay-3 {
    transition-delay: 0.3s;
}

.real-delay-4 {
    transition-delay: 0.4s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .real-hero-visual {
        margin-top: 48px;
    }

    .real-floating-card-1,
    .real-floating-card-2 {
        display: none;
    }

    .real-results-divider {
        display: none;
    }

    #real-results .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .real-why-item:hover {
        transform: translateX(0);
    }
}

@media (max-width: 767.98px) {
    .real-hero-stats {
        gap: 24px;
    }

    .real-cta-box {
        padding: 48px 24px;
    }
}
