@charset "UTF-8";

/* ============================================
   RedotPay Landing Page Styles
   ============================================ */

:root {
    --rp-primary: #6366f1;
    --rp-primary-light: #818cf8;
    --rp-secondary: #ec4899;
    --rp-accent: #22d3ee;
    --rp-gold: #fbbf24;
    --rp-dark-bg: #0a0a1a;
    --rp-dark-surface: #12122a;
    --rp-dark-card: #1a1a3e;
    --rp-text-primary: #ffffff;
    --rp-text-secondary: #a1a1aa;
    --rp-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --rp-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --rp-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Landing Page Wrapper */
.redotpay-landing {
    background: linear-gradient(135deg, #1a1a3e 0%, #0a0a1a 50%, #1a0a2e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   Animated Background & Particles
   ============================================ */
.rp-hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.rp-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.rp-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: rp-float 15s infinite;
}

.rp-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.rp-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 25s; }
.rp-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.rp-particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 22s; }
.rp-particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 30s; }
.rp-particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 24s; }
.rp-particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 19s; }
.rp-particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 28s; }
.rp-particle:nth-child(9) { left: 90%; animation-delay: 16s; animation-duration: 21s; }
.rp-particle:nth-child(10) { left: 95%; animation-delay: 18s; animation-duration: 26s; }

@keyframes rp-float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.rp-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: rp-pulse-glow 8s ease-in-out infinite;
}

.rp-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.15);
    top: -200px;
    right: -200px;
}

.rp-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -100px;
    left: -150px;
    animation-delay: 4s;
}

.rp-orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(34, 211, 238, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes rp-pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ============================================
   Hero Section
   ============================================ */
.rp-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 40px 80px;
    position: relative;
    z-index: 1;
}

.rp-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.rp-hero-content {
    animation: rp-fadeInUp 1s ease-out;
}

@keyframes rp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rp-primary-light);
    margin-bottom: 24px;
    animation: rp-fadeInUp 1s ease-out 0.2s both;
}

.rp-badge-icon {
    animation: rp-bounce 2s infinite;
}

@keyframes rp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.rp-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    animation: rp-fadeInUp 1s ease-out 0.3s both;
}

.rp-hero-title .rp-highlight {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rp-gradient-shift 3s ease infinite;
}

@keyframes rp-gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.rp-hero-subtitle {
    font-size: 20px;
    color: var(--rp-text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
    animation: rp-fadeInUp 1s ease-out 0.4s both;
}

.rp-hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    margin-bottom: 40px;
    animation: rp-fadeInUp 1s ease-out 0.5s both, rp-glow-pulse 2s ease-in-out infinite;
}

@keyframes rp-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.2); }
    50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.4); }
}

.rp-bonus-icon {
    font-size: 40px;
    animation: rp-spin-slow 4s linear infinite;
}

@keyframes rp-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rp-bonus-text {
    display: flex;
    flex-direction: column;
}

.rp-bonus-label {
    font-size: 14px;
    color: var(--rp-gold);
    font-weight: 500;
}

.rp-bonus-value {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.rp-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: rp-fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.rp-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.rp-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--rp-text-primary);
}

.rp-btn-outline:hover {
    border-color: var(--rp-primary);
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
}

.rp-btn-primary {
    background: var(--rp-gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.rp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
    color: #fff;
}

.rp-btn-glow {
    position: relative;
    overflow: hidden;
}

.rp-btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rp-shimmer 2s infinite;
}

@keyframes rp-shimmer {
    100% { left: 100%; }
}

.rp-btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 16px;
}

.rp-btn-huge {
    padding: 24px 56px;
    font-size: 20px;
    border-radius: 20px;
}

/* Card Visual */
.rp-hero-visual {
    position: relative;
    animation: rp-fadeInUp 1s ease-out 0.5s both;
}

.rp-card-3d-container {
    perspective: 1000px;
    position: relative;
}

.rp-card-3d {
    position: relative;
    width: 420px;
    height: 265px;
    transform-style: preserve-3d;
    animation: rp-card-float 6s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes rp-card-float {
    0%, 100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(-20px);
    }
}

.rp-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d2d5a 50%, #1a1a3e 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.rp-card-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: rp-card-shine 4s ease-in-out infinite;
}

@keyframes rp-card-shine {
    0%, 100% { transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    50% { transform: translateX(50%) translateY(50%) rotate(45deg); }
}

.rp-card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.rp-card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.rp-card-number {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.rp-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rp-card-holder {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rp-card-holder span {
    display: block;
    font-size: 16px;
    color: white;
    margin-top: 4px;
}

.rp-card-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rp-card-brand-logo {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-card-type {
    font-size: 11px;
    color: var(--rp-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating elements around card */
.rp-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.rp-float-icon {
    position: absolute;
    padding: 16px;
    background: rgba(26, 26, 62, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: rp-float-around 6s ease-in-out infinite;
}

.rp-float-icon:nth-child(1) {
    top: -20px;
    right: -40px;
    animation-delay: 0s;
}

.rp-float-icon:nth-child(2) {
    bottom: 40px;
    right: -60px;
    animation-delay: 1s;
}

.rp-float-icon:nth-child(3) {
    bottom: -30px;
    left: 40px;
    animation-delay: 2s;
}

.rp-float-icon:nth-child(4) {
    top: 60px;
    left: -50px;
    animation-delay: 1.5s;
}

@keyframes rp-float-around {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.rp-float-icon span {
    font-size: 28px;
}

/* ============================================
   Sections
   ============================================ */
.rp-section {
    padding: 120px 40px;
    position: relative;
    z-index: 1;
}

.rp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.rp-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rp-primary-light);
    margin-bottom: 20px;
}

.rp-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.rp-section-subtitle {
    font-size: 18px;
    color: var(--rp-text-secondary);
}

/* ============================================
   Features Grid
   ============================================ */
.rp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.rp-feature-card {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rp-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.rp-feature-card:hover::before {
    opacity: 1;
}

.rp-feature-icon {
    width: 72px;
    height: 72px;
    background: var(--rp-gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.rp-feature-card:nth-child(2) .rp-feature-icon {
    background: var(--rp-gradient-2);
}

.rp-feature-card:nth-child(3) .rp-feature-icon {
    background: var(--rp-gradient-3);
}

.rp-feature-card:nth-child(4) .rp-feature-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.rp-feature-card:nth-child(5) .rp-feature-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.rp-feature-card:nth-child(6) .rp-feature-icon {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.rp-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.rp-feature-desc {
    font-size: 15px;
    color: var(--rp-text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   Process Section
   ============================================ */
.rp-process-section {
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
}

.rp-process-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.rp-process-line {
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-primary) 0%, var(--rp-secondary) 50%, var(--rp-accent) 100%);
    border-radius: 2px;
    z-index: 0;
}

.rp-process-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rp-step-number {
    width: 100px;
    height: 100px;
    background: var(--rp-dark-card);
    border: 3px solid var(--rp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.4s ease;
}

.rp-step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    animation: rp-rotate-slow 10s linear infinite;
}

@keyframes rp-rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rp-process-step:hover .rp-step-number {
    background: var(--rp-primary);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.rp-step-number span {
    font-size: 36px;
}

.rp-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.rp-step-desc {
    font-size: 15px;
    color: var(--rp-text-secondary);
}

.rp-step-time {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 16px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-accent);
}

/* ============================================
   Target Cards
   ============================================ */
.rp-target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.rp-target-card {
    background: linear-gradient(135deg, var(--rp-dark-card) 0%, var(--rp-dark-surface) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.rp-target-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--rp-gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.rp-target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.rp-target-card:hover::after {
    transform: scaleX(1);
}

.rp-target-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.rp-target-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.rp-target-desc {
    font-size: 15px;
    color: var(--rp-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Video Section
   ============================================ */
.rp-video-section {
    background: linear-gradient(180deg, transparent 0%, rgba(236, 72, 153, 0.03) 50%, transparent 100%);
}

.rp-video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.rp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rp-video-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    z-index: 10;
}

.rp-live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: rp-pulse 1.5s infinite;
}

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

/* ============================================
   FAQ Section
   ============================================ */
.rp-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.rp-faq-item {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rp-faq-item:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

.rp-faq-question {
    width: 100%;
    padding: 24px 28px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--rp-text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: default;
    transition: all 0.3s ease;
}

.rp-faq-icon {
    display: none !important;
}

.rp-faq-item.active .rp-faq-icon {
    background: var(--rp-primary);
    transform: rotate(45deg);
}

.rp-faq-answer {
    max-height: 500px;
    overflow: visible;
}

.rp-faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--rp-text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   CTA Section
   ============================================ */
.rp-cta-section {
    padding: 120px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.rp-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rp-cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff;
}

.rp-cta-subtitle {
    font-size: 20px;
    color: var(--rp-text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   Scroll Animations
   ============================================ */
.rp-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rp-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.rp-reveal-delay-1 { transition-delay: 0.1s; }
.rp-reveal-delay-2 { transition-delay: 0.2s; }
.rp-reveal-delay-3 { transition-delay: 0.3s; }
.rp-reveal-delay-4 { transition-delay: 0.4s; }
.rp-reveal-delay-5 { transition-delay: 0.5s; }
.rp-reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .rp-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .rp-hero-content {
        order: 1;
    }

    .rp-hero-visual {
        order: 0;
    }

    .rp-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .rp-hero-cta {
        justify-content: center;
    }

    .rp-card-3d {
        width: 340px;
        height: 215px;
    }

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

    .rp-process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .rp-process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .rp-hero {
        padding: 40px 20px 60px;
    }

    .rp-section {
        padding: 80px 20px;
    }

    .rp-features-grid,
    .rp-target-grid {
        grid-template-columns: 1fr;
    }

    .rp-feature-card,
    .rp-target-card {
        padding: 32px 24px;
    }

    .rp-card-3d {
        width: 300px;
        height: 190px;
    }

    .rp-card-number {
        font-size: 16px;
    }

    .rp-floating-icons {
        display: none;
    }

    .rp-btn-xl {
        padding: 16px 32px;
        font-size: 16px;
    }

    .rp-btn-huge {
        padding: 20px 40px;
        font-size: 18px;
    }

    .rp-hero-bonus {
        padding: 16px 24px;
    }

    .rp-bonus-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .rp-hero-title {
        font-size: 28px;
    }

    .rp-card-3d {
        width: 280px;
        height: 175px;
    }

    .rp-step-number {
        width: 80px;
        height: 80px;
    }

    .rp-step-number span {
        font-size: 28px;
    }
}
