* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(145deg, #1a1a2e, #252540);
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

s {
    color: #888;
    opacity: 0.8;
}

/* ==================== TOPBAR ==================== */
.topbar {
    background: #FF9900;
    color: #000;
    padding: 12px 0;
    font-weight: 600;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.topbar .offer-text {
    font-size: 1em;
}

.topbar #countdown {
    font-weight: 700;
}

.top-cta {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.top-cta:hover {
    background: #333;
    transform: scale(1.05);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 .highlight {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero .subtitle {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.hero .description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s ease-out;
}

.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95em;
    animation: fadeInUp 1.6s ease-out;
}

.trust-badges span {
    opacity: 0.9;
}

/* ==================== BUTTONS ==================== */
.cta-button {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: #FF9900;
    color: #000;
}

.cta-button.primary:hover {
    background: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3em;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 153, 0, 0); }
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    background: #111;
    padding: 50px 0;
    border-bottom: 1px solid #222;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 800;
    color: #FF9900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1em;
    color: #888;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 50px;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    background: #0f0f0f;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.problem-item p {
    color: #aaa;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
    background: #0a0a0a;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.solution-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #fff;
}

.solution-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== CONTENT TYPES ==================== */
.content-types {
    background: #0f0f0f;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.content-card {
    background: linear-gradient(145deg, #1e1e2f, #252540);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s;
}

.content-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.card-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.content-card h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #fff;
}

.content-card p {
    font-size: 0.9em;
    color: #888;
}

/* ==================== DEMO SECTION ==================== */
.demo-section {
    background: #0a0a0a;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
    background: #0f0f0f;
}

.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.comparison-table th {
    background: #FF9900;
    color: #000;
    font-weight: 700;
    font-size: 1.1em;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.comparison-table td {
    color: #ddd;
}

.comparison-table td.highlight-col {
    background: rgba(102, 126, 234, 0.15);
    color: #fff;
    font-weight: 600;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table tr:hover td.highlight-col {
    background: rgba(102, 126, 234, 0.25);
}

.comparison-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #FF9900;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF9900 0%, #e68900 100%);
    color: #000;
    font-size: 2em;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 25px;
}

.step-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #fff;
}

.step-item p {
    color: #aaa;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: #0f0f0f;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a2e, #252540);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.8;
}

.author strong {
    display: block;
    color: #FF9900;
    margin-bottom: 3px;
}

.author span {
    color: #888;
    font-size: 0.9em;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background: #0a0a0a;
}

.pricing-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF9900;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9em;
}

.pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    margin-top: 10px;
}

.price {
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 4em;
    font-weight: 800;
    color: #FFD700;
    display: block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05em;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    font-size: 1.2em;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: #0f0f0f;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF9900;
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.1em;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.8em;
    color: #FF9900;
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #667eea;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #aaa;
    line-height: 1.8;
    margin: 0;
}

/* FAQ Page Categories */
.faq-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 1.5em;
    color: #FF9900;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: #fff;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.final-offer {
    margin-bottom: 30px;
}

.limited {
    font-size: 1.5em;
    color: #FFD700;
}

.limited strong {
    font-size: 1.2em;
}

.final-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== FOOTER ==================== */
footer {
    background: #050505;
    color: #666;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #222;
}

footer p {
    margin: 5px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FF9900;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: #0a0a0a;
    padding: 20px 0;
    border-bottom: 1px solid #222;
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo:hover {
    color: #FF9900;
}

/* ==================== LEGAL CONTENT ==================== */
.legal-content {
    background: linear-gradient(145deg, #1a1a2e, #252540);
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.legal-content .last-updated,
.legal-content .tagline {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    font-size: 1em;
}

.legal-content .tagline {
    color: #FF9900;
    font-size: 1.2em;
}

.legal-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.legal-section h2 {
    font-size: 1.4em;
    color: #FF9900;
    margin-bottom: 15px;
    text-align: left;
}

.legal-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.legal-section ul li::before {
    content: "•";
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* About Page Specific */
.about-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.about-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.about-hero h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}

.features-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-box {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid #667eea;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.feature-box p {
    color: #aaa;
    margin: 0;
}

.cta-box {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.contact-hero h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards {
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.contact-card.main-contact {
    background: linear-gradient(145deg, #1a1a2e, #252540);
    border: 2px solid #FF9900;
    padding: 40px;
    margin-bottom: 30px;
}

.card-emoji {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.contact-card p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-email {
    display: inline-block;
    font-size: 1.5em;
    font-weight: 700;
    color: #FF9900;
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(255, 153, 0, 0.1);
    border: 2px solid #FF9900;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: #FF9900;
    color: #000;
}

.response-time {
    margin-top: 15px;
    font-size: 0.9em;
    color: #888 !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.legal-section a {
    color: #FF9900;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* ==================== DEMO ARTICLES PAGE ==================== */
.demo-hero {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 50px;
}

.demo-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.demo-hero h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.demo-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.demo-card {
    background: linear-gradient(145deg, #1a1a2e, #252540);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-card:hover {
    border-color: #FF9900;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.2);
}

.demo-card-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
}

.demo-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.demo-card p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.demo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF9900 0%, #e68900 100%);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.demo-card:hover .demo-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.05);
}

.demo-note {
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid #FF9900;
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    margin-bottom: 40px;
}

.demo-note p {
    color: #ddd;
    margin: 0;
    font-size: 1.05em;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .stats,
    .problems-grid,
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    
    .section h2 {
        font-size: 1.8em;
    }
    
    .stats,
    .problems-grid,
    .solution-grid,
    .content-grid,
    .steps-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .topbar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .current-price {
        font-size: 3em;
    }
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a2e, #252540);
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-content h2 {
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 15px;
}

.modal-message {
    font-size: 1.1em;
    color: #aaa;
    margin-bottom: 30px;
}

.modal-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.modal-price {
    margin-bottom: 20px;
}

.modal-label {
    display: block;
    color: #888;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.modal-amount {
    display: block;
    font-size: 2.5em;
    font-weight: 800;
    color: #FF9900;
    margin-bottom: 5px;
}

.modal-original {
    color: #666;
    text-decoration: line-through;
    font-size: 1em;
}

.modal-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.modal-features li {
    padding: 8px 0;
    color: #ddd;
    font-size: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-cta {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 25px;
    }
    
    .modal-content h2 {
        font-size: 1.8em;
    }
    
    .modal-amount {
        font-size: 2em;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
    }
    
    .page-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-content h1 {
        font-size: 1.8em;
    }
    
    .legal-section {
        padding: 20px;
    }
    
    .about-hero,
    .contact-hero,
    .demo-hero {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-email {
        font-size: 1.2em;
        padding: 12px 20px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-card {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}