/* ============================================
   EROPLAY AI - Main Stylesheet
   ============================================ */

/* Animations */
@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(10px); }
    50% { transform: translateY(0) translateX(20px); }
    75% { transform: translateY(10px) translateX(10px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes btnBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.15); }
}

/* ============================================
   CSS Variables - Color Palette
   Eroplay AI Branding - Orange/Coral Theme
   ============================================ */
:root {
    /* Primary Colors - Orange/Coral Theme */
    --primary-color: #F97316;
    --primary-hover: #EA580C;
    --secondary-color: #8B5CF6;
    --accent-color: #FB923C;
    --success-color: #22C55E;
    --warning-color: #EAB308;
    
    /* Backgrounds */
    --dark-bg: #0D0D0D;
    --darker-bg: #050505;
    --card-bg: rgba(23, 23, 23, 0.8);
    --card-bg-hover: rgba(38, 38, 38, 0.9);
    
    /* Text Colors */
    --light-text: #FAFAFA;
    --gray-text: #A1A1AA;
    --muted-text: #71717A;
    
    /* Borders & Shadows */
    --border-color: rgba(249, 115, 22, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(249, 115, 22, 0.25);
    --shadow-glow: rgba(249, 115, 22, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F97316, #FB923C);
    --gradient-accent: linear-gradient(135deg, #F97316, #8B5CF6);
    --gradient-hero: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Base Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight-orange {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px var(--shadow-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-glow);
    color: var(--light-text);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

.btn-login {
    color: var(--light-text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
}

.btn-signup {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    font-weight: 600;
}

.btn-signup:hover {
    background: var(--primary-hover);
    color: var(--light-text);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--darker-bg);
    z-index: 1001;
    transition: left var(--transition-speed) ease;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-link {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.mobile-link.highlight {
    color: var(--secondary-color);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    background: var(--darker-bg);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    margin-top: 1rem;
    color: var(--gray-text);
}

.promo-banner {
    background: var(--gradient-primary);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.key-takeaway {
    background: rgba(157, 78, 221, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 50px var(--shadow-color);
    transition: all var(--transition-speed) ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.6);
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

/* ============================================
   Character Showcase Section
   ============================================ */
.showcase {
    padding: 80px 0;
    background: var(--darker-bg);
}

.image-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    aspect-ratio: 3/4;
    background: var(--card-bg);
    cursor: pointer;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: 1;
}

.image-card:hover::before {
    opacity: 1;
}

.image-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.companion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.character-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
    z-index: 2;
}

.image-card:hover .character-overlay {
    transform: translateY(0);
}

.card-cta-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
    z-index: 3;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.image-card:hover .card-cta-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    animation: btnBounce 0.6s ease;
}

.card-cta-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 30px var(--shadow-glow);
    transform: translate(-50%, -50%) scale(1.1);
}

.character-overlay .card-title {
    margin-bottom: 5px;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.character-overlay p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

.view-more {
    text-align: center;
    margin: 40px 0;
}

.featured-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    padding: 40px 0;
    position: relative;
}

.featured-cta-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 10px 30px var(--shadow-color);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.featured-cta-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(157, 78, 221, 0.5);
}

/* ============================================
   Bonus Visual Sections
   ============================================ */
.bonus-visual-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.bonus-visual-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-visual-wrapper.reverse {
    flex-direction: row-reverse;
}

.bonus-visual-image {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: all var(--transition-speed) ease;
    object-fit: cover;
    display: block;
}

.bonus-visual-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(157, 78, 221, 0.5);
}

.bonus-visual-caption {
    flex: 1;
    padding: 0;
}

.bonus-visual-caption h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.bonus-visual-caption h3 .highlight-orange {
    color: var(--primary-color);
}

.bonus-visual-caption p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 25px;
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.cta-inline {
    text-align: center;
    margin: 40px 0;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--dark-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.feature-card.highlight {
    border-color: var(--primary-color);
    background: rgba(157, 78, 221, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--light-text);
}

.feature-card ul {
    list-style-position: inside;
    margin: 15px 0;
}

.feature-card li {
    margin-bottom: 10px;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--gray-text);
}

/* ============================================
   Ratings Section
   ============================================ */
.ratings-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.rating-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.rating-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.rating-card.highlight {
    border-color: var(--primary-color);
    background: rgba(157, 78, 221, 0.1);
}

.rating-card .rating-title {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.rating-stars {
    margin: 15px 0;
}

.stars {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reality-check {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(157, 78, 221, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.user-quote {
    background: rgba(255, 20, 147, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
}

/* ============================================
   Best Suited Section
   ============================================ */
.suited-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.suited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.suited-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
}

.suited-card.recommended {
    border-color: #4CAF50;
}

.suited-card.not-recommended {
    border-color: #f44336;
}

.suited-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.suited-card ul {
    list-style-position: inside;
}

.suited-card li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    color: var(--primary-color);
}

.cta-box h3 {
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ============================================
   Account Section
   ============================================ */
.account-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.account-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 35px;
}

.account-card h3 {
    margin-bottom: 20px;
}

.warning-box {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(157, 78, 221, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-item.active .toggle-icon i {
    transform: rotate(180deg);
}

.toggle-icon i {
    transition: transform var(--transition-speed) ease;
}

/* ============================================
   Final Section
   ============================================ */
.final-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.final-content {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-box {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.05));
    border: 1px solid var(--primary-color);
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
}

.conclusion-box h3 {
    color: var(--primary-color);
}

.conclusion-box h3 {
    margin-bottom: 15px;
}

.final-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    border: 1px solid var(--primary-color);
}

.final-cta h3 {
    margin-bottom: 15px;
}

.final-cta p {
    margin-bottom: 25px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
}

.footer-logo .logo-highlight {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column .footer-heading {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-text);
    transition: color var(--transition-speed) ease;
}

.footer-column a:hover,
.footer-column a.active {
    color: var(--primary-color);
}

.footer-disclaimer {
    background: rgba(157, 78, 221, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .image-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bonus-visual-wrapper,
    .bonus-visual-wrapper.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .bonus-visual-image {
        flex: 0 0 auto;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bonus-visual-caption {
        padding: 0;
        text-align: center;
    }
    
    .bonus-visual-caption h3 {
        font-size: 1.6rem;
    }
    
    .bonus-visual-caption p {
        font-size: 1rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .nav-links,
    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
        flex: 0 0 auto;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .image-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .bonus-visual-section {
        padding: 40px 0;
    }
    
    .bonus-visual-wrapper {
        gap: 20px;
    }
    
    .bonus-visual-caption {
        padding: 0;
        text-align: center;
    }
    
    .bonus-visual-caption h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .bonus-visual-caption p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .key-takeaway {
        padding: 15px;
        margin: 20px 0;
    }

    .suited-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .image-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-cta-wrapper {
        margin: 40px 0;
    }
    
    .bonus-visual-section {
        padding: 30px 0;
    }
    
    .bonus-visual-wrapper {
        gap: 15px;
    }
    
    .bonus-visual-caption {
        padding: 0;
        text-align: center;
    }
    
    .bonus-visual-caption h3 {
        font-size: 1.2rem;
    }
    
    .bonus-visual-caption p {
        font-size: 0.9rem;
    }
    
    .key-takeaway {
        padding: 12px;
        margin: 15px 0;
        font-size: 0.9rem;
    }
}

/* Fade-in animation for scroll */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* ============================================
   Hero Features Bar
   ============================================ */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-feature {
    text-align: center;
}

.hero-feature strong {
    display: block;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.hero-feature span {
    color: var(--gray-text);
    font-size: 0.85rem;
}

.hero-feature .price-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Pricing Table
   ============================================ */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: rgba(249, 115, 22, 0.1);
}

.pricing-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--gray-text);
}

.pricing-table tbody tr:hover {
    background: var(--card-bg-hover);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table .feature-name {
    color: var(--light-text);
    font-weight: 500;
}

.pricing-table .limited {
    color: var(--warning-color);
}

.pricing-table .available {
    color: var(--success-color);
}

.pricing-table .not-available {
    color: #EF4444;
}

/* ============================================
   Pros/Cons Lists
   ============================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.pros-list, .cons-list {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
}

.pros-list h4, .cons-list h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.pros-list h4 {
    color: var(--success-color);
}

.cons-list h4 {
    color: #EF4444;
}

.pros-list ul, .cons-list ul {
    list-style: none;
}

.pros-list li, .cons-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.6;
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

/* ============================================
   Blockquotes Enhanced
   ============================================ */
blockquote {
    background: rgba(249, 115, 22, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gray-text);
    border-radius: 0 12px 12px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

blockquote p {
    margin: 0;
}

/* ============================================
   Review Cards
   ============================================ */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.review-item {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 25px;
    position: relative;
}

.review-item::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-item p {
    margin: 0;
    padding-left: 30px;
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   Hero Bullets
   ============================================ */
.hero-bullets {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.hero-bullets li {
    padding: 8px 0;
    color: var(--gray-text);
    font-size: 1.1rem;
}

.hero-bullets li::before {
    content: '–';
    margin-right: 10px;
    color: var(--primary-color);
}

/* ============================================
   Responsive Additions
   ============================================ */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
    }
}
