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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.preloader-logo .site-name {
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
}

.preloader-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    color: #6b7280;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #2563eb;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.hero-pricing {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
}

.price-details {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
}

.availability-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

.hero-cta {
    text-align: left;
}

.urgency-message {
    margin-top: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-visual {
    height: 200px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    padding: 0.25rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.25rem;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
}

/* Specifications Section */
.specifications {
    padding: 5rem 0;
    background: #f8fafc;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.specs-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.spec-category h3 {
    font-size: 1rem;
    color: #2563eb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.spec-label {
    color: #6b7280;
}

.spec-value {
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: #fff;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.trust-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.trust-badge h3 {
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: #6b7280;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
}

.stat-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-stars {
    color: #fbbf24;
}

.stat-source {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.urgency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.urgency-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.urgency-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.urgency-feature svg {
    width: 20px;
    height: 20px;
}

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

.urgency-btn {
    background: #fff;
    color: #1e40af;
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.urgency-btn:hover {
    background: #f8fafc;
    color: #1e3a8a;
}

.urgency-guarantee {
    margin-top: 1rem;
}

.guarantee-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Purchase Section */
.purchase {
    padding: 5rem 0;
    background: #f8fafc;
}

.purchase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    border-radius: 1rem;
}

.purchase-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.purchase-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.purchase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.purchase-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.purchase-feature svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.purchase-pricing {
    margin-bottom: 2rem;
}

.price-display {
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
}

.availability-icon {
    width: 18px;
    height: 18px;
}

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

.purchase-btn {
    width: 100%;
    text-align: center;
}

.purchase-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.purchase-guarantee svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #fff;
}

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

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #f8fafc;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
}

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

.faq-item.active .faq-answer {
    /* max-height handled by JS */
    padding: 1rem 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-img {
    width: 100%;
    border-radius: 1rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
}

.final-cta {
    background: #2563eb;
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
}

.final-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.final-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta .btn-primary {
    background: #fff;
    color: #2563eb;
}

.final-cta .btn-primary:hover {
    background: #f8fafc;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

.affiliate-disclosure {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-scroll {
    max-height: 60vh;
    overflow-y: auto;
}

.modal-scroll h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.modal-scroll h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.modal-scroll p {
    margin-bottom: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.modal-scroll ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.modal-scroll li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-content,
    .specs-content,
    .urgency-content,
    .purchase-card,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

    .trust-badges,
    .trust-stats {
        grid-template-columns: 1fr;
    }

    .purchase-features {
        grid-template-columns: 1fr;
    }

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

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