/* ============================================
   Code en ligne - Pages Styles
   ============================================ */

/* ======== HERO SECTION ======== */
.crt-hero {
    position: relative;
    background: var(--crt-gradient-hero);
    padding: var(--crt-space-32) 0 var(--crt-space-24);
    overflow: hidden;
    margin-top: calc(-1 * var(--crt-header-height));
    padding-top: calc(var(--crt-header-height) + var(--crt-space-24));
}

.crt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(124,58,237,0.1) 0%, transparent 50%);
}

.crt-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--crt-space-16);
    align-items: center;
}

.crt-hero-content {
    max-width: 600px;
}

.crt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--crt-space-2);
    padding: var(--crt-space-2) var(--crt-space-4);
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: var(--crt-radius-full);
    color: var(--crt-primary-lighter);
    font-size: var(--crt-text-sm);
    font-weight: 500;
    margin-bottom: var(--crt-space-6);
    backdrop-filter: blur(10px);
}

.crt-hero-title {
    font-size: var(--crt-text-6xl);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--crt-space-6);
}

.crt-hero-title .crt-highlight {
    background: var(--crt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crt-hero-subtitle {
    font-size: var(--crt-text-xl);
    color: var(--crt-gray-400);
    line-height: 1.7;
    margin-bottom: var(--crt-space-8);
}

.crt-hero-actions {
    display: flex;
    gap: var(--crt-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--crt-space-10);
}

.crt-hero-stats {
    display: flex;
    gap: var(--crt-space-10);
}

.crt-hero-stat-value {
    font-size: var(--crt-text-3xl);
    font-weight: 800;
    color: white;
    display: block;
}

.crt-hero-stat-label {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
}

/* Hero Visual */
.crt-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crt-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-6);
    backdrop-filter: blur(20px);
}

.crt-mockup-header {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    margin-bottom: var(--crt-space-5);
}

.crt-mockup-dots {
    display: flex;
    gap: 6px;
}

.crt-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.crt-mockup-dot:nth-child(1) { background: #ef4444; }
.crt-mockup-dot:nth-child(2) { background: #f59e0b; }
.crt-mockup-dot:nth-child(3) { background: #10b981; }

.crt-mockup-title {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-400);
    font-weight: 500;
}

.crt-mockup-question {
    background: rgba(255,255,255,0.08);
    border-radius: var(--crt-radius-lg);
    padding: var(--crt-space-5);
    margin-bottom: var(--crt-space-4);
}

.crt-mockup-q-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--crt-primary);
    color: white;
    font-size: var(--crt-text-xs);
    font-weight: 600;
    border-radius: var(--crt-radius-full);
    margin-bottom: var(--crt-space-3);
}

.crt-mockup-q-text {
    color: white;
    font-size: var(--crt-text-sm);
    font-weight: 500;
    line-height: 1.5;
}

.crt-mockup-options {
    display: flex;
    flex-direction: column;
    gap: var(--crt-space-2);
}

.crt-mockup-option {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    padding: var(--crt-space-3) var(--crt-space-4);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--crt-radius-md);
    color: var(--crt-gray-300);
    font-size: var(--crt-text-sm);
    transition: var(--crt-transition);
    cursor: pointer;
}

.crt-mockup-option:hover {
    background: rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.3);
}

.crt-mockup-option.selected {
    background: rgba(37,99,235,0.2);
    border-color: var(--crt-primary);
    color: white;
}

.crt-mockup-option.correct {
    background: rgba(16,185,129,0.2);
    border-color: var(--crt-success);
    color: var(--crt-success);
}

.crt-mockup-radio {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crt-mockup-option.selected .crt-mockup-radio,
.crt-mockup-option.correct .crt-mockup-radio {
    border-color: currentColor;
}

.crt-mockup-option.selected .crt-mockup-radio::after,
.crt-mockup-option.correct .crt-mockup-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.crt-hero-float-1, .crt-hero-float-2, .crt-hero-float-3 {
    position: absolute;
    border-radius: var(--crt-radius-lg);
    padding: var(--crt-space-3) var(--crt-space-4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: var(--crt-text-sm);
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--crt-space-2);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.crt-hero-float-1 { top: 10%; right: -20px; animation-delay: 0s; }
.crt-hero-float-2 { bottom: 20%; left: -30px; animation-delay: 1s; }
.crt-hero-float-3 { bottom: 5%; right: 10%; animation-delay: 2s; }

/* ======== ANTI-ORNIKAR SECTION ======== */
.crt-anti-section {
    padding: var(--crt-space-24) 0;
    background: var(--crt-white);
}

.crt-anti-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--crt-space-8);
    max-width: 900px;
    margin: 0 auto;
}

.crt-anti-card {
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-10);
    border: 2px solid var(--crt-gray-200);
    transition: var(--crt-transition);
}

.crt-anti-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--crt-shadow-lg);
}

.crt-anti-us {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: #bbf7d0;
}

.crt-anti-them {
    background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
    border-color: #fecaca;
}

.crt-anti-card-title {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    font-size: var(--crt-text-xl);
    font-weight: 700;
    color: var(--crt-gray-900);
    margin-bottom: var(--crt-space-6);
    padding-bottom: var(--crt-space-4);
    border-bottom: 2px solid rgba(0,0,0,0.06);
}

.crt-anti-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crt-anti-list li {
    padding: var(--crt-space-3) 0;
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-700);
    line-height: 1.6;
    position: relative;
    padding-left: var(--crt-space-6);
}

.crt-anti-list-yes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: var(--crt-text-base);
}

.crt-anti-list-no li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: var(--crt-text-base);
}

.crt-anti-list-no li {
    color: var(--crt-gray-500);
    text-decoration: line-through;
    text-decoration-color: rgba(239,68,68,0.3);
}

/* ======== FREEMIUM SECTION ======== */
.crt-freemium-section {
    padding: var(--crt-space-24) 0;
    background: var(--crt-gray-50);
}

.crt-freemium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--crt-space-8);
    max-width: 900px;
    margin: 0 auto;
}

.crt-freemium-card {
    background: var(--crt-white);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-10);
    border: 2px solid var(--crt-gray-200);
    transition: var(--crt-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.crt-freemium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--crt-shadow-lg);
}

.crt-freemium-free {
    border-color: var(--crt-gray-200);
}

.crt-freemium-premium {
    border-color: var(--crt-primary);
    box-shadow: var(--crt-shadow-glow);
}

.crt-freemium-premium:hover {
    box-shadow: var(--crt-shadow-glow-lg);
}

.crt-freemium-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--crt-space-2);
    padding: var(--crt-space-2) var(--crt-space-4);
    background: var(--crt-gray-100);
    color: var(--crt-gray-600);
    font-size: var(--crt-text-sm);
    font-weight: 600;
    border-radius: var(--crt-radius-full);
    margin-bottom: var(--crt-space-4);
    width: fit-content;
}

.crt-freemium-badge-premium {
    background: var(--crt-gradient);
    color: white;
}

.crt-freemium-price {
    font-size: var(--crt-text-5xl);
    font-weight: 900;
    color: var(--crt-gray-900);
    line-height: 1;
    margin-bottom: var(--crt-space-1);
}

.crt-freemium-premium .crt-freemium-price {
    background: var(--crt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crt-freemium-period {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
    margin-bottom: var(--crt-space-6);
}

.crt-freemium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--crt-space-8) 0;
    flex: 1;
}

.crt-freemium-features li {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    padding: var(--crt-space-3) 0;
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-700);
    border-bottom: 1px solid var(--crt-gray-100);
}

.crt-freemium-features li:last-child {
    border-bottom: none;
}

.crt-freemium-locked {
    opacity: 0.5;
}

.crt-freemium-locked span {
    text-decoration: line-through;
    color: var(--crt-gray-400);
}

/* ======== FAQ CTA ======== */
.crt-faq-cta {
    text-align: center;
    padding: var(--crt-space-12) 0 0;
}

/* ======== FEATURES SECTION ======== */
.crt-features {
    padding: var(--crt-space-24) 0;
    background: var(--crt-gray-50);
}

.crt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--crt-space-8);
}

.crt-feature-card {
    background: var(--crt-white);
    border-radius: var(--crt-radius-xl);
    padding: var(--crt-space-8);
    border: 1px solid var(--crt-gray-200);
    transition: var(--crt-transition);
    position: relative;
    overflow: hidden;
}

.crt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crt-gradient);
    transform: scaleX(0);
    transition: var(--crt-transition);
}

.crt-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--crt-shadow-lg);
    border-color: var(--crt-primary-lighter);
}

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

.crt-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-primary-50);
    color: var(--crt-primary);
    border-radius: var(--crt-radius-lg);
    margin-bottom: var(--crt-space-5);
}

.crt-feature-title {
    font-size: var(--crt-text-xl);
    font-weight: 700;
    margin-bottom: var(--crt-space-3);
    color: var(--crt-gray-900);
}

.crt-feature-desc {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
    line-height: 1.7;
}

/* ======== HOW IT WORKS ======== */
.crt-steps {
    padding: var(--crt-space-24) 0;
}

.crt-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--crt-space-6);
    position: relative;
}

.crt-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--crt-gray-200);
}

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

.crt-step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-gradient);
    color: white;
    font-weight: 800;
    font-size: var(--crt-text-xl);
    border-radius: var(--crt-radius-full);
    margin: 0 auto var(--crt-space-5);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.crt-step-title {
    font-size: var(--crt-text-lg);
    font-weight: 700;
    margin-bottom: var(--crt-space-2);
}

.crt-step-desc {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
}

/* ======== DEMO SECTION ======== */
.crt-demo-section {
    padding: var(--crt-space-24) 0;
    background: var(--crt-gradient-hero);
    position: relative;
    overflow: hidden;
}

.crt-demo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.1) 0%, transparent 70%);
}

.crt-demo-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.crt-demo-title {
    font-size: var(--crt-text-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--crt-space-4);
}

.crt-demo-subtitle {
    font-size: var(--crt-text-lg);
    color: var(--crt-gray-400);
    margin-bottom: var(--crt-space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======== TESTIMONIALS ======== */
.crt-testimonials {
    padding: var(--crt-space-24) 0;
    background: var(--crt-gray-50);
}

.crt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--crt-space-6);
}

.crt-testimonial {
    background: var(--crt-white);
    border-radius: var(--crt-radius-xl);
    padding: var(--crt-space-8);
    border: 1px solid var(--crt-gray-200);
}

.crt-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--crt-space-4);
    color: var(--crt-warning);
}

.crt-testimonial-text {
    font-size: var(--crt-text-base);
    color: var(--crt-gray-700);
    line-height: 1.7;
    margin-bottom: var(--crt-space-6);
    font-style: italic;
}

.crt-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
}

.crt-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--crt-radius-full);
    background: var(--crt-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--crt-text-sm);
}

.crt-testimonial-name {
    font-weight: 600;
    color: var(--crt-gray-900);
    font-size: var(--crt-text-sm);
}

.crt-testimonial-role {
    font-size: var(--crt-text-xs);
    color: var(--crt-gray-500);
}

/* ======== PRICING ======== */
.crt-pricing {
    padding: var(--crt-space-24) 0;
}

.crt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--crt-space-8);
    max-width: 900px;
    margin: 0 auto;
}

.crt-pricing-card {
    background: var(--crt-white);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-10);
    border: 2px solid var(--crt-gray-200);
    position: relative;
    transition: var(--crt-transition);
}

.crt-pricing-card.featured {
    border-color: var(--crt-primary);
    box-shadow: var(--crt-shadow-glow-lg);
    transform: scale(1.03);
}

.crt-pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--crt-space-2) var(--crt-space-6);
    background: var(--crt-gradient);
    color: white;
    font-size: var(--crt-text-sm);
    font-weight: 700;
    border-radius: var(--crt-radius-full);
    white-space: nowrap;
}

.crt-pricing-name {
    font-size: var(--crt-text-xl);
    font-weight: 700;
    margin-bottom: var(--crt-space-2);
}

.crt-pricing-desc {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
    margin-bottom: var(--crt-space-6);
}

.crt-pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--crt-space-1);
    margin-bottom: var(--crt-space-6);
}

.crt-pricing-amount {
    font-size: var(--crt-text-5xl);
    font-weight: 900;
    color: var(--crt-gray-900);
    line-height: 1;
}

.crt-pricing-currency {
    font-size: var(--crt-text-2xl);
    font-weight: 700;
    color: var(--crt-gray-900);
}

.crt-pricing-period {
    font-size: var(--crt-text-base);
    color: var(--crt-gray-500);
}

.crt-pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--crt-space-8);
}

.crt-pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    padding: var(--crt-space-3) 0;
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-700);
    border-bottom: 1px solid var(--crt-gray-100);
}

.crt-pricing-features li:last-child {
    border-bottom: none;
}

.crt-pricing-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-success-light);
    color: var(--crt-success);
    border-radius: var(--crt-radius-full);
    flex-shrink: 0;
}

.crt-pricing-cross {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-gray-100);
    color: var(--crt-gray-400);
    border-radius: var(--crt-radius-full);
    flex-shrink: 0;
}

/* ======== CTA BANNER ======== */
.crt-cta-banner {
    padding: var(--crt-space-20) 0;
    background: var(--crt-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.crt-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.crt-cta-banner h2 {
    color: white;
    font-size: var(--crt-text-4xl);
    font-weight: 800;
    margin-bottom: var(--crt-space-4);
    position: relative;
}

.crt-cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: var(--crt-text-lg);
    margin-bottom: var(--crt-space-8);
    position: relative;
}

.crt-cta-banner .crt-btn {
    position: relative;
}

/* ---- Lisibilité : boutons dans sections à fond gradient/dark ---- */
.crt-hero .crt-btn-outline,
.crt-cta-banner .crt-btn-outline,
.crt-hero .crt-btn[style*="color:white"],
.crt-cta-banner .crt-btn[style*="color:white"] {
    transition: all 0.2s ease;
}

.crt-hero .crt-btn-outline:hover,
.crt-cta-banner .crt-btn-outline:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.5) !important;
    color: white !important;
}

.crt-hero .crt-btn[style*="background:white"]:hover,
.crt-cta-banner .crt-btn[style*="background:white"]:hover {
    background: var(--crt-primary-50) !important;
    color: var(--crt-primary-dark) !important;
}

/* Boutons outline sur fond clair : s'assurer que le hover est lisible */
.crt-btn-outline:hover {
    border-color: var(--crt-primary);
    color: var(--crt-primary-dark);
    background: var(--crt-primary-50);
}

/* Boutons primary : hover toujours lisible */
.crt-btn-primary:hover {
    background: var(--crt-primary-dark);
    color: white;
}

/* ======== AUTH PAGE ======== */
.crt-auth-page {
    min-height: calc(100vh - var(--crt-header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--crt-space-8);
    background: var(--crt-gradient-soft);
}

.crt-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--crt-white);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-10);
    box-shadow: var(--crt-shadow-lg);
    border: 1px solid var(--crt-gray-200);
}

.crt-auth-header {
    text-align: center;
    margin-bottom: var(--crt-space-8);
}

.crt-auth-title {
    font-size: var(--crt-text-2xl);
    font-weight: 800;
    margin-bottom: var(--crt-space-2);
}

.crt-auth-subtitle {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
}

.crt-auth-tabs {
    display: flex;
    background: var(--crt-gray-100);
    border-radius: var(--crt-radius-lg);
    padding: 4px;
    margin-bottom: var(--crt-space-8);
}

.crt-auth-tab {
    flex: 1;
    padding: var(--crt-space-3);
    text-align: center;
    font-size: var(--crt-text-sm);
    font-weight: 600;
    color: var(--crt-gray-500);
    border-radius: var(--crt-radius-md);
    cursor: pointer;
    transition: var(--crt-transition);
    border: none;
    background: none;
}

.crt-auth-tab.active {
    background: var(--crt-white);
    color: var(--crt-gray-900);
    box-shadow: var(--crt-shadow-sm);
}

.crt-auth-form {
    display: none;
}

.crt-auth-form.active {
    display: block;
}

.crt-auth-divider {
    display: flex;
    align-items: center;
    gap: var(--crt-space-4);
    margin: var(--crt-space-6) 0;
    color: var(--crt-gray-400);
    font-size: var(--crt-text-sm);
}

.crt-auth-divider::before,
.crt-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--crt-gray-200);
}

.crt-auth-footer {
    text-align: center;
    margin-top: var(--crt-space-6);
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
}

.crt-auth-error {
    background: var(--crt-error-light);
    color: var(--crt-error-dark);
    padding: var(--crt-space-3) var(--crt-space-4);
    border-radius: var(--crt-radius-md);
    font-size: var(--crt-text-sm);
    margin-bottom: var(--crt-space-4);
    display: none;
}

.crt-auth-error.visible {
    display: block;
}

/* ======== LEGAL PAGES ======== */
.crt-legal-page {
    padding: var(--crt-space-16) 0;
}

.crt-legal-header {
    text-align: center;
    padding: var(--crt-space-12) 0;
    margin-bottom: var(--crt-space-8);
    border-bottom: 1px solid var(--crt-gray-200);
}

.crt-legal-header h1 {
    font-size: var(--crt-text-4xl);
    margin-bottom: var(--crt-space-3);
}

.crt-legal-date {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
}

.crt-legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--crt-text-base);
    line-height: 1.8;
    color: var(--crt-gray-700);
}

.crt-legal-content h2 {
    font-size: var(--crt-text-2xl);
    margin-top: var(--crt-space-10);
    margin-bottom: var(--crt-space-4);
    padding-bottom: var(--crt-space-3);
    border-bottom: 2px solid var(--crt-primary-100);
}

.crt-legal-content h3 {
    font-size: var(--crt-text-lg);
    margin-top: var(--crt-space-6);
    margin-bottom: var(--crt-space-3);
}

.crt-legal-content p {
    margin-bottom: var(--crt-space-4);
}

.crt-legal-content ul {
    margin-bottom: var(--crt-space-4);
    padding-left: var(--crt-space-6);
}

.crt-legal-content li {
    margin-bottom: var(--crt-space-2);
}

/* ======== ABOUT PAGE ======== */
.crt-about-hero {
    text-align: center;
    padding: var(--crt-space-20) 0 var(--crt-space-16);
    background: var(--crt-gradient-soft);
}

.crt-about-hero h1 {
    font-size: var(--crt-text-5xl);
    font-weight: 900;
    margin-bottom: var(--crt-space-4);
}

.crt-about-hero p {
    font-size: var(--crt-text-xl);
    color: var(--crt-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.crt-about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--crt-space-8);
    padding: var(--crt-space-16) 0;
}

.crt-about-value {
    text-align: center;
    padding: var(--crt-space-8);
}

.crt-about-value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-primary-50);
    color: var(--crt-primary);
    border-radius: var(--crt-radius-xl);
    margin: 0 auto var(--crt-space-5);
}

.crt-about-value h3 {
    margin-bottom: var(--crt-space-3);
}

.crt-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--crt-space-6);
    padding: var(--crt-space-16) 0;
    background: var(--crt-gray-900);
    border-radius: var(--crt-radius-2xl);
    margin: var(--crt-space-8) 0;
}

.crt-about-stats .crt-stat-value {
    color: white;
    -webkit-text-fill-color: white;
}

.crt-about-stats .crt-stat-label {
    color: var(--crt-gray-400);
}

/* ======== STATUS PAGE ======== */
.crt-status-page {
    padding: var(--crt-space-16) 0;
}

.crt-status-header {
    text-align: center;
    padding: var(--crt-space-12) 0;
}

.crt-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--crt-space-3);
    padding: var(--crt-space-3) var(--crt-space-6);
    background: var(--crt-success-light);
    color: var(--crt-success-dark);
    border-radius: var(--crt-radius-full);
    font-weight: 600;
    font-size: var(--crt-text-lg);
    margin-bottom: var(--crt-space-6);
}

.crt-status-dot {
    width: 12px;
    height: 12px;
    background: var(--crt-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.crt-status-services {
    max-width: 700px;
    margin: 0 auto;
}

.crt-status-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--crt-space-5) var(--crt-space-6);
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-lg);
    margin-bottom: var(--crt-space-3);
}

.crt-status-service-name {
    font-weight: 600;
    color: var(--crt-gray-800);
}

.crt-status-service-status {
    display: flex;
    align-items: center;
    gap: var(--crt-space-2);
    font-size: var(--crt-text-sm);
    font-weight: 500;
}

.crt-status-ok { color: var(--crt-success); }

.crt-status-uptime {
    max-width: 700px;
    margin: var(--crt-space-10) auto 0;
    text-align: center;
}

.crt-uptime-bar {
    display: flex;
    gap: 2px;
    margin-top: var(--crt-space-4);
}

.crt-uptime-day {
    flex: 1;
    height: 32px;
    background: var(--crt-success);
    border-radius: 3px;
    transition: var(--crt-transition);
}

.crt-uptime-day:hover {
    transform: scaleY(1.2);
}

/* ======== CONTACT PAGE ======== */
.crt-contact-page {
    padding: var(--crt-space-16) 0;
}

.crt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--crt-space-12);
    max-width: 1000px;
    margin: 0 auto;
}

.crt-contact-info h2 {
    margin-bottom: var(--crt-space-4);
}

.crt-contact-info p {
    margin-bottom: var(--crt-space-8);
}

.crt-contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--crt-space-4);
    margin-bottom: var(--crt-space-6);
}

.crt-contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--crt-primary-50);
    color: var(--crt-primary);
    border-radius: var(--crt-radius-lg);
    flex-shrink: 0;
}

.crt-contact-method h4 {
    font-size: var(--crt-text-base);
    margin-bottom: var(--crt-space-1);
}

.crt-contact-method p {
    font-size: var(--crt-text-sm);
    margin: 0;
}

.crt-contact-form {
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-8);
}

/* ======== PAGE HERO (small) ======== */
.crt-page-hero {
    text-align: center;
    padding: var(--crt-space-20) 0 var(--crt-space-12);
    background: var(--crt-gradient-soft);
}

.crt-page-hero-sm {
    padding: var(--crt-space-16) 0 var(--crt-space-10);
}

.crt-page-title {
    font-size: var(--crt-text-4xl);
    font-weight: 900;
    margin-bottom: var(--crt-space-3);
}

.crt-page-subtitle {
    font-size: var(--crt-text-lg);
    color: var(--crt-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ======== FAQ ======== */
.crt-faq {
    padding: var(--crt-space-24) 0;
}

.crt-faq-category {
    margin-bottom: var(--crt-space-12);
}

.crt-faq-category-title {
    display: flex;
    align-items: center;
    gap: var(--crt-space-3);
    font-size: var(--crt-text-xl);
    font-weight: 700;
    color: var(--crt-gray-900);
    margin-bottom: var(--crt-space-6);
    padding-bottom: var(--crt-space-3);
    border-bottom: 2px solid var(--crt-primary-100);
}

.crt-faq-category-title svg {
    color: var(--crt-primary);
}

/* ======== LEGAL TABLE ======== */
.crt-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--crt-space-6) 0;
    font-size: var(--crt-text-sm);
}

.crt-legal-table th,
.crt-legal-table td {
    padding: var(--crt-space-3) var(--crt-space-4);
    border: 1px solid var(--crt-gray-200);
    text-align: left;
}

.crt-legal-table th {
    background: var(--crt-gray-50);
    font-weight: 600;
    color: var(--crt-gray-800);
}

.crt-legal-table td {
    color: var(--crt-gray-600);
}

.crt-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.crt-faq-item {
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-lg);
    margin-bottom: var(--crt-space-3);
    overflow: hidden;
    transition: var(--crt-transition);
}

.crt-faq-item:hover {
    border-color: var(--crt-primary-lighter);
}

.crt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--crt-space-5) var(--crt-space-6);
    cursor: pointer;
    font-weight: 600;
    color: var(--crt-gray-800);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--crt-font);
    font-size: var(--crt-text-base);
    transition: var(--crt-transition);
}

.crt-faq-question:hover {
    color: var(--crt-primary);
}

.crt-faq-icon {
    transition: transform 0.3s ease;
    color: var(--crt-gray-400);
    flex-shrink: 0;
}

.crt-faq-item.active .crt-faq-icon {
    transform: rotate(180deg);
    color: var(--crt-primary);
}

.crt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.crt-faq-item.active .crt-faq-answer {
    max-height: 300px;
}

.crt-faq-answer-inner {
    padding: 0 var(--crt-space-6) var(--crt-space-5);
    color: var(--crt-gray-600);
    font-size: var(--crt-text-sm);
    line-height: 1.7;
}

.crt-pricing-side-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 96px;
}

.crt-pricing-side-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.35rem;
}

.crt-pricing-side-card p {
    color: var(--crt-gray-500);
}

.crt-pricing-side-summary {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.25rem;
}

.crt-pricing-side-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #f8fafc;
}

.crt-pricing-side-summary span {
    color: var(--crt-gray-500);
    font-size: 0.92rem;
}

.crt-pricing-side-summary strong {
    color: var(--crt-gray-900);
}

#crp-payment-element,
#crp-express-checkout {
    width: 100%;
}

/* ======== RICH MARKETING SECTIONS ======== */
.crt-proof-band {
    padding: var(--crt-space-10) 0 var(--crt-space-20);
    background: linear-gradient(180deg, rgba(15,23,42,0.96) 0%, rgba(15,23,42,0.04) 100%);
}
.crt-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--crt-space-4);
}
.crt-proof-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(148,163,184,0.22);
    border-radius: var(--crt-radius-xl);
    padding: var(--crt-space-6);
    box-shadow: var(--crt-shadow-md);
}
.crt-proof-label {
    display: block;
    font-size: var(--crt-text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--crt-primary);
    margin-bottom: var(--crt-space-2);
}
.crt-proof-value {
    display: block;
    font-size: var(--crt-text-2xl);
    font-weight: 800;
    color: var(--crt-gray-900);
    margin-bottom: var(--crt-space-2);
}
.crt-proof-card p { margin: 0; color: var(--crt-gray-600); line-height: 1.6; }
.crt-benefit-grid,
.crt-audience-grid,
.crt-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--crt-space-6);
}
.crt-benefit-card,
.crt-section-panel,
.crt-quote-card,
.crt-compare-card {
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-8);
    box-shadow: var(--crt-shadow-md);
}
.crt-section-soft { background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%); }
.crt-feature-wall { display: grid; gap: var(--crt-space-5); }
.crt-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: var(--crt-space-8);
    align-items: start;
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-8);
    box-shadow: var(--crt-shadow-md);
}
.crt-feature-row h3,
.crt-section-panel h3,
.crt-compare-card h3 { margin: 0 0 var(--crt-space-3); font-size: var(--crt-text-2xl); color: var(--crt-gray-900); }
.crt-feature-row p,
.crt-section-panel p,
.crt-quote-card p,
.crt-benefit-card p { margin: 0; color: var(--crt-gray-600); line-height: 1.75; }
.crt-mini-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--crt-radius-full);
    background: rgba(37,99,235,0.1);
    color: var(--crt-primary);
    font-size: var(--crt-text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--crt-space-4);
}
.crt-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--crt-space-3); }
.crt-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--crt-gray-700);
    line-height: 1.6;
}
.crt-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    box-shadow: 0 0 0 6px rgba(37,99,235,0.08);
}
.crt-checklist-muted li { color: var(--crt-gray-500); }
.crt-quote-section {
    padding: var(--crt-space-24) 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}
.crt-quote-section .crt-section-title,
.crt-quote-section .crt-section-subtitle,
.crt-quote-section .crt-section-badge { color: white; }
.crt-quote-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
}
.crt-quote-card span {
    display: inline-block;
    margin-top: var(--crt-space-4);
    color: rgba(255,255,255,0.66);
    font-size: var(--crt-text-sm);
    font-weight: 600;
}
.crt-value-stack,
.crt-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--crt-space-5);
    margin: var(--crt-space-6) 0;
}
.crt-compare-positive { background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%); border-color: #bbf7d0; }
.crt-compare-neutral { background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%); border-color: #fed7aa; }
.crt-pricing-hero {
    padding: var(--crt-space-20) 0 var(--crt-space-10);
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.crt-pricing-grid-rich {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
    gap: var(--crt-space-8);
}
.crt-pricing-card-rich { margin-bottom: var(--crt-space-6); }
.crt-pricing-period-note {
    font-size: var(--crt-text-sm);
    color: var(--crt-gray-500);
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}
.crt-social-proof-wide { margin-top: var(--crt-space-8); }
@media (max-width: 1024px) {
    .crt-proof-grid,
    .crt-benefit-grid,
    .crt-audience-grid,
    .crt-quote-grid,
    .crt-value-stack,
    .crt-compare-grid,
    .crt-pricing-grid-rich { grid-template-columns: 1fr 1fr; }
    .crt-feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .crt-proof-band { padding: var(--crt-space-8) 0 var(--crt-space-16); }
    .crt-proof-grid,
    .crt-benefit-grid,
    .crt-audience-grid,
    .crt-quote-grid,
    .crt-value-stack,
    .crt-compare-grid,
    .crt-pricing-grid-rich { grid-template-columns: 1fr; }
    .crt-proof-card,
    .crt-benefit-card,
    .crt-section-panel,
    .crt-quote-card,
    .crt-feature-row,
    .crt-compare-card { padding: var(--crt-space-6); }
}
/* ======== TRUST STRIP AND PROGRAM LAYOUTS ======== */
.crt-trust-strip {
    padding: var(--crt-space-8) 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,1) 100%);
}

.crt-trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--crt-space-4);
}

.crt-trust-chip {
    padding: var(--crt-space-5);
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-xl);
    box-shadow: var(--crt-shadow-sm);
}

.crt-trust-chip strong {
    display: block;
    color: var(--crt-gray-900);
    font-size: var(--crt-text-lg);
    margin-bottom: 6px;
}

.crt-trust-chip span {
    color: var(--crt-gray-600);
    line-height: 1.5;
}

.crt-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--crt-space-6);
}

.crt-program-card {
    background: var(--crt-white);
    border: 1px solid var(--crt-gray-200);
    border-radius: var(--crt-radius-2xl);
    padding: var(--crt-space-7);
    box-shadow: var(--crt-shadow-md);
}

.crt-program-card h3 {
    margin: var(--crt-space-4) 0 var(--crt-space-3);
    color: var(--crt-gray-900);
    font-size: var(--crt-text-xl);
}

.crt-program-card p {
    margin: 0;
    color: var(--crt-gray-600);
    line-height: 1.7;
}

.crt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--crt-space-5);
}

.crt-compare-slab {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--crt-space-6);
}

.crt-compare-column {
    padding: var(--crt-space-8);
    border-radius: var(--crt-radius-2xl);
    border: 1px solid var(--crt-gray-200);
    box-shadow: var(--crt-shadow-md);
}

.crt-compare-column h3 {
    margin-top: 0;
    margin-bottom: var(--crt-space-4);
    font-size: var(--crt-text-2xl);
    color: var(--crt-gray-900);
}

.crt-proof-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: var(--crt-space-6) 0;
}

@media (max-width: 1024px) {
    .crt-trust-strip-grid,
    .crt-program-grid,
    .crt-process-grid,
    .crt-proof-grid-compact {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .crt-trust-strip-grid,
    .crt-program-grid,
    .crt-process-grid,
    .crt-proof-grid-compact,
    .crt-compare-slab {
        grid-template-columns: 1fr;
    }
}

/* ======== HOME POLISH ======== */
.crt-hero .crt-social-proof {
    justify-content: flex-start;
    margin-top: var(--crt-space-8);
}

.crt-program-card i {
    display: inline-flex;
}

.crt-feature-row ul {
    margin: 0;
}

.crt-comparison-table {
    background: white;
}

@media (max-width: 767px) {
    .crt-hero-stats {
        flex-direction: column;
        gap: var(--crt-space-5);
    }

    .crt-hero .crt-social-proof {
        justify-content: flex-start;
        align-items: flex-start;
        gap: var(--crt-space-4);
    }

    .crt-social-proof-divider {
        display: none;
    }
}

/* ======== 2026 PUBLIC REFACTOR LAYOUT ======== */
.crt-hero-home {
    padding-bottom: var(--crt-space-28, 7rem);
}

.crt-hero-home .crt-hero-title {
    max-width: 13ch;
    font-size: clamp(3.4rem, 7vw, 5.8rem);
}

.crt-hero-home .crt-hero-subtitle {
    max-width: 60ch;
    color: rgba(226, 232, 240, 0.88);
}

.crt-benefit-card,
.crt-program-card,
.crt-feature-row,
.crt-trust-chip,
.crt-testimonial,
.crt-compare-column {
    border-radius: 28px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.06);
}

.crt-benefit-card h3,
.crt-program-card h3,
.crt-feature-row h3,
.crt-testimonial-name,
.crt-trust-chip strong,
.crt-compare-column h3 {
    font-family: var(--crt-font-display);
    letter-spacing: -0.03em;
}

.crt-benefit-card h3 {
    margin: 0 0 0.75rem;
    color: var(--crt-gray-900);
    font-size: 1.7rem;
}

.crt-benefit-card p,
.crt-trust-chip span,
.crt-program-card p,
.crt-feature-row p,
.crt-testimonial-text,
.crt-section-subtitle,
.crt-page-subtitle {
    color: var(--crt-gray-600);
}

.crt-page-hero {
    padding: calc(var(--crt-header-height) + 3.5rem) 0 4rem;
}

.crt-page-hero .crt-page-title {
    padding-top: 0;
    margin-bottom: 1rem;
    font-size: clamp(2.9rem, 5vw, 4.6rem);
}

.crt-page-hero .crt-page-subtitle {
    max-width: 50rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.crt-feature-row {
    padding: 2rem;
}

.crt-feature-row h3 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.crt-testimonial {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.crt-testimonial-text {
    font-style: normal;
    line-height: 1.8;
}

.crt-trust-chip {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.crt-proof-band-light .crt-section-header {
    margin-bottom: var(--crt-space-8);
}

.crt-preview-card .crt-checklist,
.crt-preview-panel .crt-checklist,
.crp-public-gate .crp-start-info {
    margin-top: 1rem;
}

.crp-public-gate .crp-start-info {
    display: grid;
    gap: 0.75rem;
}

.crp-public-gate .crp-start-info-item {
    justify-content: flex-start;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.crp-public-gate-card .crp-start-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.crt-cta-banner {
    background: linear-gradient(135deg, #0b1627 0%, #12315a 55%, #f97316 140%);
}

.crt-cta-banner p {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* ======== ROAD-SOUL REDESIGN ======== */
.crt-hero-road {
    position: relative;
    padding-bottom: 7rem;
    background:
        radial-gradient(circle at 18% 14%, rgba(249, 115, 22, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(59, 130, 246, 0.22) 0%, transparent 26%),
        linear-gradient(135deg, #07101d 0%, #0b1830 40%, #12315a 72%, #0f172a 100%);
}

.crt-road-lane {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    opacity: 0.16;
    pointer-events: none;
}

.crt-road-lane::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0 18px, transparent 18px 42px);
    background-size: 100% 42px;
}

.crt-road-lane-left { left: 6%; transform: skewX(-10deg); }
.crt-road-lane-right { right: 6%; transform: skewX(10deg); }

.crt-hero-grid-road {
    gap: 2rem;
    align-items: center;
}

.crt-road-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.crt-road-proof-strip > div {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.crt-road-proof-strip strong {
    display: block;
    color: white;
    font-family: var(--crt-font-display);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.crt-road-proof-strip span {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

.crt-road-stage {
    position: relative;
    display: grid;
    gap: 1rem;
}

.crt-scene-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 32px 80px rgba(2, 6, 23, 0.42);
}

.crt-scene-frame-main {
    min-height: 520px;
    background: #0f172a;
}

.crt-scene-frame img,
.crt-road-story-media img,
.crt-road-module-media img,
.crt-public-stage-media > img,
.crt-preview-panel-signs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crt-scene-overlay-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(290px, calc(100% - 2rem));
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(7, 16, 29, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    color: white;
}

.crt-scene-overlay-card h3,
.crt-road-story-copy h3,
.crt-road-module-copy h3,
.crt-road-sign-item h3,
.crt-route-step h3,
.crt-public-stage-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--crt-font-display);
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    letter-spacing: -0.04em;
}

.crt-scene-overlay-card .crt-checklist li,
.crt-public-stage-card .crt-checklist li {
    color: rgba(255, 255, 255, 0.82);
}

.crt-sign-cluster {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.crt-sign-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.crt-sign-card img,
.crt-road-sign-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.crt-sign-card strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--crt-gray-900);
    font-family: var(--crt-font-display);
    font-size: 1.1rem;
}

.crt-sign-card span {
    color: var(--crt-gray-600);
    line-height: 1.5;
    font-size: 0.92rem;
}

.crt-road-section-dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(249, 115, 22, 0.14) 0%, transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(37, 99, 235, 0.16) 0%, transparent 26%),
        linear-gradient(180deg, #08111f 0%, #10213c 100%);
}

.crt-section-header-light .crt-section-title,
.crt-section-header-light .crt-section-subtitle,
.crt-section-header-light .crt-section-badge {
    color: white;
}

.crt-section-header-light .crt-section-subtitle {
    color: rgba(226, 232, 240, 0.78);
}

.crt-road-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.crt-road-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crt-road-story-card {
    display: grid;
    grid-template-rows: 250px 1fr;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.crt-road-story-card-light {
    background: rgba(255, 255, 255, 0.92);
}

.crt-road-story-media {
    position: relative;
    min-height: 240px;
    background: #dbeafe;
}

.crt-road-story-media-signs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.crt-road-story-media-signs img {
    width: min(100%, 120px);
    height: auto;
}

.crt-road-story-copy {
    padding: 1.4rem;
}

.crt-road-story-copy p,
.crt-road-module-copy p,
.crt-road-sign-item p,
.crt-route-step p,
.crt-public-stage-card p {
    margin: 0;
    color: var(--crt-gray-600);
    line-height: 1.75;
}

.crt-road-module-grid {
    display: grid;
    gap: 1.25rem;
}

.crt-road-module-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: stretch;
    padding: 1.5rem;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

.crt-road-module-card-alt {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.crt-road-module-card-alt .crt-road-module-media {
    order: 2;
}

.crt-road-module-card-alt .crt-road-module-copy {
    order: 1;
}

.crt-road-module-media {
    overflow: hidden;
    border-radius: 24px;
    min-height: 320px;
    background: #dbeafe;
}

.crt-road-module-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.crt-road-sign-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.crt-road-sign-item {
    padding: 1.5rem;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.crt-road-sign-item img {
    width: min(100%, 110px);
    margin: 0 auto 1rem;
}

.crt-route-plan {
    padding: 2rem;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%),
        linear-gradient(90deg, rgba(37,99,235,0.1) 0%, rgba(249,115,22,0.1) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.crt-route-plan-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.crt-route-plan-steps::before {
    content: '';
    position: absolute;
    top: 1.6rem;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb 0%, #f97316 100%);
    opacity: 0.18;
}

.crt-route-step {
    position: relative;
    padding-top: 2.8rem;
}

.crt-route-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #f97316 100%);
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.18);
}

.crt-route-step strong {
    position: absolute;
    top: 0.86rem;
    left: 1.05rem;
    z-index: 1;
    color: white;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.crt-route-step h3 {
    color: var(--crt-gray-900);
}

.crt-testimonials-road {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.crt-cta-banner-road {
    background:
        radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 24%),
        radial-gradient(circle at 84% 15%, rgba(59, 130, 246, 0.18) 0%, transparent 22%),
        linear-gradient(135deg, #07111f 0%, #10213c 52%, #12315a 100%);
}

.crt-page-hero-roadmap,
.crt-page-hero-road-practice,
.crt-page-hero-road-exam {
    background:
        radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.12) 0%, transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.14) 0%, transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.crt-public-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 1.5rem;
    align-items: center;
}

.crt-public-stage-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    background: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.1);
}

.crt-public-stage-media-dark {
    background: #0f172a;
}

.crt-public-stage-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: min(310px, calc(100% - 2rem));
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.crt-public-stage-card-dark {
    background: rgba(7, 16, 29, 0.84);
    border-color: rgba(255, 255, 255, 0.1);
}

.crt-public-stage-card-dark h3,
.crt-public-stage-card-dark .crt-checklist li,
.crt-public-stage-card-dark p {
    color: white;
}

.crt-preview-panel-signs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 1rem;
    min-height: 100%;
}

.crt-preview-panel-signs img:last-child {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}
