.rt-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.rt-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.rt-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: #f0f0f0;
    top: -150px;
    right: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.rt-hero-orb-2 {
    width: 500px;
    height: 500px;
    background: #f0f0f0;
    bottom: -200px;
    left: -100px;
    animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -20px) scale(1.15); }
}

.rt-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.rt-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: #ffcc00;
    border: 1px solid #0058a3;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

h1.rt-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--dark) !important;
    -webkit-text-fill-color: var(--dark) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: fadeInUp 1s ease-out !important;
    opacity: 1 !important;
}

h1.rt-hero-title .rt-gradient-text,
.rt-gradient-text {
    background: #0058a3 !important;
}

.rt-hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.7;
}

.rt-section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0058a3;
}

.rt-section-sub {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.6;
    margin-bottom: 3rem;
}

.rt-intro {
    padding: 5rem 0;
}

.rt-intro-box {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 2.5rem 2.5rem 2.5rem 3rem;
    background: #fffae6;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.rt-intro-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0058a3;
    border-radius: 4px 0 0 4px;
}

.rt-intro-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.rt-intro-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.rt-intro-box p:last-child {
    margin-bottom: 0;
}

.rt-intro-box strong {
    color: var(--secondary);
}

.rt-results {
    padding: 5rem 0;
    background: #ffcc00;
}

.rt-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rt-result-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.rt-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.rt-result-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 20px 60px #e8e8e8;
}

.rt-result-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rt-result-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.rt-result-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.7;
}

.rt-breakdown {
    padding: 5rem 0;
}

.rt-change-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.rt-change-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.rt-change-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--darker);
    background: #ffcc00;
    width: 56px;
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.25);
}

.rt-change-content {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.rt-change-content:hover {
    border-color: #cccccc;
    transform: translateX(4px);
}

.rt-change-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.rt-change-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

.rt-testimonial {
    padding: 5rem 0;
    background: transparent;
}

.rt-testimonial-box {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.rt-testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0058a3;
}

.rt-quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 1rem;
}

.rt-testimonial-box blockquote p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 2rem;
}

.rt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.rt-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--darker);
    font-weight: 700;
}

.rt-author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.rt-author-info span {
    font-size: 0.9rem;
    opacity: 0.6;
}

.rt-webinar-announce {
    padding: 5rem 0;
}

.rt-webinar-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 2px solid #dddddd;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.rt-webinar-badge {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    background: #e0e0e0;
    border: 1px solid #cccccc;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.rt-webinar-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #0058a3;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.rt-webinar-box > p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.rt-webinar-box > p strong {
    color: var(--secondary);
}

.rt-webinar-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rt-webinar-detail {
    text-align: center;
}

.rt-webinar-detail span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.rt-webinar-detail p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.75;
}

.rt-webinar-detail strong {
    color: var(--primary);
    display: block;
}

.rt-closing {
    padding: 5rem 0 6rem;
}

.rt-closing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.rt-closing-giveaway, .rt-closing-start {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rt-closing-giveaway {
    background: #ffffff;
    border: 2px solid #cccccc;
    animation: giveawayPulse 3s ease-in-out infinite;
}

@keyframes giveawayPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
    50% { box-shadow: 0 0 30px 0 #e0e0e0; }
}

.rt-closing-start {
    background: #ffffff;
    border: 2px solid #cccccc;
}

.rt-closing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rt-closing-giveaway h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.rt-closing-giveaway p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.rt-closing-giveaway strong {
    color: var(--primary);
}

.rt-closing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary);
    line-height: 1;
}

.rt-closing-period {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.rt-closing-start p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.rt-closing-urgency {
    text-align: center;
    margin-top: 2rem;
}

.rt-closing-urgency p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .rt-results-grid {
        grid-template-columns: 1fr;
    }

    .rt-change-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .rt-webinar-details {
        grid-template-columns: 1fr;
    }

    .rt-closing-grid {
        grid-template-columns: 1fr;
    }

    .rt-intro-box {
        padding: 2rem 1.5rem 2rem 2rem;
    }

    .rt-testimonial-box {
        padding: 2rem 1.5rem;
    }

    .rt-webinar-box {
        padding: 2rem 1.5rem;
    }
}
