/* 
   Doramas VIP - Premium Style Sheet (FIERY HOT Edition)
   Vanilla CSS matching the Dorama Hot Fire/Heart Brand Identity
*/

/* --- DESIGN TOKENS & VARIABLES --- */
:root {
    --bg-main: #070002; /* Textured black background like the logo */
    --bg-dark-1: #0f0104;
    --bg-dark-2: #1e0205; /* Deep smoky red shadow background */
    --bg-card: rgba(22, 2, 4, 0.7); /* Dark charcoal wood with red tint */
    --bg-card-border: rgba(255, 85, 0, 0.25); /* Glowing fire orange borders */
    
    --color-pink: #e60000; /* Pure intense fire red (from "DORAMA" text) */
    --color-pink-hover: #b30000; /* Deep embers red */
    --color-purple: #ff9000; /* Fiery orange-yellow (from "HOT" text & flames) */
    --color-purple-light: #ffaa00; /* Bright yellow-orange fire glow */
    
    --text-white: #ffffff;
    --text-light: #ffebee; /* Soft warm rose white */
    --text-muted: #d09ca3; /* Smoky silver rose */
    
    --font-primary: 'Outfit', sans-serif;
    
    --shadow-pink: 0 0 20px rgba(230, 0, 0, 0.5);
    --shadow-purple: 0 0 20px rgba(255, 144, 0, 0.45);
    --shadow-glow: 0 0 35px rgba(230, 0, 0, 0.7), 0 0 15px rgba(255, 144, 0, 0.6);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    background: radial-gradient(circle at 50% 0%, var(--bg-dark-2) 0%, var(--bg-main) 70%);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark-2);
    border: 2px solid var(--bg-main);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-pink);
}

/* --- COMMONS & UTILITIES --- */
.highlight-text {
    background: linear-gradient(135deg, var(--color-pink) 20%, var(--color-purple) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.price-highlight {
    color: var(--color-purple-light);
    text-shadow: 0 0 15px rgba(255, 144, 0, 0.55);
    font-weight: 700;
}

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

.top-banner {
    background: #e60000;
    color: var(--text-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(230, 0, 0, 0.5);
    position: relative;
    z-index: 100;
}

/* --- MAIN CONTAINER --- */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 80px 20px;
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0 80px 0;
    position: relative;
}

/* Background Glowing Orbs (Fiery Flame effect) */
.hero-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.22) 0%, rgba(0,0,0,0) 70%);
    top: -50px;
    left: 10%;
    z-index: -1;
    filter: blur(45px);
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 144, 0, 0.18) 0%, rgba(0,0,0,0) 70%);
    bottom: 50px;
    right: 10%;
    z-index: -1;
    filter: blur(45px);
}

.badge {
    background: rgba(230, 0, 0, 0.12);
    border: 1px solid var(--color-pink);
    color: var(--color-pink);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 0 12px rgba(230, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 400;
}

/* --- VSL VIDEO CONTAINER --- */
.video-container-wrapper {
    margin-bottom: 60px;
    width: 100%;
    max-width: 360px; /* Ajustado para VSL de vídeo vertical */
    border-radius: 20px;
    border: 4px solid var(--bg-card-border);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    position: relative;
    background: #000;
    transition: var(--transition-smooth);
}

.video-container-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(230, 0, 0, 0.6), 0 0 20px rgba(255, 144, 0, 0.5);
    border-color: rgba(255, 144, 0, 0.4);
}

.video-mock {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: var(--transition-smooth);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 0, 2, 0.95) 10%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-pink);
    transition: var(--transition-smooth);
    color: var(--text-white);
    margin-bottom: 15px;
}

.play-btn-circle svg {
    width: 32px;
    height: 32px;
    margin-left: 5px;
}

.play-btn-circle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.play-hint {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- AUDIO TESTIMONIALS --- */
.testimonials-audio-section {
    width: 100%;
    max-width: 750px;
    margin-bottom: 50px;
}

.section-micro-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.audio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.audio-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.audio-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 144, 0, 0.45);
    box-shadow: 0 8px 25px rgba(7, 0, 2, 0.6);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--color-pink);
    box-shadow: 0 0 8px rgba(230, 0, 0, 0.35);
}

.user-1 {
    background: radial-gradient(circle, #e60000 0%, #ff9000 100%);
}
.user-2 {
    background: radial-gradient(circle, #ff9000 0%, #e60000 100%);
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.user-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-purple-light);
    font-weight: 500;
}

.user-verified svg {
    width: 13px;
    height: 13px;
    color: var(--color-pink);
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(7, 0, 2, 0.6);
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 144, 0, 0.1);
}

.audio-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-pink);
    border: none;
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.audio-play-btn:hover {
    transform: scale(1.08);
    background: var(--color-pink-hover);
}

.audio-play-btn svg {
    width: 16px;
    height: 16px;
}

.audio-waveform-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 20px;
}

.audio-waveform span {
    display: block;
    width: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.audio-card:hover .audio-waveform span {
    background: rgba(255, 144, 0, 0.5);
}
.audio-card:hover .audio-waveform span:nth-child(even) {
    background: rgba(230, 0, 0, 0.65);
}

.audio-duration {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

/* --- CTA BUTTONS --- */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: var(--shadow-pink);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.cta-button .arrow-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-smooth);
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pulse-animation {
    animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(230, 0, 0, 0.45);
    }
    100% {
        box-shadow: 0 0 25px rgba(230, 0, 0, 0.85), 0 0 10px rgba(255, 144, 0, 0.6);
    }
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: var(--color-pink);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 650px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 400;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 680px;
    margin: 40px auto 0 auto;
}

.benefit-row-card {
    background: linear-gradient(135deg, rgba(20, 2, 4, 0.65) 0%, rgba(8, 0, 1, 0.85) 100%);
    border: 1px solid rgba(255, 144, 0, 0.08);
    border-radius: 20px;
    padding: 22px 28px;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.benefit-row-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 144, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 144, 0, 0.08), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.benefit-row-card.highlighted-spicy-card {
    background: linear-gradient(135deg, rgba(28, 2, 4, 0.7) 0%, rgba(15, 1, 2, 0.8) 100%);
    border: 1px solid rgba(230, 0, 0, 0.18);
    box-shadow: 0 0 25px rgba(230, 0, 0, 0.05), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.benefit-row-card.highlighted-spicy-card:hover {
    border-color: rgba(230, 0, 0, 0.45);
    box-shadow: 0 0 35px rgba(230, 0, 0, 0.15), 0 10px 30px rgba(230, 0, 0, 0.1);
}

.card-icon-col {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.purple-pink-glow {
    background: rgba(169, 112, 255, 0.06);
    border: 1px solid rgba(169, 112, 255, 0.2);
    color: #b388ff;
    box-shadow: inset 0 0 12px rgba(169, 112, 255, 0.1);
}

.benefit-row-card:hover .purple-pink-glow {
    background: rgba(169, 112, 255, 0.15);
    border-color: rgba(169, 112, 255, 0.45);
    color: #d1b3ff;
    box-shadow: 0 0 20px rgba(169, 112, 255, 0.25), inset 0 0 8px rgba(169, 112, 255, 0.2);
}

.red-fire-glow {
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.25);
    color: #ff453a;
    box-shadow: inset 0 0 12px rgba(230, 0, 0, 0.1);
}

.benefit-row-card:hover .red-fire-glow {
    background: rgba(230, 0, 0, 0.15);
    border-color: rgba(230, 0, 0, 0.5);
    color: #ff6961;
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.35), inset 0 0 8px rgba(230, 0, 0, 0.2);
}

.row-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.card-text-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.row-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.row-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.highlight-spicy-text {
    background: linear-gradient(135deg, #ff3b30 20%, #ff9500 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GALLERY PREVIEW SECTION --- */
.gallery-section {
    padding: 40px 0 80px 0;
}

.gallery-slider {
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 10px;
    animation: scrollMarquee 25s linear infinite;
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

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

.gallery-item {
    width: 270px;
    height: 430px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 144, 0, 0.15);
    background-color: #000;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    transition: var(--transition-smooth);
}



.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-purple);
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: radial-gradient(circle at top left, rgba(30, 4, 8, 0.6), rgba(8, 0, 1, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.03);
}

.pricing-card.recommended-plan {
    background: radial-gradient(circle at top left, rgba(55, 6, 12, 0.65), rgba(10, 0, 2, 0.95));
    border: 1.5px solid rgba(230, 0, 0, 0.22);
}

.pricing-card.recommended-plan:hover {
    border-color: rgba(230, 0, 0, 0.55);
    box-shadow: 0 0 35px rgba(230, 0, 0, 0.18), 0 15px 45px rgba(0, 0, 0, 0.7);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.plan-badge.hot-badge {
    background: rgba(230, 0, 0, 0.15);
    border: 1px solid rgba(230, 0, 0, 0.4);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.2);
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-right: 4px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.4;
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.55;
}

.plan-features .check-icon {
    width: 18px;
    height: 18px;
    color: #30d158; /* Apple Green */
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features .check-icon.highlight-check {
    color: var(--color-pink); /* Fiery red VIP check */
    filter: drop-shadow(0 0 4px rgba(230, 0, 0, 0.45));
}

.plan-features .close-icon {
    width: 18px;
    height: 18px;
    color: #ff453a; /* Apple Red close */
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    width: 100%;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 24px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05), 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.pricing-card.recommended-plan .plan-btn {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-pink);
}

.pricing-card.recommended-plan .plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
    max-width: 750px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-purple);
    transition: transform 0.3s ease;
}

.faq-item[open] .accordion-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 22px 28px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 144, 0, 0.1);
}

.faq-item:hover {
    border-color: rgba(255, 144, 0, 0.35);
}

/* --- LOGO STYLING --- */
.main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 10px 20px;
    width: 100%;
}

.header-logo {
    max-height: 130px; /* Made larger as requested */
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 144, 0, 0.55)) drop-shadow(0 0 5px rgba(230, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 22px rgba(255, 144, 0, 0.75)) drop-shadow(0 0 10px rgba(230, 0, 0, 0.5));
}

.footer-logo-img {
    max-height: 90px; /* Made larger as requested */
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 144, 0, 0.45));
    margin-bottom: 12px;
}

/* --- FOOTER --- */
.footer-container {
    background: #030001;
    border-top: 1px solid rgba(255, 85, 0, 0.08);
    padding: 50px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-purple);
}

/* --- RESPONSIVENESS (MEDIA QUERIES) --- */

@media (max-width: 768px) {
    .header-logo {
        max-height: 90px;
    }
    
    .footer-logo-img {
        max-height: 70px;
    }

    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 36px;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-row-card {
        padding: 18px 22px;
        gap: 18px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 450px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        max-height: 80px;
    }
    
    .landing-container {
        padding: 10px 10px 60px 10px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }

    .benefit-row-card {
        padding: 14px 18px;
        gap: 14px;
    }
    
    .card-icon-col {
        width: 42px;
        height: 42px;
    }
    
    .row-icon {
        width: 20px;
        height: 20px;
    }
    
    .row-title {
        font-size: 1.05rem;
    }
    
    .row-description {
        font-size: 0.85rem;
    }
}
