/* Referral Page - Modern Dynamic Design */

/* CSS Variables */
:root {
    --primary-cyan: #00C2D8;
    --primary-pink: #FF2E88;
    --black: #000000;
    --white: #FFFFFF;
    --dark-bg: #0F0F15;
    --soft-gray: #F5F5F5;
    --gradient-primary: linear-gradient(135deg, #00C2D8 0%, #FF2E88 100%);
    --gradient-reverse: linear-gradient(135deg, #FF2E88 0%, #00C2D8 100%);
    --gradient-vertical: linear-gradient(180deg, #00C2D8 0%, #FF2E88 100%);
    --ref-green: #00D68F;
    --ref-gradient: linear-gradient(135deg, #00D68F 0%, #00C2D8 100%);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; color: var(--black); background-color: var(--white); }
html { scroll-behavior: smooth; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== */
/* Navbar               */
/* ==================== */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(15, 15, 21, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0.5rem 0;
    margin-right: 2rem;
    position: relative;
    z-index: 10;
}

.navbar.scrolled .navbar-brand { height: 70px; }

.navbar-logo {
    height: 70px;
    width: auto;
    max-width: 320px;
    min-width: auto;
    object-fit: contain;
    object-position: left center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(1.5) contrast(1.8) saturate(1.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 2;
}

.navbar.scrolled .navbar-logo {
    height: 65px;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4)) brightness(1.6) contrast(2) saturate(1.4);
}

.navbar-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled .navbar-brand::before { opacity: 1; }

.navbar-toggler { border: none; padding: 0.5rem; position: relative; z-index: 10; }
.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.85rem;
    margin: 0 0.8rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link.active { color: var(--primary-cyan) !important; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-cta-nav {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(0, 194, 216, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    transition: left 0.3s ease;
}

.btn-cta-nav:hover::before { left: 0; }
.btn-cta-nav span { position: relative; z-index: 1; }

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 194, 216, 0.3);
    color: var(--white);
    text-decoration: none;
}

.btn-login-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav span,
.btn-login-nav i {
    position: relative;
    z-index: 1;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    border-color: transparent;
    color: var(--white);
    text-decoration: none;
}

/* ==================== */
/* Hero Section         */
/* ==================== */
.ref-hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding-top: 120px;
    padding-bottom: 3rem;
}

.ref-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(0, 214, 143, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(0, 194, 216, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 46, 136, 0.06) 0%, transparent 70%);
    z-index: 1;
    animation: heroGradient 15s ease-in-out infinite;
}

@keyframes heroGradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.02); }
    66% { transform: translate(-15px, 10px) scale(0.98); }
}

/* Floating Icons */
.hero-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.08;
    color: var(--white);
    animation: iconFloat 12s ease-in-out infinite;
}

.hero-float-1 { top: 15%; left: 8%; font-size: 3rem; animation-delay: 0s; color: var(--ref-green); opacity: 0.15; }
.hero-float-2 { top: 25%; right: 12%; font-size: 2.5rem; animation-delay: 2s; color: var(--primary-cyan); opacity: 0.1; }
.hero-float-3 { bottom: 30%; left: 15%; font-size: 2.2rem; animation-delay: 4s; color: var(--primary-pink); opacity: 0.1; }
.hero-float-4 { bottom: 20%; right: 8%; font-size: 3rem; animation-delay: 6s; color: var(--ref-green); opacity: 0.12; }
.hero-float-5 { top: 55%; left: 50%; font-size: 1.8rem; animation-delay: 3s; opacity: 0.06; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(2deg); }
}

/* Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: particleRise 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--ref-green); }
.particle:nth-child(2) { left: 30%; animation-delay: 1.5s; background: var(--primary-cyan); }
.particle:nth-child(3) { left: 50%; animation-delay: 3s; background: var(--primary-pink); }
.particle:nth-child(4) { left: 70%; animation-delay: 4.5s; background: var(--ref-green); }
.particle:nth-child(5) { left: 85%; animation-delay: 2s; background: var(--primary-cyan); }
.particle:nth-child(6) { left: 20%; animation-delay: 5.5s; background: var(--primary-pink); }

@keyframes particleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Hero Content */
.ref-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.ref-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 214, 143, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 214, 143, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ref-green);
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 214, 143, 0.15);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.ref-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.ref-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Hero Highlight Card */
.hero-highlight {
    display: inline-block;
    position: relative;
}

.highlight-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: var(--ref-gradient);
    opacity: 0.15;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}

.highlight-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 214, 143, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.highlight-content:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 214, 143, 0.15);
}

.highlight-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--ref-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 214, 143, 0.3);
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.highlight-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.highlight-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    margin-top: 0.2rem;
}

/* ==================== */
/* Section Common       */
/* ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.section-header.light .section-badge i {
    color: var(--ref-green);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 194, 216, 0.08);
    border: 1px solid rgba(0, 194, 216, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-cyan);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-heading.light { color: var(--white); }

.section-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.55);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-desc.light { color: rgba(255, 255, 255, 0.6); }

/* ==================== */
/* How It Works         */
/* ==================== */
.how-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, #FAFAFA 100%);
}

.steps-timeline {
    position: relative;
}

.timeline-line {
    display: none;
}

.timeline-step {
    position: relative;
    text-align: center;
}

.step-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 194, 216, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step-dot span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}

.step-dot.featured {
    width: 58px;
    height: 58px;
    background: var(--ref-gradient);
    box-shadow: 0 8px 25px rgba(0, 214, 143, 0.35);
}

.step-dot::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(0, 194, 216, 0.15);
    animation: dotRing 3s ease-in-out infinite;
}

.step-dot.featured::after {
    border-color: rgba(0, 214, 143, 0.15);
}

@keyframes dotRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.step-card {
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 0 0 4px 4px;
    transition: width 0.5s ease;
}

.step-card:hover::before { width: 60%; }

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 194, 216, 0.15);
    box-shadow: 0 20px 50px rgba(0, 194, 216, 0.1);
}

.step-card.featured {
    border-color: rgba(0, 214, 143, 0.15);
    background: linear-gradient(180deg, rgba(0, 214, 143, 0.03) 0%, var(--white) 100%);
}

.step-card.featured:hover {
    border-color: rgba(0, 214, 143, 0.25);
    box-shadow: 0 20px 50px rgba(0, 214, 143, 0.12);
}

.step-card.featured::before {
    background: var(--ref-gradient);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 194, 216, 0.25);
    transition: all 0.4s ease;
}

.step-card.featured .step-icon {
    background: var(--ref-gradient);
    box-shadow: 0 8px 25px rgba(0, 214, 143, 0.25);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.88rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* ==================== */
/* Benefits Section     */
/* ==================== */
.benefits-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.benefits-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 214, 143, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 194, 216, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 214, 143, 0.06), transparent 70%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover .benefit-card-glow {
    background: radial-gradient(circle, rgba(0, 214, 143, 0.12), transparent 70%);
    transform: scale(1.5);
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 194, 216, 0.1);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 194, 216, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card > p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.benefit-list li i {
    color: var(--ref-green);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-list li {
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(4px);
}

/* ==================== */
/* Process Timeline     */
/* ==================== */
.process-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FAFAFA 0%, var(--white) 100%);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-track {
    position: relative;
    padding-left: 40px;
}

.track-line {
    position: absolute;
    top: 0;
    left: 19px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-pink), var(--ref-green));
    opacity: 0.15;
}

.process-item {
    position: relative;
    margin-bottom: 2rem;
}

.process-item:last-child { margin-bottom: 0; }

.process-dot {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 194, 216, 0.25);
    z-index: 2;
    transition: all 0.4s ease;
}

.process-dot span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
}

.process-dot.final {
    background: var(--ref-gradient);
    box-shadow: 0 6px 20px rgba(0, 214, 143, 0.3);
    width: 46px;
    height: 46px;
    left: -43px;
}

.process-item:hover .process-dot {
    transform: translateY(-50%) scale(1.15);
}

.process-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
}

.process-card:hover {
    border-color: rgba(0, 194, 216, 0.15);
    box-shadow: 0 12px 35px rgba(0, 194, 216, 0.08);
    transform: translateX(6px);
}

.process-card.final {
    border-color: rgba(0, 214, 143, 0.15);
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.03) 0%, var(--white) 100%);
}

.process-card.final:hover {
    border-color: rgba(0, 214, 143, 0.25);
    box-shadow: 0 12px 35px rgba(0, 214, 143, 0.1);
}

.process-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 194, 216, 0.1), rgba(255, 46, 136, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.process-icon i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-card.final .process-icon {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.1), rgba(0, 194, 216, 0.1));
}

.process-card.final .process-icon i {
    background: var(--ref-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-card:hover .process-icon {
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(0, 194, 216, 0.25);
}

.process-card:hover .process-icon i {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

.process-card.final:hover .process-icon {
    background: var(--ref-gradient);
    box-shadow: 0 6px 20px rgba(0, 214, 143, 0.25);
}

.process-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.process-info p {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* ==================== */
/* Footer               */
/* ==================== */
.footer-modern {
    background: #0B0B0E;
    color: #EDEDED;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00E5FF, #FF2E88, transparent);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand { max-width: 400px; }

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-logo:hover { transform: translateY(-2px); }

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-img:hover { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); }

.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: #9AA0A6;
    margin: 0;
}

.footer-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: #EDEDED;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 0.8rem; }

.footer-nav-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #00E5FF;
}

.footer-nav-link:hover {
    color: #EDEDED;
    padding-left: 20px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
    text-decoration: none;
}

.footer-nav-link:hover::before { opacity: 1; left: 0; }

.footer-social-icons { display: flex; gap: 1rem; flex-wrap: wrap; }

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #9AA0A6;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    color: #EDEDED;
    text-decoration: none;
}

.footer-social-link[data-platform="tiktok"]:hover {
    background: linear-gradient(135deg, #00E5FF, #FF2E88);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.footer-bottom { padding-top: 0; }

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        margin-bottom: 2rem;
    }
    
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p { margin: 0; font-size: 0.9rem; color: #9AA0A6; }

.footer-legal { display: flex; align-items: center; gap: 0.75rem; }

.footer-legal-link {
    color: #9AA0A6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00E5FF;
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: #EDEDED;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
    text-decoration: none;
}

.footer-legal-link:hover::after { width: 100%; }
.footer-legal-separator { color: #9AA0A6; font-size: 0.9rem; }

/* ==================== */
/* Responsive           */
/* ==================== */
@media (max-width: 992px) {
    .navbar-nav {
        background: rgba(15, 15, 21, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
        border-radius: 8px;
    }

    .nav-link:hover { background: rgba(255, 255, 255, 0.05); }

    .btn-cta-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

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

    .process-track { padding-left: 35px; }
    .process-dot { left: -35px; width: 35px; height: 35px; }
    .process-dot.final { width: 40px; height: 40px; left: -38px; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 0; }
    .navbar.scrolled { padding: 0.7rem 0; }

    .navbar-logo {
        height: 60px;
        max-width: 280px;
        min-width: 200px;
    }

    .navbar.scrolled .navbar-logo { height: 55px; }

    .ref-hero {
        min-height: 75vh;
        padding-top: 100px;
    }

    .ref-hero-title { font-size: 2.2rem; }

    .highlight-content {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .highlight-amount { font-size: 1.6rem; }

    .how-section,
    .benefits-section,
    .process-section,
    .ref-cta-section { padding: 4rem 0; }

    .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }

    .process-card {
        padding: 1.2rem 1.4rem;
        gap: 1rem;
    }

    .process-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { max-width: 100%; }
    .footer-logo-img { height: 45px; }
    .footer-nav-title { font-size: 0.95rem; margin-bottom: 1rem; }
    .footer-social-icons { gap: 0.75rem; }
    .footer-social-link { width: 45px; height: 45px; font-size: 1.2rem; }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal { justify-content: center; }
}

@media (max-width: 576px) {
    .ref-hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .ref-hero-badge { padding: 0.5rem 1rem; font-size: 0.7rem; }
    .ref-hero-title { font-size: 1.8rem; }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .highlight-text { text-align: center; }

    .step-card { padding: 1.5rem 1.2rem; }
    .step-icon { width: 50px; height: 50px; font-size: 1.3rem; }
    .step-dot { width: 42px; height: 42px; }
    .step-dot.featured { width: 48px; height: 48px; }

    .process-track { padding-left: 30px; }
    .process-dot { left: -30px; width: 30px; height: 30px; }
    .process-dot span { font-size: 0.6rem; }
    .process-dot.final { width: 34px; height: 34px; left: -32px; }

    .process-card { margin-left: 0.5rem; padding: 1rem 1.2rem; }

    .cta-title { font-size: 1.5rem; }

    .footer-modern { padding: 2.5rem 0 1.5rem; }
    .footer-logo-img { height: 40px; }
    .footer-tagline { font-size: 0.9rem; }
    .footer-social-link { width: 40px; height: 40px; font-size: 1.1rem; }
}
