/* ============================================
   GogoTivi - Main Stylesheet
   Domain: gogotivi.store
   Primary Color: #FFCE00 (Yellow)
   Secondary Color: #DD0000 (Red)
   Background: Black
   Last updated: 2026-06-08
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background-color: #000000;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- VARIABLES ---------- */
:root {
    --yellow: #FFCE00;
    --yellow-dark: #E6B800;
    --yellow-light: #FFE066;
    --yellow-glow: rgba(255, 206, 0, 0.25);
    --red: #DD0000;
    --red-dark: #B80000;
    --red-glow: rgba(221, 0, 0, 0.25);
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(20, 20, 20, 0.95);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h2 span {
    color: var(--yellow);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--yellow-light);
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: #000000;
    padding: 0.7rem 1.25rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--yellow-glow);
    color: #000000;
}

.btn-secondary {
    border: 1px solid var(--yellow);
    background: transparent;
    color: var(--yellow);
    padding: 0.7rem 1.25rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    display: inline-block;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-secondary {
        padding: 0.75rem 1.75rem;
        font-size: 0.875rem;
    }
}

.btn-secondary:hover {
    background: var(--yellow);
    color: #000000;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--yellow);
    background: transparent;
    color: var(--yellow);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .btn-outline {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

.btn-outline:hover {
    background: var(--yellow);
    color: #000000;
}

/* ---------- NAVBAR ---------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 70px;
        max-width: 200px;
    }
}

.nav-links {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        gap: 1.5rem;
        padding: 0;
        background: none;
        backdrop-filter: none;
        border-bottom: none;
    }
    
    .navbar {
        padding: 1rem 0;
    }
}

.nav-links.show {
    display: flex;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .nav-links a {
        font-size: 0.875rem;
        padding: 0;
    }
}

.nav-links a:hover, .nav-links a.active {
    color: var(--yellow);
}

.menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    background-color: #000000;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.postimg.cc/c4NzJkWs/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 0.35rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

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

.hero-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin: 0 auto 1.5rem;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .hero-features {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
}

.hero-features span {
    font-size: 0.7rem;
    color: #cccccc;
}

@media (min-width: 768px) {
    .hero-features span {
        font-size: 0.875rem;
    }
}

.hero-features i {
    color: var(--yellow);
    margin-right: 0.3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 1rem;
        margin: 1.5rem 0;
    }
}

.hero-stats {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .hero-stats {
        border-radius: 1.5rem;
        padding: 1.5rem;
        margin-top: 2rem;
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 70px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.65rem;
    color: #888888;
    margin-top: 0.2rem;
}

/* ---------- CAROUSEL SECTION (On-Demand Library) ---------- */
.carousel-section {
    margin: 2rem 0;
    padding: 1.5rem 0;
    background: linear-gradient(180deg, transparent, rgba(221, 0, 0, 0.05), transparent);
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.carousel-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .carousel-header h2 {
        font-size: 2rem;
    }
}

.carousel-header h2 span {
    color: var(--yellow);
}

.carousel-header .count {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 206, 0, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 40px;
}

.carousel-subtitle {
    color: #b0b0b0;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

@media (min-width: 768px) {
    .carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: fit-content;
    animation: scrollCarousel 35s linear infinite;
    will-change: transform;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 auto;
    width: 140px;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .carousel-item {
        width: 160px;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        width: 180px;
    }
}

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

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s;
}

.carousel-item:hover img {
    box-shadow: 0 15px 30px rgba(221, 0, 0, 0.2);
}

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

.carousel-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-footer p {
    font-size: 0.75rem;
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 206, 0, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 40px;
}

@media (min-width: 768px) {
    .carousel-footer p {
        font-size: 0.85rem;
        padding: 0.5rem 1.5rem;
    }
}

.carousel-footer i {
    color: var(--yellow);
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.trust-item {
    text-align: center;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 0.3rem;
}

.trust-item span {
    display: block;
    font-weight: 600;
    font-size: 0.75rem;
    color: white;
}

.trust-item small {
    color: #888888;
    font-size: 0.6rem;
}

/* ---------- INFO PARAGRAPH (Educational) ---------- */
.info-paragraph {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--yellow);
}

@media (min-width: 768px) {
    .info-paragraph {
        border-radius: 1.5rem;
        padding: 2rem;
        margin: 2rem 0;
    }
}

.info-paragraph h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--yellow);
}

.info-paragraph p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
}

.feature-card p {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.5;
}

/* ---------- PRICING SECTION ---------- */
.pricing-wrapper {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.device-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.device-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #cccccc;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.7rem;
}

.device-tab:hover, .device-tab.active {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: #000000;
    border-color: transparent;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

@media (min-width: 640px) {
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .price-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.price-card {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 1.2rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.price-card.best-value {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(20,20,20,0.98), rgba(221,0,0,0.05));
}

.best-value-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.3rem 0;
    color: var(--yellow);
}

.price-value small {
    font-size: 0.7rem;
    color: #888888;
}

.price-monthly {
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.price-features {
    list-style: none;
    margin: 0.8rem 0 1rem;
    text-align: left;
}

.price-features li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #b0b0b0;
}

.price-features i {
    color: var(--yellow);
}

.btn-price {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: #000000;
    width: 100%;
    padding: 0.6rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
    font-size: 0.75rem;
}

.btn-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--yellow-glow);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 206, 0, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 60px;
    margin: 1rem auto;
    border: 1px dashed var(--yellow);
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.7rem;
    width: fit-content;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.8rem 0;
    color: #888888;
    font-size: 1.2rem;
}

/* ---------- REVIEWS GRID ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.review-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    border-color: var(--yellow);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--yellow);
}

.reviewer-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.reviewer-info p {
    font-size: 0.65rem;
    color: #888888;
    margin: 0;
}

.review-stars {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
}

.review-text {
    font-size: 0.8rem;
    color: #b0b0b0;
    line-height: 1.5;
    font-style: italic;
}

/* ---------- COMPATIBILITY SECTION ---------- */
.compatible-section {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1.2rem;
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

@media (min-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.app-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 0.8rem;
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.app-card:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.app-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.app-card h4 {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.app-card p {
    font-size: 0.6rem;
    color: #888888;
}

.device-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.device-list span {
    font-size: 0.65rem;
    color: #b0b0b0;
}

.device-list i {
    margin-right: 0.3rem;
    color: var(--yellow);
}

/* ---------- BLOG PREVIEW ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.blog-card {
    background: var(--card-bg);
    border-radius: 1.2rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.blog-category {
    display: inline-block;
    background: rgba(255, 206, 0, 0.15);
    color: var(--yellow);
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.blog-card h3 a {
    color: white;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--yellow);
}

.blog-excerpt {
    font-size: 0.75rem;
    color: #b0b0b0;
    margin-bottom: 0.8rem;
}

.blog-meta {
    display: flex;
    gap: 0.8rem;
    color: #888888;
    font-size: 0.6rem;
    margin-bottom: 0.8rem;
}

.read-more {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
}

/* ---------- FAQ SECTION ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.faq-item {
    background: var(--card-bg);
    border-radius: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--yellow);
}

.faq-question {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.faq-answer {
    color: #b0b0b0;
    font-size: 0.8rem;
    line-height: 1.5;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* ---------- AUTHOR BOX ---------- */
.author-box {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.2rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

@media (min-width: 640px) {
    .author-box {
        flex-direction: row;
        text-align: left;
    }
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.8rem;
    color: #000000;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
}

.freshness-badge {
    display: inline-block;
    background: var(--yellow);
    color: #000000;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--red), var(--yellow));
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.cta-banner h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.cta-banner p {
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.8rem;
}

.cta-banner .btn-primary {
    background: #000000;
    color: var(--yellow);
}

.cta-banner .btn-primary:hover {
    background: #000000;
    color: var(--red);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ---------- FOOTER ---------- */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding: 1.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: white;
}

.footer-col a {
    display: block;
    color: #888888;
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: #888888;
    font-size: 0.6rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- TABLE WRAPPER ---------- */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
}

.comparison-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0.8rem;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid var(--border-color);
    padding: 0.6rem;
    text-align: left;
    font-size: 0.7rem;
}

.comparison-table th {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: #000000;
    font-weight: 700;
}

.comparison-table td {
    color: #b0b0b0;
}

/* ---------- SECTION HEADER ---------- */
.section-header {
    text-align: center;
    margin: 2rem 0 1.5rem;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ---------- EEAT STATS ---------- */
.eeat-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

@media (min-width: 640px) {
    .eeat-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.eeat-stat-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0.8rem;
    padding: 0.8rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.eeat-stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--yellow);
}

.eeat-stat-label {
    font-size: 0.65rem;
    color: #888888;
    margin-top: 0.2rem;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: #888;
}

.breadcrumb a {
    color: var(--yellow);
}

.breadcrumb span {
    margin: 0 0.3rem;
}