* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffc300;
    --black: #000000;
    --white: #ffffff;
    --gray: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Image Placeholders - Global */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
    border: 2px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.image-placeholder.small {
    font-size: 11px;
    padding: 10px;
}

img.hero-img,
img.comparison-img,
img.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.hero-img:not([src=""]):not([src*="placeholder"]),
img.comparison-img:not([src=""]):not([src*="placeholder"]),
img.gallery-img:not([src=""]):not([src*="placeholder"]) {
    opacity: 1;
}

img.hero-img:not([src=""]):not([src*="placeholder"]) ~ .image-placeholder,
img.comparison-img:not([src=""]):not([src*="placeholder"]) ~ .image-placeholder,
img.gallery-img:not([src=""]):not([src*="placeholder"]) ~ .image-placeholder {
    opacity: 0;
    pointer-events: none;
}

/* Video Elements */
video.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

video.hero-video.fade-in {
    opacity: 1;
}

video.hero-video.fade-out {
    opacity: 0;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

/* Hero Scroll Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    pointer-events: none;
    z-index: 20;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 15;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--black);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: slideDown 0.6s ease-out;
}

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

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    color: #cccccc;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.cta-container {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
    box-shadow: 0 10px 40px rgba(255, 195, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 195, 0, 0.5);
}

.btn-large {
    padding: 25px 60px;
    font-size: 22px;
}

.urgency-text {
    margin-top: 20px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Gallery */
.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0 0;
    max-width: 900px;
}

.hero-image-slot {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.hero-image-slot:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 195, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 80px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Social Proof */
.quick-proof {
    padding: 80px 20px;
    background: var(--black);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.proof-stat {
    padding: 20px;
}

.proof-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.proof-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px 50px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    text-align: center;
}

.quick-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    font-style: italic;
}

.quick-author {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonial Bridge Section */
.testimonial-bridge {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    z-index: 5;
}

/* Quick Testimonial */
.quick-testimonial-hero {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 30px 40px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    text-align: center;
}

.quick-testimonial-hero .quick-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 15px;
    font-style: italic;
}

.quick-testimonial-hero .quick-author {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    padding: 120px 20px;
    background: #0a0a0a;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

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

.problem-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #ff4444;
    font-weight: 300;
    line-height: 1;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.problem-card p {
    color: #aaa;
    line-height: 1.8;
}

/* Solution Section */
.solution-section {
    padding: 120px 20px;
    background: var(--black);
}

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

.badge {
    display: inline-block;
    background: rgba(255, 195, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.solution-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.check {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1;
}

.benefit-list strong {
    color: var(--white);
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.benefit-list p {
    color: #aaa;
    font-size: 15px;
}

/* Before/After Comparison */
.solution-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.visual-box {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.visual-box.highlight-box {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
}

.visual-label {
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding: 8px;
    border-radius: 8px;
}

.visual-label.bad {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.visual-label.good {
    background: rgba(255, 195, 0, 0.1);
    color: var(--primary);
}

.comparison-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-slot {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 2px solid #222;
}

.visual-caption {
    text-align: center;
    font-size: 11px;
    color: #888;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.visual-arrow {
    font-size: 48px;
    color: var(--primary);
    font-weight: 900;
    flex-shrink: 0;
    transform: rotate(90deg);
}

/* Results Gallery */
.results-gallery {
    padding: 120px 20px;
    background: var(--black);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #888;
    margin-top: -60px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    background: #0a0a0a;
    border: 2px solid #222;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 195, 0, 0.3);
    z-index: 10;
}

.gallery-item .image-placeholder {
    font-size: 16px;
    font-weight: 700;
}

/* Price Reveal */
.price-reveal {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--black) 100%);
}

.value-stack {
    max-width: 600px;
    margin: 0 auto 60px;
    background: #0f0f0f;
    border: 2px solid #222;
    border-radius: 16px;
    padding: 40px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

.value-item:last-of-type {
    border-bottom: 2px solid var(--primary);
}

.value-name {
    font-size: 16px;
    color: #ddd;
    font-weight: 600;
}

.value-price {
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 0;
}

.total-label {
    font-size: 20px;
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price {
    font-size: 36px;
    color: var(--primary);
    font-weight: 900;
}

.price-reveal-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 50px;
    border-radius: 24px;
    border: 3px solid var(--primary);
}

.reveal-text {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reveal-highlight {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 30px;
}

.reveal-price {
    margin-bottom: 20px;
}

.reveal-strike {
    font-size: 32px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.reveal-current {
    font-size: 80px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.reveal-subtext {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

/* Social Proof */
.social-proof {
    padding: 120px 20px;
    background: #0a0a0a;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.quote {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 120px 20px;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #222;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-number {
    font-size: 14px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: #aaa;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 120px 20px;
    background: var(--black);
}

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

.faq-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #222;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: var(--primary);
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-toggle:hover {
    background: var(--primary);
    color: var(--black);
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--black);
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #0f0f0f;
    padding: 80px 60px;
    border-radius: 24px;
    border: 3px solid var(--primary);
    position: relative;
    box-shadow: 0 20px 80px rgba(255, 195, 0, 0.2);
}

.cta-box h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.price-box {
    margin-bottom: 40px;
}

.price-strike {
    font-size: 24px;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-current {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.price-label {
    font-size: 16px;
    color: #aaa;
}

.guarantee {
    margin-top: 30px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
}

.warning-text {
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* Footer */
.footer {
    padding: 60px 20px;
    background: #000;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content {
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid #222;
    background: var(--black);
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--white);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 30px 0 15px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.modal-body ul li {
    font-size: 15px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Contact Methods */
.contact-intro {
    font-size: 16px;
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
}

.contact-methods {
    max-width: 600px;
    margin: 0 auto;
}

.contact-method {
    background: #0a0a0a;
    border: 2px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
}

.contact-description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-email {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 195, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--primary);
    color: var(--black);
}

.contact-note {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.contact-note p {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
    }

    .before-after-container {
        flex-direction: column;
    }

    .visual-arrow {
        transform: rotate(90deg);
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .quick-testimonial {
        padding: 30px 25px;
    }

    .value-stack {
        padding: 30px 20px;
    }

    .price-reveal-box {
        padding: 40px 25px;
    }

    .reveal-current {
        font-size: 64px;
    }

    .faq-container {
        padding: 0 10px;
    }

    .faq-question-wrapper {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .comparison-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

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

    .cta-box {
        padding: 40px 30px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 18px;
    }

    .problem-section,
    .solution-section,
    .quick-proof,
    .price-reveal,
    .results-gallery,
    .social-proof,
    .features-section,
    .faq-section,
    .final-cta {
        padding: 80px 20px;
    }

    .modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-header h2 {
        font-size: 22px;
    }

    .modal-body {
        padding: 25px;
    }

    .contact-method {
        padding: 25px 20px;
    }

    .contact-email {
        font-size: 14px;
        padding: 8px 16px;
        word-break: break-all;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--black);
}

/* Loading Spinner Overlay */
.loading-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.loading-spinner-overlay.active {
    display: flex;
}

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

.spinner-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 195, 0, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-text {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse-text 1.5s ease-in-out infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
