/* 
 * Star Manager Landing Page Styles
 * © 2026 Franklin Strategy Collective
 * Hollywood-themed design with dramatic effects
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
    --gold: #FFD700;
    --dark-purple: #1a0033;
    --deep-black: #0a0a0a;
    --white: #ffffff;
    --gray: #cccccc;
    --light-gray: #f5f5f5;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-purple: linear-gradient(135deg, #1a0033 0%, #4a0080 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

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

/* Mobile-First Container Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 48px; /* Accessibility - Touch Target Size */
    touch-action: manipulation; /* Disable double-tap zoom */
    -webkit-touch-callout: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--deep-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-black);
    transform: translateY(-3px);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

/* ==================== FLASHING LIGHTS ==================== */
.flashing-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        transparent 10%, 
        transparent 20%, 
        var(--gold) 30%,
        transparent 40%,
        transparent 50%,
        var(--gold) 60%,
        transparent 70%,
        transparent 80%,
        var(--gold) 90%,
        transparent 100%
    );
    animation: flash 2s linear infinite;
    z-index: 9999;
}

@keyframes flash {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ==================== SPOTLIGHTS ==================== */
.spotlight {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: rotateSpotlight 15s linear infinite;
}

.spotlight-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.spotlight-2 {
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.spotlight-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes rotateSpotlight {
    0% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 100px) scale(1.2); }
    50% { transform: translate(-50px, 50px) scale(0.8); }
    75% { transform: translate(100px, -50px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ==================== STARS BACKGROUND ==================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--white);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ==================== URGENCY BANNER ==================== */
.urgency-banner {
    background: var(--gradient-purple);
    color: var(--gold);
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    position: sticky;
    top: 10px;
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding: 120px 0 80px;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-proof {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
}

.social-proof-item i {
    font-size: 1.5rem;
}

/* Featured Artist */
.featured-artist {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.artist-photo:hover {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.artist-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--deep-black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.artist-caption {
    margin-top: 20px;
    text-align: center;
}

.artist-caption strong {
    display: block;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.artist-caption a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.artist-caption a:hover {
    color: var(--gold);
}

/* ==================== BEFORE VS AFTER SECTION ==================== */
.before-after {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 3rem;
}

.comparison-side {
    background: rgba(26, 0, 51, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.comparison-side:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.before .comparison-icon {
    color: #ff4444;
}

.after .comparison-icon {
    color: #44ff44;
}

.comparison-side h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-side ul {
    list-style: none;
}

.comparison-side ul li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.comparison-side ul li i {
    font-size: 1.2rem;
}

.before ul li i {
    color: #ff4444;
}

.after ul li i {
    color: #44ff44;
}

.vs-divider {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    background: var(--gradient-purple);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== PROBLEMS WE SOLVE SECTION ==================== */
.problems-solve {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.problem-card {
    background: rgba(26, 0, 51, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.problem-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== REAL RESULTS SECTION ==================== */
.real-results {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.3);
    position: relative;
    z-index: 2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.result-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.result-card:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.result-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.result-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
}

.result-card p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ==================== TRANSFORMATION SECTION ==================== */
.transformation {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.transformation-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.transformation-photo {
    position: relative;
}

.transformation-photo img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--gold);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.4);
}

.photo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--deep-black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-instagram {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 30px;
}

.photo-instagram a {
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.transformation-timeline {
    background: rgba(26, 0, 51, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.timeline-item {
    margin-bottom: 30px;
}

.timeline-label {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
    text-align: center;
}

.timeline-item ul {
    list-style: none;
}

.timeline-item ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.timeline-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.timeline-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 20px 0;
}

.transformation-quote {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--gold);
    margin-top: 30px;
}

.transformation-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 15px;
}

.transformation-quote cite {
    display: block;
    font-style: normal;
    color: var(--gold);
    font-weight: 600;
}

.transformation-quote cite a {
    color: var(--gray);
    text-decoration: none;
    margin-left: 10px;
}

/* ==================== ARTIST STRUGGLE SECTION ==================== */
.artist-struggle {
    padding: 80px 0;
    background: rgba(255, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.struggle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.struggle-card {
    background: rgba(26, 0, 51, 0.7);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
    transition: var(--transition);
    text-align: center;
}

.struggle-card:hover {
    transform: translateY(-10px);
    border-color: #ff4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

.struggle-icon {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.struggle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff4444;
}

.struggle-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==================== URGENCY SECTION ==================== */
.urgency-section {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.5);
    position: relative;
    z-index: 2;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.urgency-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(255, 68, 68, 0.3);
    transition: var(--transition);
}

.urgency-card:hover {
    transform: scale(1.05);
    border-color: #ff4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

.urgency-icon {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.urgency-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff4444;
    font-family: var(--font-heading);
}

.urgency-card p {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.urgency-card small {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 3rem 0;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--gradient-gold);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--gradient-gold);
    color: var(--deep-black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(26, 0, 51, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--deep-black);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--gold);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
}

.pricing-amount .period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold);
    margin-top: 4px;
}

.btn-pricing {
    width: 100%;
    margin-top: auto;
}

.btn-free {
    background: #44ff44;
    color: var(--deep-black);
}

.btn-rising {
    background: #c0c0c0;
    color: var(--deep-black);
}

.btn-headliner {
    background: var(--gradient-gold);
    color: var(--deep-black);
}

.btn-mogul {
    background: var(--gradient-purple);
    color: var(--gold);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 4rem;
    padding: 40px;
    background: rgba(26, 0, 51, 0.5);
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.guarantee-badge {
    font-size: 4rem;
    color: var(--gold);
}

.guarantee-content h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--gray);
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 600;
}

.trust-badge i {
    font-size: 1.5rem;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.3);
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--deep-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.step-icon {
    font-size: 3rem;
    color: var(--gold);
    margin: 30px 0 20px;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.step-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ==================== VISION SECTION ==================== */
.vision {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.vision-content {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.vision-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 2rem;
}

.vision-text:last-child {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: 80px 0;
    background: rgba(26, 0, 51, 0.3);
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 700px;
    margin: 3rem auto 0;
}

.contact-form {
    background: rgba(26, 0, 51, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(26, 0, 51, 0.8);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

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

.social-links a {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--white);
}

.footer-artist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-artist a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-artist a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--gray);
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--deep-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.scroll-top.visible {
    display: flex;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: 20px auto;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Typography - Mobile Optimized */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Grid Layouts - Single Column */
    .problems-grid,
    .results-grid,
    .pricing-grid,
    .urgency-grid,
    .struggle-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .transformation-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Touch-Friendly Buttons */
    .btn {
        padding: 18px 36px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-secondary {
        width: 100%;
        max-width: 400px;
    }
    
    /* Mobile Spacing */
    section {
        padding: 60px 0 !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Cards - Better Mobile Spacing */
    .problem-card,
    .stat-card,
    .struggle-card,
    .urgency-card,
    .pricing-card,
    .step-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    /* Hero Section Mobile */
    .hero-left {
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 20px;
    }
    
    .proof-item {
        width: 100%;
    }
    
    /* Featured Artist Photo - Mobile */
    .featured-artist {
        max-width: 100%;
        height: auto;
    }
    
    .artist-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    /* Comparison Section Mobile */
    .comparison-column h3 {
        font-size: 1.3rem;
    }
    
    .comparison-column ul li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
    
    /* Transformation Section Mobile */
    .transformation-photo img {
        max-width: 100%;
        height: auto;
    }
    
    .transformation-timeline {
        padding: 25px 20px;
    }
    
    .timeline-label {
        font-size: 1.2rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    /* Contact Form Mobile */
    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px;
    }
    
    /* Navigation Mobile (if added later) */
    .nav-menu {
        flex-direction: column;
    }
    
    /* Footer Mobile */
    .footer-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .pricing-price {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
