:root {
    --primary-color: #230b3b;
    --secondary-color: #ffffff;
    --accent-color: #ffab00; /* SMM OWL Yellow */
    --link-color: #2f5aae;
    --text-color: #ffffff;
    --dark-bg: #121212;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --pricing-border: #e8f4ec;
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: #333;
    background-color: var(--secondary-color);
}

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

h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.05rem, 3.2vw, 1.15rem);
    line-height: 1.25;
    font-weight: 800;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: rgba(0,0,0,0.2);
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.arrow-down {
    border: solid var(--secondary-color);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.has-dropdown:hover .arrow-down {
    transform: rotate(-135deg);
    border-color: var(--accent-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 10px 10px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border-top: 3px solid var(--accent-color);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: #333 !important;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    transition: 0.2s;
}

.dropdown li a:hover {
    background: #f8f9fa;
    color: var(--accent-color) !important;
    padding-left: 30px;
}

.btn-login, .btn-signup {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.btn-login {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color) !important;
}

.btn-signup {
    background-color: var(--accent-color);
    color: #000 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    fill: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, rgba(35,11,59,0.95) 0%, rgba(18,18,18,0.9) 100%), url('https://smmowl.com/wp-content/uploads/2022/08/bg21Asset-9@4x-100-scaled-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section h1 span {
    color: var(--accent-color);
}

.sub-headline {
    font-size: 1.3rem;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(255, 171, 0, 0.3);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: #e69900;
    box-shadow: 0 8px 25px rgba(255, 171, 0, 0.4);
}

/* New Trust/Media Section */
.trust-bar-section {
    text-align: center;
}

.trust-bar-section .container {
    max-width: 1140px;
}

.trust-title {
    font-size: 29px;
    font-weight: 700;
    color: #351276;
    margin-bottom: 0;
    text-align: center;
}

/* Floating Trust Card */
.floating-trust-container {
    margin-top: -50px;
    position: relative;
    z-index: 20;
    margin-bottom: 60px;
}

.floating-trust-container #sliderContainer {
    /* Background behind the Trustpilot slider bar */
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}

.floating-trust-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    border: 1px solid #eee;
}

.trustpilot-card {
    /* slider-only layout (avoid old two-column flex styling) */
    display: block;
    padding: 22px 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.trust-item .icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item .text {
    font-size: 1rem;
    font-weight: 600;
    color: #351276;
    line-height: 1.3;
}

.trust-item .text span {
    color: var(--accent-color);
    font-weight: 800;
}

@media (max-width: 768px) {
    .floating-trust-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .trust-item {
        justify-content: center;
    }
}

/* Live marquee styles (matches smmowl.com #media-mentions) */
#media-mentions {
    background: white;
    padding: 40px 0;
}

.media-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.media-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    gap: 50px;
    align-items: center;
}

.media-marquee-track a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-marquee-track img {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .media-marquee-track img {
        height: 50px;
        max-width: 140px;
    }
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item img {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.05);
}

.cta-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.link-secondary {
    color: #351276; /* readable on light sections */
    text-decoration: underline;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.link-secondary:hover {
    color: var(--accent-color);
    opacity: 1;
}

.hero-section .link-secondary {
    /* Keep readable on the dark hero background */
    color: rgba(255,255,255,0.92);
}

.btn-primary:focus-visible,
.btn-buy:focus-visible,
.service-card:focus-visible,
.faq-header:focus-visible,
.footer-col a:focus-visible,
.dropdown li a:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* Typography system (minimal but consistent) */
h1, h2, h3, h4 {
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.65;
}

/* Stats Strip */
.stats-strip {
    background-color: #E8F4EC;
    padding: 40px 0;
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.section-sub-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

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

.pricing-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    background-color: var(--accent-color);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pkg-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 10px;
}

.pkg-views {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pkg-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    background: #230b3b;
    padding: 10px;
    border-radius: 5px;
}

.old-price {
    text-decoration: line-through;
    font-size: 1rem;
    color: #aaa;
    margin-left: 5px;
}

.pkg-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
    display: inline-block;
}

.pkg-features li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    color: #555;
}

.pkg-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-buy {
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-buy:hover {
    background-color: #e69900;
    transform: translateY(-2px);
}

.pricing-trust-lines {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #777;
}

.pricing-trust-lines span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Why It Works */
.why-it-works-section { padding: 80px 0; background: var(--light-bg); }
.algorithm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.algorithm-grid .card { padding: 30px; border-radius: 10px; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.algorithm-grid .icon { font-size: 2.5rem; margin-bottom: 20px; }
.bg-green { border-top: 5px solid #28a745; }
.bg-blue { border-top: 5px solid #007bff; }
.bg-amber { border-top: 5px solid #ffc107; }

/* When to Buy */
.when-to-buy-section { padding: 80px 0; }
.use-case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.use-case-card { display: flex; gap: 20px; padding: 25px; border: 1px solid #eee; border-radius: 8px; }
.use-case-card .icon { font-size: 2rem; flex-shrink: 0; }

/* Safety */
.safety-section { padding: 80px 0; background: #fffcf5; }
.myth-reality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.myth-card { display: flex; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.side-myth { background: #fff1f1; padding: 20px; flex: 1; border-right: 1px solid #eee; }
.side-reality { background: #f1fff1; padding: 20px; flex: 1; }
.side-myth h4 { color: #dc3545; margin-bottom: 10px; }
.side-reality h4 { color: #28a745; margin-bottom: 10px; }
.legal-disclaimer { text-align: center; font-size: 13px; color: #777; margin-top: 40px; }

/* Testimonials */
.testimonials-section { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.testimonial-card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.stars { color: #ffc107; margin-bottom: 15px; }
.quote { font-style: italic; margin-bottom: 20px; color: #444; }
.author { display: flex; align-items: center; gap: 15px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; background: #230b3b; color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.info .name { display: block; font-weight: 700; color: #333; }
.info .role { font-size: 12px; color: #777; }
.aggregate-rating { text-align: center; margin-top: 50px; font-weight: 500; font-size: 14px; }
.google-reviews { color: #007bff; text-decoration: none; margin-left: 10px; }

/* Comparison Table */
.comparison-section { padding: 80px 0; background: #f9f9f9; }
.table-responsive { overflow-x: auto; margin-top: 40px; }
.comparison-table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 20px; text-align: center; border: 1px solid #eee; }
.comparison-table th { background: #fdfdfd; font-weight: 600; color: #555; }
.comparison-table th.highlight, .comparison-table td.highlight { background: #E8F4EC; font-weight: 700; color: #230b3b; }
.comparison-table tr.featured { background: #fff; }
.comparison-footer { text-align: center; font-size: 14px; color: #666; margin-top: 30px; }

/* How it Works */
.how-it-works-section { padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; margin-top: 40px; }
.step-card { position: relative; padding: 20px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: #230b3b; color: white; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 700; }

/* Media Section */
.media-section { padding: 60px 0; background: white; text-align: center; }
.media-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.media-logos img { height: 45px; filter: none; opacity: 1; transition: 0.3s; }
.media-logos img:hover { transform: scale(1.05); }

/* FAQ */
.faq-section { padding: 80px 0; background: #f8f9fa; }
.faq-accordion { max-width: 900px; margin: 40px auto 0; }
.faq-item { background: white; border: 1px solid #eee; margin-bottom: 10px; border-radius: 6px; overflow: hidden; }
.faq-header { padding: 20px; font-weight: 600; cursor: pointer; position: relative; transition: background 0.2s; }
.faq-header:hover { background: #f1f1f1; }
.faq-header::after { content: '+'; position: absolute; right: 20px; font-size: 20px; }
.faq-item.active .faq-header { background: #f1f1f1; border-bottom: 1px solid #eee; }
.faq-item.active .faq-header::after { content: '-'; }
.faq-content { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); }
.faq-item.active .faq-content { padding: 20px; max-height: 1000px; }

/* Latest Blogs (Instagram) */
.latest-blogs-section {
    padding: 90px 0;
    background: #ffffff;
}

.latest-blogs-section h2 {
    margin-bottom: 35px;
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.latest-blogs-loading,
.latest-blogs-error {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.latest-blogs-error {
    color: var(--accent-color);
    font-weight: 700;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.blog-card-image {
    background: #f8f9fa;
}

.blog-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 16px 16px 18px;
}

.blog-card-date {
    font-size: 12px;
    font-weight: 700;
    color: #777;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 10px;
}

.blog-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .latest-blogs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .latest-blogs-grid { grid-template-columns: 1fr; }
    .blog-card img { height: 150px; }
    .cta-actions a.btn-primary,
    .cta-actions a.link-secondary,
    .auto-views-actions a.btn-primary,
    .campaign-actions a.btn-primary,
    .bulk-actions a.btn-primary {
        width: 100%;
        max-width: 420px;
    }

    .campaign-support-cta p {
        margin-top: 10px;
    }
}

/* Related Services */
.related-services { padding: 40px 0; }
.services-grid-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.service-card { background: #230b3b; color: white; text-align: center; padding: 20px; text-decoration: none; border-radius: 8px; font-weight: 600; transition: transform 0.2s; }
.service-card:hover { transform: translateY(-3px); background: #3e1a5e; }

/* Final CTA */
.final-cta { padding: 80px 0; background: #230b3b; color: white; text-align: center; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p { margin-bottom: 40px; opacity: 0.8; }

/* Service Section */
.service-feature-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: #351276;
    margin-bottom: 50px;
    width: 100%;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

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

.service-features li {
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--accent-color);
    font-weight: bold;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(53, 18, 118, 0.1);
}

@media (max-width: 991px) {
    .two-col-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-features li {
        justify-content: center;
    }
    .service-image {
        order: -1;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #230b3b;
        padding: 20px;
        z-index: 1000;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }

    .has-dropdown {
        width: 100%;
    }

    .has-dropdown > a {
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        display: none;
        padding: 10px 0;
        border-top: none;
        width: 100%;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        color: rgba(255,255,255,0.8) !important;
        padding: 10px 20px;
    }

    .menu-toggle { display: block; }
    .hero-section { padding: 80px 0 60px; }
    .hero-section h1 { font-size: 2rem; }
    .sub-headline { font-size: 1.1rem; margin-bottom: 30px; }
    .grid-stats { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .algorithm-grid, .testimonials-grid, .steps-grid, .services-grid-cards, .use-case-grid, .myth-reality-grid { grid-template-columns: 1fr; }
    .pricing-section { padding-bottom: 100px; }
}
/* Benefits Section */
.benefits-section { padding: 80px 0; background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.benefit-card { background: #fdfdfd; padding: 30px; border-radius: 12px; border: 1px solid #eee; display: flex; gap: 20px; align-items: flex-start; transition: transform 0.3s; }
.benefit-card:hover { transform: translateY(-5px); border-color: var(--accent-color); }
.benefit-card .icon { font-size: 2.5rem; flex-shrink: 0; }
.benefit-card h3 { color: #351276; margin-bottom: 10px; text-align: left; }

/* Why Choose Us Refined */
.why-choose-section { padding: 80px 0; background: #230b3b; color: white; }
.why-choose-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; text-align: center; }
.choose-item .icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--accent-color); }
.choose-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--accent-color); }
.choose-item p { font-size: 0.9rem; opacity: 0.8; }

/* Real vs Fake Comparison */
.real-vs-fake-section { padding: 80px 0; background: #fffcf5; }
.comparison-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.comp-column { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.comp-column.real { border-top: 5px solid #28a745; }
.comp-column.fake { border-top: 5px solid #dc3545; }
.comp-column h3 { margin-bottom: 30px; }
.comp-list { list-style: none; }
.comp-list li { padding: 12px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; }
.comp-list li:last-child { border-bottom: none; }
.comp-list i { font-weight: bold; }
.real .comp-list i { color: #28a745; }
.fake .comp-list i { color: #dc3545; }

@media (max-width: 991px) {
    .benefits-grid, .comparison-v2 { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .why-choose-grid .choose-item:last-child { grid-column: span 2; }
}

/* Delivery Assurance */
.delivery-assurance-section {
    padding: 80px 0;
    background: #ffffff;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.assurance-card {
    background: #fffcf5;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    text-align: center;
}

.assurance-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #230b3b;
    color: #fff;
    font-size: 1.4rem;
}

.assurance-card h3 {
    color: #351276;
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.assurance-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Organic View Tips */
.view-tips-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.tip-card {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.tip-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.tip-card h3 {
    color: #351276;
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.tip-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Bulk Support */
.bulk-support-section {
    padding: 80px 0;
    background: #ffffff;
}

.bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bulk-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.bulk-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #351276;
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.bulk-card h3 {
    color: #351276;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.bulk-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.bulk-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Campaign Support CTA */
.campaign-support-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.campaign-support-cta p {
    max-width: 780px;
    margin: 0 auto;
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 25px;
}

.campaign-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Auto Views */
.auto-views-section {
    padding: 80px 0;
    background: #ffffff;
}

.auto-views-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.auto-views-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    text-align: center;
}

.auto-views-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #351276;
    color: #fff;
    font-size: 1.35rem;
}

.auto-views-card h3 {
    color: #351276;
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.auto-views-card p {
    color: #666;
    font-size: 0.95rem;
}

.auto-views-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .assurance-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .bulk-grid { grid-template-columns: 1fr; }
    .auto-views-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #230b3b 0%, #121212 100%);
    color: #fff;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-col.branding p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: #351276;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.social-links a:hover {
    background: #ffab00;
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
