/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;800&family=Playfair+Display:ital,wght@1,400;1,600&display=swap&display=swap');

:root {
    --gold: #e3a447;
    --gold-light: #fdf78c;
    --gold-dark: #d5a143;
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --text-gray: #a1a1aa;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg-dark);
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

/* Mobile-only line breaks */
.mobile-break {
    display: inline;
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
}

/* Layout Architecture */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .hero-split {
        display: grid;
        grid-template-columns: 45% 55%;
        min-height: 100vh;
        overflow-y: auto;
    }
}

/* Laptop-specific adjustments (smaller desktops) */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero-split {
        grid-template-columns: 42% 58%;
    }
}

/* Left Column: Content */
.hero-content {
    display: contents; /* Mobile: Flatten children for reordering */
}

@media (min-width: 1024px) {
    .hero-content {
        display: flex; /* Restore flexbox for desktop */
        flex-direction: column;
        justify-content: flex-start; /* Align to top */
        padding: 3rem 4rem 4rem 5rem;
        background: rgba(5,5,5,0.95);
        overflow-y: auto; /* Allow scrolling if content overflows */
    }
}

/* Laptop-specific: Reduce padding for smaller screens */
@media (min-width: 1024px) and (max-width: 1440px) {
    .hero-content {
        padding: 2rem 2.5rem 3rem 3rem;
    }
}

.brand-header {
    margin-bottom: 0.5rem; 
    order: 1; /* Mobile: 1st */
    padding: 1.5rem 1.5rem 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center; /* Centered on mobile */
    text-align: center;
    overflow: hidden;
}

.brand-logo {
    width: auto;
    height: 3rem; /* Mobile logo - reduced for better fit */
    max-width: 90%;
    opacity: 1;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 900; 
    font-size: 1.9rem; /* Mobile: reduced to fit in 3 lines */
    line-height: 1.15; 
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #fff;
    order: 2; /* Mobile: 2nd */
    padding: 0 1.5rem;
    text-align: center;
}

.soft-underline {
    text-decoration: underline;
    text-decoration-color: #e3a447 !important;
    text-decoration-thickness: 3px;
    text-underline-offset: 0.15em;
    -webkit-text-decoration-color: #e3a447;
    -webkit-text-decoration-line: underline;
}

.headline-smaller {
    font-size: 0.75em;
}

.hero-body {
    max-width: 550px;
    order: 5; /* Mobile: 5th - AFTER button */
    padding: 0 1.5rem 0;
    opacity: 1;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-body p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (min-width: 1024px) {
    .brand-header, .hero-headline, .hero-body, .cta-wrapper, .transformations-strip, .statement-section {
        padding: 0;
    }
    .hero-body p { font-size: 1.125rem; text-align: left; }
    .hero-body { 
        text-align: left;
        margin-left: 0; /* Align left with headline */
        margin-right: auto;
    }
    .brand-header { 
        margin-bottom: 1.5rem;
        text-align: left; 
        justify-content: flex-start;
    }
    .brand-logo { 
        height: 6rem;
        width: auto;
        max-width: none;
    }
    .hero-headline { text-align: left; font-size: clamp(2.75rem, 4.5vw, 4rem); line-height: 1.15; margin-bottom: 1.5rem; }
    .hero-body { order: 4; } /* Desktop: Body text 4th */
    .cta-wrapper { order: 5; margin-top: 1.5rem; margin-bottom: 1rem; } /* Desktop: Button 5th */
    .transformations-strip { order: 6; } /* Desktop: Transformations 6th (LAST) */
}

/* Laptop-specific: Smaller elements for better fit */
@media (min-width: 1024px) and (max-width: 1440px) {
    .brand-header { margin-bottom: 1rem; }
    .brand-logo { height: 4.5rem; }
    .hero-headline { 
        font-size: clamp(2.5rem, 4vw, 3.5rem); 
        margin-bottom: 1rem; 
    }
    .hero-body p { font-size: 1rem; }
    .body-quote { font-size: 1rem; }
    .cta-wrapper { margin-top: 1rem; margin-bottom: 0.5rem; }
    .tagline-badge { margin-bottom: 1rem; }
}

/* CTA Styles */
.cta-wrapper {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    order: 4; /* Mobile: 4th - RIGHT AFTER VIDEO */
    padding: 0 1.5rem 2rem;
}

.step-label-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.btn-luxury-modern {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0;
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(227, 164, 71, 0.28), 0 0 40px rgba(227, 164, 71, 0.14);
    position: relative;
    overflow: hidden;
    gap: 0.25rem;
}

.btn-subtext {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.85;
    color: #000;
    text-align: center;
    display: block;
}

@media (min-width: 1024px) {
    .btn-luxury-modern { width: auto; padding: 1.25rem 4rem; }
}

.btn-luxury-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(227, 164, 71, 0.42), 0 0 56px rgba(227, 164, 71, 0.21), 0 20px 40px -10px rgba(197, 160, 89, 0.4);
    filter: brightness(1.15);
}

/* Status Dot */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .status-indicator { justify-content: flex-start; width: auto; }
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.status-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.body-text {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.body-quote {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

/* Decorative tagline above logo */
.tagline-badge {
    display: none;
}

@media (min-width: 1024px) {
    .tagline-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 1.5rem;
        opacity: 0.8;
    }
    
    .tagline-badge::before,
    .tagline-badge::after {
        content: '';
        width: 30px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold));
    }
    
    .tagline-badge::after {
        background: linear-gradient(90deg, var(--gold), transparent);
    }
}

/* Right Column: Video */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 0; 
    order: 3; /* Mobile Order: 3 */
    z-index: 15;
    width: 100%;
    max-width: 100vw;
    overflow: hidden; /* Contain animation */
}

@media (min-width: 1024px) {
    .hero-visual {
        background: #000;
        order: initial;
    }
}

/* Circular Text Animation Container */
.circular-text-container {
    display: none; /* Default: Hidden on Mobile */
}

@media (min-width: 1024px) {
    .circular-text-container {
        display: block; /* Show only on Desktop */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 900px; /* Way Bigger */
        height: 900px;
        pointer-events: none;
        z-index: 0; /* Behind video */
        animation: spin 60s linear infinite;
        opacity: 0.15;
    }
}

.video-frame {
    width: 75%;
    max-width: 320px;
    margin: 0 auto;
    background: #000;
    overflow: hidden;
    position: relative;
    border: none;
    z-index: 10; /* Above circular text */
    aspect-ratio: 9 / 16; /* Reserve space for vertical video immediately */
    min-height: 350px; /* Minimum height to prevent collapse */
}

.video-frame wistia-player,
.video-frame iframe {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 1024px) {
    .video-frame {
        max-width: 420px; 
        width: 100%; 
        margin: 0 auto;
        aspect-ratio: 9 / 16;
        min-height: 747px; /* 420px * 16/9 for vertical video */
    }
}

/* Video Badge (Clickable Unmute) */
.video-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 30;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-badge:hover {
    background: rgba(227, 164, 71, 0.2);
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .video-badge { top: 2rem; left: 2rem; }
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Footer Logo Section */
.footer-logo-section {
    background: #000;
    padding: 4rem 2rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e3a447;
}

.footer-logo {
    height: 89px;  /* 74px + 20% = 88.8px ≈ 89px */
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-logo-section {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-logo {
        height: 68px;  /* 57px + 20% = 68.4px ≈ 68px */
    }
}

/* Disclaimer Footer */
.disclaimer-footer {
    background: #000;
    padding: 0.5rem 1rem 0.75rem;
    text-align: center;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-footer .copyright {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.disclaimer-footer .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.disclaimer-footer .footer-links a {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.65rem;
    transition: color 0.2s;
}

.disclaimer-footer .footer-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.disclaimer-footer .separator {
    color: #666;
    font-size: 0.65rem;
}

.disclaimer-footer .location {
    font-size: 0.65rem;
    color: #999;
    margin-bottom: 0.75rem;
}

.disclaimer-footer .disclaimer-text {
    font-size: 0.65rem;
    line-height: 1.5;
    color: #999;
    margin-bottom: 0.5rem;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-footer .disclaimer-text strong {
    color: #fff;
    font-weight: 600;
}

.disclaimer-footer .facebook-disclaimer {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .disclaimer-footer {
        padding: 0.5rem 1rem 0.75rem;
    }
    
    .disclaimer-footer .disclaimer-text {
        font-size: 0.6rem;
        text-align: center;
    }
    
    .disclaimer-footer .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .disclaimer-footer .separator {
        display: none;
    }
}

/* Quiz Fixes */
.quiz-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 20; /* Ensure above background */
}

.quiz-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.8);
}

.quiz-option {
    background: linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 1.25rem; /* Fix padding for quiz options */
    margin-bottom: 0.75rem;
}

.quiz-option:hover {
    background: linear-gradient(to right, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0));
    border-color: var(--gold);
}

/* Animations */
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.animate-shimmer { background-size: 200% auto; animation: shimmer 5s linear infinite; }
.fade-in-fast { animation: fadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes spin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Helper Classes */
.text-gold { color: var(--gold); }
.font-black { font-weight: 900; }
.bg-300\% { background-size: 300%; }

/* Mobile/Desktop visibility */
.mobile-only { display: block; }
.desktop-only { display: none; }

@media (min-width: 1024px) {
    .mobile-only { display: none; }
    .desktop-only { display: block; }
}

/* Gold Shimmer Text Effect */
.gold-shimmer {
    background: linear-gradient(
        90deg, 
        #e3a447 0%, 
        #fdf78c 25%, 
        #d5a143 50%, 
        #fdf78c 75%, 
        #e3a447 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Statement Section */
.statement-section {
    display: block;
    order: 7; /* Mobile: LAST - after button */
    padding: 0 1.5rem 2rem;
    margin-top: 2rem;
    text-align: center;
}

.statement-text {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Transformations Strip (Now visible on mobile too) */
.transformations-strip {
    display: block; /* Now visible on mobile */
    order: 7; /* Mobile: LAST - after body text */
    padding: 0 1.5rem 2rem;
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .statement-section {
        margin-top: 2rem;
        padding: 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        order: 6; /* Desktop: LAST - after button */
        text-align: left;
    }
    
    .statement-text {
        font-size: 0.95rem;
    }
    
    .transformations-strip {
        display: block;
        margin-top: 1rem;
        padding: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        order: 6; /* Desktop: LAST - after button */
    }
}

/* Laptop: Smaller transformation cards */
@media (min-width: 1024px) and (max-width: 1440px) {
    .transform-card {
        width: 90px;
        height: 115px;
    }
}

.transformations-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

.label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.transformations-scroll {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.transformations-track {
    display: flex;
    gap: 0.75rem;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
    will-change: transform;
}

.transform-card {
    width: 110px;
    height: 140px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.transform-card:hover {
    opacity: 1;
    transform: scale(1.05);
}

.transform-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s;
    will-change: filter;
    content-visibility: auto;
}

.transform-card:hover img {
    filter: grayscale(0%);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-title {
    color: #e3a447 !important;
    font-size: 1.02rem;  /* 0.85rem + 20% = 1.02rem */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.testimonials-subtitle {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    margin: 1rem 0 0 0;
    text-align: center;
}

.testimonials-subtitle-bottom {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    margin: 1rem auto 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.testimonials-closing {
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin: 2rem auto 0;
    font-style: italic;
    padding: 1rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.testimonial-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for YouTube Shorts */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.transformation-photo {
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transformation-photo img {
    width: 100%;
    height: auto;
    display: block;
}


/* Desktop: Smaller containers with more spacing */
@media (min-width: 768px) {
    .testimonials-section {
        margin: 4rem auto;
        padding: 0 2rem;
        max-width: 800px;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonials-header {
        margin-bottom: 2rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 600;
    }
    
    .testimonials-closing {
        font-size: 1rem;
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }
}

/* Mobile: Adjust body text font size for proper wrapping */
@media (max-width: 767px) {
    .body-text {
        font-size: 0.95em !important; /* 0.76em + 25% = 0.95em */
    }
}

/* Desktop: Make hero subtext smaller to fit on one line */
@media (min-width: 768px) {
    .hero-subtext.desktop-only {
        font-size: 0.8rem !important;
    }
}

/* Bottom CTA Section */
.bottom-cta-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 3rem auto 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom-cta-subtext {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0.75rem auto 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .bottom-cta-wrapper {
        margin: 4rem auto 0 auto;
        padding: 0 2rem;
    }
}

/* Transformations text spacing - 0 padding to videos, 2rem to logo */
.transformations-text {
    margin: 0 auto 2rem !important;
}

@media (min-width: 768px) {
    .transformations-text {
        margin: 0 auto 2rem !important;
    }
}

/* Who This Is Built For Section */
.who-built-for-section {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(227, 164, 71, 0.2);
    border-bottom: 1px solid rgba(227, 164, 71, 0.2);
}

.who-built-for-section .section-container {
    max-width: 700px;
    margin: 0 auto;
}

.who-built-for-section .section-title {
    color: #e3a447;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.who-built-for-section .section-intro {
    color: #ccc;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.who-built-for-section .criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.who-built-for-section .criteria-list li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.who-built-for-section .criteria-list li::before {
    content: "•";
    color: #e3a447;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.who-built-for-section .section-closing {
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Why Fail Section */
.why-fail-section {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(227, 164, 71, 0.2);
    border-bottom: 1px solid rgba(227, 164, 71, 0.2);
}

.why-fail-section .section-container {
    max-width: 700px;
    margin: 0 auto;
}

.why-fail-section .section-title {
    color: #e3a447;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.why-fail-section .section-intro {
    color: #ccc;
    font-size: 1.1rem;
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.why-fail-section .constraints-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.why-fail-section .constraints-list li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.why-fail-section .constraints-list li::before {
    content: "•";
    color: #e3a447;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.1rem;
}

.why-fail-section .section-closing {
    color: #888;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop styles for new sections */
@media (min-width: 768px) {
    .who-built-for-section,
    .why-fail-section {
        margin: 4rem auto;
        padding: 4rem 2rem;
    }
    
    .who-built-for-section .section-title,
    .why-fail-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .who-built-for-section .section-intro,
    .why-fail-section .section-intro {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .who-built-for-section .criteria-list li,
    .why-fail-section .constraints-list li {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .who-built-for-section .section-closing {
        font-size: 1rem;
        padding-top: 1.5rem;
    }
    
    .why-fail-section .section-closing {
        font-size: 1rem;
        padding-top: 1.5rem;
    }
}
