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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #f1f5f9;
    background-color: #0f172a;
}

a {
    text-decoration: none;
}

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

/* Header & Navigation */
.header {
    background-color: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #334155;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    color: #38bdf8;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav a:hover {
    color: #38bdf8;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #0369a1;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #7dd3fc;
    border: 2px solid #38bdf8;
}

.btn-secondary:hover {
    background-color: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0 90px;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #f8fafc;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Global Sections */
section {
    padding: 90px 0;
}

section h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #f8fafc;
    letter-spacing: -0.5px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: #475569;
}

.card .icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.card h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f8fafc;
}

.card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

/* Step Cards */
.step-card {
    text-align: center;
}

.step-card p {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0369a1, #38bdf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* How It Works Section */
.how-it-works {
    background-color: #0b1120;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 50px;
}

.content-block p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    background-color: #0f172a;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
}

.pricing-card h4 {
    color: #94a3b8;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .price {
    font-size: 4rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 30px;
    line-height: 1;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 14px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-card ul li::before {
    content: '\2713';
    color: #38bdf8;
    margin-right: 12px;
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

.popular {
    border-color: #38bdf8;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #1e293b, #0f172a);
}

.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #0369a1, #38bdf8);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
    white-space: nowrap;
}

/* FAQ Section */
.faq {
    background-color: #0b1120;
}

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

.faq-item {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #475569;
}

.faq-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 14px;
}

.faq-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact > .container > p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.contact-card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card h4 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #f8fafc;
}

.contact-info p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #7dd3fc;
}

.small-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 30px;
    line-height: 1.6;
}

/* Other Plans Section */
.other-plans {
    background-color: #0f172a;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #0b1120;
    padding: 60px 0 100px;
    border-top: 1px solid #1e293b;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
}

.footer-bottom p {
    color: #64748b;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer .seo-text {
    font-size: 0.85rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer p {
    color: #94a3b8;
    margin-bottom: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 10px;
    text-align: center;
}

.legal-updated {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 40px 0 16px;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 24px 0 12px;
}

.legal-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content a {
    color: #38bdf8;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #7dd3fc;
}

.legal-content ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}

.legal-content ul li {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.legal-content ul li::before {
    content: '\2022';
    color: #38bdf8;
    font-weight: bold;
    position: absolute;
    left: 8px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 120px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Cookie Consent Bar */
.cookie-checkbox {
    display: none;
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 20px 24px;
    z-index: 1000;
    transition: transform 0.4s ease;
}

.cookie-checkbox:checked ~ .cookie-bar {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-bar-content p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-bar-content a {
    color: #38bdf8;
    text-decoration: underline;
}

.cookie-bar-content a:hover {
    color: #7dd3fc;
}

.cookie-btn {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 0.95rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    background-color: #0f172a;
}

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

.testimonial-card p {
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.8;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #334155;
    padding-top: 16px;
    margin-top: auto;
}

.testimonial-author strong {
    color: #f8fafc;
    font-size: 1rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: #0b1120;
}

.about-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.about-content > p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.about-item {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-item strong {
    color: #38bdf8;
    font-size: 1.05rem;
}

.about-item span {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Trust Guarantees */
.trust-guarantees {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 50px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-item span:last-child {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact WhatsApp Button */
.contact-whatsapp-btn {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 14px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #38bdf8;
}

.breadcrumb span {
    color: #cbd5e1;
    font-weight: 500;
}

/* Product Pages */
.product-hero {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero-content {
    position: relative;
    z-index: 1;
}

.product-label {
    display: inline-block;
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #94a3b8;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.product-label-popular {
    background: linear-gradient(to right, #0369a1, #38bdf8);
    border: none;
    color: #ffffff;
}

.product-label-best {
    background: linear-gradient(to right, #059669, #34d399);
    border: none;
    color: #ffffff;
}

.product-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1;
}

.product-period {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 500;
}

.product-savings {
    color: #34d399;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.product-hero .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Product Features */
.product-features {
    padding: 90px 0;
    background-color: #0f172a;
}

/* Product Details */
.product-details {
    padding: 90px 0;
    background-color: #0b1120;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.details-list h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 20px;
}

.details-list ul {
    list-style: none;
    padding: 0;
}

.details-list ul li {
    color: #cbd5e1;
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid #1e293b;
}

.details-list ul li:last-child {
    border-bottom: none;
}

.details-list ul li::before {
    content: '\2713';
    color: #38bdf8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Comparison Table */
.product-comparison {
    padding: 90px 0;
    background-color: #0f172a;
}

.comparison-table {
    max-width: 700px;
    margin: 40px auto 0;
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.comparison-header {
    background-color: #1e293b;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    color: #f8fafc;
    font-size: 0.95rem;
}

.comparison-header .comparison-cell a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.comparison-header .comparison-cell a:hover {
    text-decoration: underline;
}

.comparison-cell {
    padding: 14px 16px;
    color: #cbd5e1;
    font-size: 0.95rem;
    text-align: center;
    border-bottom: 1px solid #1e293b;
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 500;
    color: #e2e8f0;
}

.comparison-highlight {
    background-color: rgba(56, 189, 248, 0.08);
    color: #7dd3fc;
    font-weight: 600;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

/* Product CTA */
.product-cta {
    padding: 90px 0;
    text-align: center;
    background-color: #0b1120;
}

.product-cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.product-compare {
    font-size: 0.95rem;
    color: #94a3b8;
}

.product-compare a {
    color: #38bdf8;
    text-decoration: underline;
}

.product-compare a:hover {
    color: #7dd3fc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .popular {
        transform: scale(1);
    }

    .popular:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

    .content-block {
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .cookie-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .legal-page {
        padding: 50px 0;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }

    .product-hero h1 {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 3.5rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        font-size: 0.85rem;
    }

    .comparison-cell {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-number {
        font-size: 1.6rem;
    }

    .trust-guarantees {
        gap: 20px;
    }

    .guarantee-item {
        width: 45%;
        justify-content: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}
