:root {
    --rv-color-gold: #D4AF37;
    --rv-color-gold-light: #F3E5AB;
    --rv-color-blue-dark: #0F172A;
    --rv-color-blue-deep: #1E293B;
    --rv-color-text-main: #334155;
    --rv-color-text-light: #F8FAFC;
    --rv-font-serif: "Shippori Mincho", serif;
    --rv-font-sans: "Noto Sans JP", sans-serif;
}

/* Reset & Base */
.rv-lp-wrapper {
    font-family: var(--rv-font-sans);
    color: var(--rv-color-text-main);
    line-height: 1.8;
    background-color: #FAFAFA;
}

.rv-lp-wrapper * {
    box-sizing: border-box;
}

.rv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.rv-section-title {
    font-family: var(--rv-font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--rv-color-blue-dark);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.rv-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--rv-color-gold);
    margin: 1rem auto 0;
}

.rv-section {
    padding: 80px 0;
}

/* Hero Section */
.rv-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-color: var(--rv-color-blue-dark);
}

.rv-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.rv-hero-bg img {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rv-hero-title {
    font-family: var(--rv-font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff !important;
    /* Enforce white */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
    margin-bottom: 2rem;
    line-height: 1.4;
}

.rv-hero-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff !important;
    /* Enforce white */
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
    font-weight: 500;
}

.rv-hero-lead {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 4px solid var(--rv-color-gold);
    max-width: 800px;
    margin: 0 auto;
}

.rv-hero-lead p {
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Intro Section */
.rv-intro {
    background-color: #fff;
    text-align: center;
}

.rv-content-box p {
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Possibility Section */
.rv-possibility {
    background: linear-gradient(135deg, var(--rv-color-blue-dark) 0%, var(--rv-color-blue-deep) 100%);
    color: #fff;
}

.rv-possibility .rv-section-title {
    color: var(--rv-color-gold-light);
}

.rv-section-desc {
    text-align: center;
    margin-bottom: 3rem;
}

.rv-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.rv-check-list li {
    position: relative;
    padding-left: 2rem;
}

.rv-check-list li::before {
    content: "✔";
    color: var(--rv-color-gold);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.rv-possibility-note {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Video Section */
.rv-video {
    background-color: #F8FAFC;
    text-align: center;
}

.rv-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Discovery Section */
.rv-discovery {
    position: relative;
    color: #fff;
    background-color: #000;
    /* Fallback */
    overflow: hidden;
}

.rv-discovery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rv-discovery-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.rv-discovery .rv-subsection-title {
    font-family: var(--rv-font-serif);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--rv-color-gold-light);
}

.rv-text-columns {
    column-count: 2;
    column-gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rv-signature {
    text-align: right;
    font-family: var(--rv-font-serif);
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* Program Section */
.rv-program {
    background-color: #fff;
}

.rv-course-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rv-course-box.rv-course-private {
    border: 2px solid var(--rv-color-gold);
    background: #FFFAF0;
}

.rv-course-title {
    font-family: var(--rv-font-serif);
    font-size: 2rem;
    color: var(--rv-color-blue-dark);
    border-bottom: 2px solid var(--rv-color-gold);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.rv-step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.rv-step {
    flex: 1 1 300px;
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.rv-step-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--rv-color-blue-dark);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 20px;
}

.rv-step h4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: var(--rv-color-blue-dark);
    font-weight: 700;
}

.rv-step ul {
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.rv-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--rv-color-blue-dark);
    font-family: var(--rv-font-serif);
    margin: 1rem 0;
}

.rv-tax {
    font-size: 1rem;
    font-weight: normal;
}

.rv-button {
    display: inline-block;
    background: linear-gradient(to right, var(--rv-color-gold), #B8860B);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.rv-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}

/* Review Section */
.rv-testimonials {
    background-color: #f9f9f9;
}

.rv-testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rv-testimonial-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rv-testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--rv-color-blue-dark);
    text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
    .rv-hero-title {
        font-size: 2rem;
    }

    .rv-check-list {
        grid-template-columns: 1fr;
    }

    .rv-text-columns {
        column-count: 1;
    }

    .rv-section {
        padding: 50px 0;
    }
}

/* Additions for Contact Form 7 and Updates */

.rv-contact {
    background-color: var(--rv-color-blue-deep);
    color: #fff;
    padding: 80px 0;
}

.rv-contact .rv-section-title {
    color: var(--rv-color-gold-light);
}

.rv-contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    color: var(--rv-color-text-main);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Form 7 Styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 1rem;
    box-sizing: border-box;
}

.wpcf7 input[type="submit"] {
    background: linear-gradient(to right, var(--rv-color-gold), #B8860B);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: 2rem auto 0;
    transition: transform 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

/* Online Course Visibility */
.rv-course-box {
    /* Ensure it stands out */
    border-top: 5px solid var(--rv-color-blue-deep);
}

.rv-course-box.rv-course-private {
    border-top: 5px solid var(--rv-color-gold);
}

.rv-course-lite {
    margin-top: 2rem;
    background-color: #f0f8ff;
    border: 1px dashed var(--rv-color-blue-deep);
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
}

.rv-text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--rv-color-blue-deep);
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1rem;
}

.rv-cta-area {
    margin-top: 2rem;
    text-align: center;
}


/* New Hero Super-title */
.rv-hero-sup {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--rv-color-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Adjustments for Title hierarchy */
.rv-hero-title {
    margin-top: 0;
}

/* AI Feature Section */
.rv-ai-feature {
    background: linear-gradient(to bottom, #0F172A, #1E293B);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle tech grid background effect */
.rv-ai-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.rv-ai-feature .rv-section-title {
    color: var(--rv-color-gold-light);
    position: relative;
    z-index: 1;
}

.rv-ai-box {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.rv-ai-desc {
    text-align: center;
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: #E2E8F0;
}

.rv-ai-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.rv-ai-features li {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 2px solid var(--rv-color-gold);
    transition: transform 0.3s;
}

.rv-ai-features li:hover {
    transform: translateY(-5px);
}

.rv-ai-features h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--rv-color-gold-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-ai-icon {
    font-size: 1.5rem;
}

/* Pricing Plans Section */
.rv-plans-section {
    margin-top: 6rem;
}

.rv-plans-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.rv-plan-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.rv-plan-card:hover {
    transform: translateY(-5px);
}

.rv-plan-card.rv-plan-private {
    border: 2px solid var(--rv-color-gold);
    position: relative;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.rv-plan-header {
    background: var(--rv-color-blue-dark);
    color: #ffffff !important;
    /* Enforce white text */
    padding: 2rem;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rv-plan-private .rv-plan-header {
    background: linear-gradient(135deg, var(--rv-color-blue-dark) 0%, #364966 100%);
}

.rv-plan-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--rv-font-serif);
    line-height: 1.4;
    color: #ffffff !important;
    /* Enforce white text on dark background */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Add shadow for better legibility */
}

.rv-recommend-badge {
    background: var(--rv-color-gold);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.rv-plan-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rv-plan-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    min-height: 3em;
}

.rv-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.rv-plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.rv-plan-features li::before {
    content: "✓";
    color: var(--rv-color-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rv-plan-price {
    text-align: center;
    margin-top: auto;
    margin-bottom: 1rem;
    color: var(--rv-color-blue-dark);
}

.rv-price-val {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--rv-font-serif);
}

.rv-price-unit {
    font-size: 1rem;
    margin-left: 4px;
}

.rv-payment-methods {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.rv-button {
    text-align: center;
    margin-top: 0;
    width: 100%;
}

.rv-btn-online {
    background: #64748b;
    /* Neutral for standard */
}

.rv-btn-online:hover {
    background: #475569;
}

/* Comparison Table Section */
.rv-comparison-section {
    margin-top: 4rem;
    background: #f8fafc;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.rv-comparison-wrapper {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}

.rv-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.rv-comparison-table th,
.rv-comparison-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.rv-comparison-table th {
    background: #f1f5f9;
    font-weight: 700;
    color: var(--rv-color-blue-dark);
}

/* Header Highlights */
.rv-comparison-table th.rv-comp-highlight {
    background: var(--rv-color-blue-dark);
    color: #fff;
    border-top: 4px solid var(--rv-color-gold);
    width: 40%;
}

.rv-comp-badge {
    background: var(--rv-color-gold);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 4px;
}

.rv-comp-badge-basic {
    background: #94a3b8;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 4px;
}

/* Data Highlights */
.rv-comparison-table td.rv-comp-highlight {
    background: #fffef2;
    /* Very light gold */
    font-weight: 500;
}

.rv-comp-label {
    text-align: left !important;
    font-weight: 700;
    background: #f8fafc;
    width: 25%;
    white-space: nowrap;
}

.rv-check {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.rv-cross {
    color: #94a3b8;
    font-weight: bold;
    font-size: 1.2rem;
}

.rv-comparison-table small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .rv-comp-label {
        font-size: 0.85rem;
    }

    .rv-comparison-table th,
    .rv-comparison-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}