:root {
    --primary-color: #ffbe00;
    --secondary-color: #00c8ff;
    --bg-dark: #230b3b;
    --bg-card: rgba(47, 18, 75, 0.6);
    --text-white: #ffffff;
    --text-gray: #c5c5c5;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* ── Unified Type Scale ── */
    --text-xs:   0.75rem;   /* 12px */
    --text-sm:   0.875rem;  /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg:   1.125rem;  /* 18px */
    --text-xl:   1.25rem;   /* 20px */
    --text-2xl:  1.5rem;    /* 24px */
    --text-3xl:  1.875rem;  /* 30px */
    --text-4xl:  2.25rem;   /* 36px */
    --text-5xl:  3rem;      /* 48px */

    /* ── Section Spacing ── */
    --section-gap: 90px;

    /* ── Border Radius ── */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
}

/* ── Global Typography Normaliser ── */
/* All section heading h2s are unified to 2.1rem */
section h2 {
    font-family: var(--font-main);
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

section h3 {
    font-family: var(--font-main);
    font-size: var(--text-xl);
    font-weight: 700;
    color: #ffffff;
}

section p {
    font-family: var(--font-main);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-gray);
}

/* ── Unified Section Padding ── */
section {
    padding: var(--section-gap) 0;
}

/* ── Section Header Shared ── */
.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    font-size: var(--text-base);
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto;
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Decorative Blobs */
body::before, body::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

body::before {
    background: var(--primary-color);
    top: 5%;
    right: -200px;
}

body::after {
    background: #7000ff;
    top: 40%;
    left: -200px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header & Menu */
header {
    background-color: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 50px;
}

.nav-menu > ul {
    display: flex;
    flex-direction: row;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.dropdown-item a {
    white-space: nowrap;
}

.nav-item {
    position: relative;
    padding: 0;
    display: block;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
    gap: 5px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
}

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

.dropdown-item a {
    color: #333;
    padding: 8px 20px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-item a:hover {
    background-color: var(--bg-dark);
    color: #ffffff;
}

/* Sub-dropdowns */
.has-sub-dropdown {
    position: relative;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    padding: 10px 0;
}

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

/* Action Buttons */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.btn-login {
    color: var(--text-white);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-signup:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #1a0530 0%, #230b3b 60%, #0d1a3a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

/* Two-column hero layout */
.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-copy {
    flex: 1;
    text-align: left;
}

/* Badge pill */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 190, 0, 0.12);
    border: 1px solid rgba(255, 190, 0, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.15;
}

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

.hero .sub-headline {
    font-size: var(--text-lg);
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.75;
}

.trust-bar {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 36px;
    width: fit-content;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-item span:first-child {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
}

.trust-item span:last-child {
    font-size: var(--text-xs);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ── YouTube Studio Dashboard Mockup ── */
.hero-mockup {
    flex: 0 0 460px;
    position: relative;
}

.hero-mockup-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(255,190,0,0.07) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.yt-dash {
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    animation: float 5s ease-in-out infinite;
}

.yt-dash-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.yt-dash-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.yt-dash-dot.red    { background: #ff5f57; }
.yt-dash-dot.yellow { background: #ffbe2e; }
.yt-dash-dot.green  { background: #2acf6e; }

.yt-dash-title {
    margin-left: 8px;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.yt-dash-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yt-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.yt-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 16px;
}

.yt-stat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.yt-stat-value {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.yt-stat-growth {
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.yt-stat-growth.up { color: #4ade80; }

/* Bar Chart */
.yt-chart-area {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.yt-chart-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    font-weight: 600;
}

.yt-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    margin-bottom: 8px;
}

.yt-bar {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.yt-bar.active {
    background: linear-gradient(180deg, var(--primary-color), rgba(255,190,0,0.4));
    box-shadow: 0 0 12px rgba(255,190,0,0.3);
}

.yt-chart-days {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

/* Progress bar */

.yt-prog-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    margin-bottom: 8px;
    font-weight: 600;
}

.yt-prog-bar {
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.yt-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ffdd44);
    border-radius: 100px;
    animation: growBar 2s ease-in-out;
}

@keyframes growBar {
    from { width: 0%; }
    to   { width: 82%; }
}

.yt-prog-pct {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-copy { text-align: center; }
    .hero .sub-headline { max-width: 100%; margin: 0 auto 32px; }
    .trust-bar { justify-content: center; width: auto; }
    .hero-btns { justify-content: center; }
    .hero-mockup { flex: none; width: 100%; max-width: 460px; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: var(--text-3xl); }
    .yt-stat-row { grid-template-columns: 1fr; }
    .hero-mockup { display: none; }
}


/* Mobile Friendly */
/* Mobile Friendly */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Desktop menu hidden */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 2px solid var(--primary-color);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background-color: transparent;
        padding-left: 20px;
    }

    .dropdown-item a {
        color: var(--text-gray);
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none; /* Hide on small screens or move into menu */
    }
}

/* Social Proof Bar */
.social-proof-bar {
    background-color: #ffffff;
    padding: 15px 0;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.proof-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* --- Media Mentions Section --- */
.media-mentions {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.02);
}

.media-mentions::before, .media-mentions::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.media-mentions::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.media-mentions::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.media-mentions .section-header h2 {
    font-size: var(--text-4xl);
    color: var(--bg-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.media-mentions .section-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.media-marquee {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

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

.media-marquee-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.media-marquee-track a:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15) translateY(-5px);
}

.media-marquee-track img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

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

@media (max-width: 768px) {
    .media-mentions { padding: 50px 0; }
    .media-marquee-track { gap: 40px; }
    .media-marquee-track img { height: 35px; }
    .media-mentions::before, .media-mentions::after { width: 50px; }
}

/* Pricing Section */
.pricing {
    padding: var(--section-gap) 0;
    background: radial-gradient(circle at center, #160a2e 0%, var(--bg-dark) 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

.price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 190, 0, 0.3), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 190, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card.popular {
    background: rgba(255, 190, 0, 0.02);
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 190, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-card ul {
    margin-bottom: 30px;
}

.price-card li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Service Categories */
.service-categories {
    padding: var(--section-gap) 0;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
/* How It Works Redesign */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.how-it-works .section-header h2 span {
    color: var(--primary-color); /* SMM OWL Yellow */
}

.title-underline {
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.step-mockup {
    flex: 1;
    background: #1a1a2e; /* Darker mockup bg */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    max-width: 380px;
}

.step-mockup:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.browser-header {
    background: #252545;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.address-bar {
    background: #1a1a2e;
    color: #27c93f;
    font-size: 11px;
    padding: 4px 15px;
    border-radius: 15px;
    flex-grow: 1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-bar::before {
    content: "\f023";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.step-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.step-bg-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 190, 0, 0.1); /* Translucent Yellow */
    z-index: 1;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.mockup-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-row {
    display: flex;
    gap: 10px;
}

.mockup-input {
    flex: 1;
    background: #252545;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.mockup-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
    cursor: default;
    transition: var(--transition);
}

.step-arrow {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.4; }
}

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ============================================
   YouTube Shorts Section — Centered Layout
   ============================================ */
.shorts-section {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, #0d0116 0%, #0a0a18 100%);
    position: relative;
    overflow: hidden;
}

/* Background glow blobs */
.shorts-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.07) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ----- Traffic Ecosystem Section ----- */
.traffic-ecosystem {
    padding: var(--section-gap) 0;
    position: relative;
}

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

.traffic-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.traffic-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.traffic-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 190, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.traffic-card h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
}

.traffic-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traffic-card li {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.traffic-card li i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.8rem;
}

.traffic-card .card-footer {
    margin-top: auto;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .traffic-grid {
        grid-template-columns: 1fr;
    }
    .traffic-card {
        padding: 30px 25px;
    }
}

/* ----- Centered Header ----- */
.shorts-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.shorts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff5555;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.shorts-header h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.shorts-header h2 span {
    background: linear-gradient(90deg, var(--primary-color), #ffdd55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shorts-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ----- Feature Pills ----- */
.shorts-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.shorts-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    transition: var(--transition);
}

.shorts-pill i {
    color: var(--primary-color);
}

.shorts-pill:hover {
    background: rgba(255, 190, 0, 0.08);
    border-color: rgba(255, 190, 0, 0.3);
    color: #fff;
}

/* ----- Card Grid ----- */
.shorts-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.shorts-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Top glow line */
.shorts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 0 0 4px 4px;
    transition: var(--transition);
}

.shorts-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 190, 0, 0.25);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.shorts-card:hover::before {
    background: var(--primary-color);
    left: 0;
    right: 0;
}

/* Featured/popular card */
.shorts-card-featured {
    border-color: var(--primary-color);
    background: rgba(255, 190, 0, 0.05);
    transform: scale(1.04);
}

.shorts-card-featured::before {
    background: var(--primary-color);
    left: 0;
    right: 0;
}

.shorts-card-featured:hover {
    transform: scale(1.04) translateY(-10px);
}

.shorts-card-badge {
    background: var(--primary-color);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 4px;
}

.shorts-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #ff3333;
    margin-bottom: 4px;
}

.shorts-card-views {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.shorts-card-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1.5px;
    line-height: 1;
}

.shorts-card-features {
    list-style: none;
    width: 100%;
    margin: 8px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shorts-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
}

.shorts-card-features li i {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 900;
}

.shorts-card .btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
}

/* Outline button variant */
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 190, 0, 0.5);
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .shorts-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
    .shorts-card-featured {
        transform: none;
        order: -1;
    }
    .shorts-card-featured:hover {
        transform: translateY(-10px);
    }
    .shorts-header h2 {
        font-size: 1.9rem;
    }
}

/* =============================================
   SEO Content Section — LP Layout
   ============================================= */
.seo-content-section {
    padding: var(--section-gap) 0;
    background: #0d0d1a;
}

/* Shared block wrapper */
.seo-lp-block {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.seo-lp-block:last-child { border-bottom: none; }

/* Full-width section */
.seo-full { width: 100%; }

/* centered header for each block */
.seo-lp-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

/* Chip label */
.seo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 190, 0, 0.1);
    border: 1px solid rgba(255, 190, 0, 0.25);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.seo-lp-header h2,
.seo-lp-block > h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.seo-lp-header p,
.seo-lp-block > p {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: 1.8;
}

/* ── Insight Cards (2-col) ── */
.seo-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.seo-insight-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition);
}

.seo-insight-card:hover {
    border-color: rgba(255,190,0,0.25);
    transform: translateY(-6px);
    background: rgba(255,255,255,0.05);
}

.seo-insight-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,190,0,0.1);
    border: 1px solid rgba(255,190,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.seo-insight-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.seo-insight-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Comparison Table ── */
.seo-compare-table {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

.seo-compare-header,
.seo-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.seo-compare-header {
    background: rgba(255,255,255,0.07);
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.seo-compare-row {
    padding: 14px 24px;
    font-size: 14px;
    color: var(--text-gray);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.seo-compare-row:nth-child(even) {
    background: rgba(255,255,255,0.02);
}

.seo-col-bad { color: #ff6b6b; }
.seo-col-good { color: #4ade80; font-weight: 600; }

.seo-compare-header .seo-col-bad { color: #ff6b6b; }
.seo-compare-header .seo-col-good { color: #4ade80; }

/* ── Step Flow ── */
.seo-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.seo-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    transition: var(--transition);
}

.seo-step:hover {
    border-color: var(--primary-color);
    background: rgba(255,190,0,0.05);
    transform: translateY(-6px);
}

.seo-step-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.seo-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.seo-step p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.seo-step-arrow {
    font-size: 1.5rem;
    color: rgba(255,190,0,0.4);
    animation: pulse 2s infinite;
}

/* Warning box */
.seo-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 100, 60, 0.08);
    border: 1px solid rgba(255, 100, 60, 0.2);
    border-radius: 14px;
    padding: 20px 24px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.7;
}

.seo-warning-box i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.seo-warning-box strong { color: #ff6b6b; }

/* ── Split layout (Sections 4+5) ── */
.seo-lp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.seo-lp-split .seo-lp-block {
    padding: 0;
    border: none;
}

.seo-lang-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.seo-lang-chips span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Compare list */
.seo-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 22px 0 32px;
}

.seo-compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.seo-compare-list li i.fa-check { color: #4ade80; }
.seo-x { color: #4ade80 !important; } /* "No hidden charges" is a positive */

.seo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
}

.seo-cta-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 190, 0, 0.2);
}

/* ── SMMOwl Why Grid ── */
.smmowl-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.smmowl-why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.smmowl-why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.smmowl-why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 190, 0, 0.1);
    border: 1px solid rgba(255, 190, 0, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.smmowl-why-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.smmowl-why-card p {
    font-size: var(--text-sm);
    color: var(--text-gray);
    line-height: 1.6;
}

/* ── SEO CTA Banner ── */
.seo-cta-banner {
    background: linear-gradient(90deg, #1a0533 0%, #2f124b 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.seo-cta-banner-text h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.seo-cta-banner-text p {
    font-size: var(--text-base);
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .smmowl-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .smmowl-why-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .seo-two-col { grid-template-columns: 1fr; }
    .seo-lp-split { grid-template-columns: 1fr; gap: 40px; }
    .seo-steps { flex-direction: column; align-items: center; }
    .seo-step { max-width: 100%; width: 100%; }
    .seo-step-arrow { transform: rotate(90deg); }
    .seo-compare-header, .seo-compare-row { font-size: 12px; padding: 12px 14px; }
    .seo-lp-header h2, .seo-lp-block > h2 { font-size: 1.6rem; }
}


/* ── Other Services Section ── */
.other-services {
    background: #0d0d1a;
    padding: var(--section-gap) 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 190, 0, 0.1);
    border: 1px solid rgba(255, 190, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: #fff;
}

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

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


/* Features Section */
.features {
    padding: var(--section-gap) 0;
    background-color: var(--bg-dark);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-item h4 {
    font-size: var(--text-xl);
    color: #ffffff;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: var(--section-gap) 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    font-family: serif;
    color: rgba(255, 190, 0, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 190, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.author-meta {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: var(--text-base);
}

.author-title {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-gray);
    margin-top: 2px;
}

/* FAQ Section */
.faq {
    padding: var(--section-gap) 0;
    background: radial-gradient(circle at bottom right, #1a082c 0%, var(--bg-dark) 100%);
}

.accordion-item {
    background-color: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px 20px;
    color: var(--text-gray);
    display: none;
}

/* Footer */
footer {
    background-color: #1a082c;
    padding: var(--section-gap) 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col ul li a {
    color: var(--text-gray);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .testimonial-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-grid, .categories-grid, .testimonial-grid, .footer-grid, .steps-grid, .features-grid {
        grid-template-columns: 1fr;
    }
}
