/* ── SegCommerce TV Dedicated Landing Page Stylesheet ────────────────────────── */

/* Color overrides and specialized variables */
:root {
    --tv-bg-darkest: #05070d;
    --tv-bg-darker: #0a0e1a;
    --tv-bg-card: #0f1629;
    --tv-bg-card-hover: #151f38;
    --tv-border: #1e293b;
    --tv-border-active: #ef4444;
    --tv-accent: #ef4444;
    --tv-accent-glow: rgba(239, 68, 68, 0.35);
    --tv-gold: #f59e0b;
    --tv-gold-glow: rgba(245, 158, 11, 0.3);
    --tv-cyan: #06b6d4;
    --tv-green: #10b981;
}

/* Base modifications for TV page */
body.tv-page {
    background-color: var(--tv-bg-darkest);
    color: #f1f5f9;
}

.tv-page .site-header {
    background: rgba(5, 7, 13, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tv-page .site-header .nav-links a {
    color: #cbd5e1;
}

.tv-page .site-header .nav-links a:hover {
    color: #ffffff;
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.tv-hero {
    position: relative;
    padding: 130px 0 90px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 10%, #1e1b4b 0%, #0a0e1a 50%, #05070d 100%);
}

.tv-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.22) 0%, rgba(220, 38, 38, 0.05) 50%, transparent 80%);
    filter: blur(60px);
    pointer-events: none;
}

.tv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.tv-hero-title {
    font-size: clamp(2.3rem, 5.2vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    max-width: 980px;
    margin: 0 auto 24px auto;
    letter-spacing: -1px;
}

.tv-hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: #94a3b8;
    max-width: 820px;
    margin: 0 auto 36px auto;
    line-height: 1.6;
}

.tv-hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-download-pdf {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a !important;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 1.05rem;
}

.btn-download-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(245, 158, 11, 0.45);
    color: #000000 !important;
}

.tv-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1060px;
    margin: 40px auto 0 auto;
}

.tv-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.tv-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.tv-stat-label {
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ── Section Title Standard for TV Page ───────────────────────────────────── */
.tv-section-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px auto;
}

.tv-section-header h2 {
    font-size: clamp(2rem, 3.8vw, 3rem);
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.tv-section-header p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ── All Layouts Open: Showroom Section ───────────────────────────────────── */
.tv-showroom-section {
    padding: 90px 0;
    background: #070a13;
    position: relative;
}

.tv-model-card {
    background: var(--tv-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.tv-model-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
}

.tv-model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
}

.tv-model-info h3 {
    font-size: 1.6rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.tv-model-info p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 680px;
    margin: 0;
}

.tv-badge-pill {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-red {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-gold {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(6, 182, 212, 0.4);
}

.badge-purple {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

/* ── Realistic TV Frame Mockup ────────────────────────────────────────────── */
.tv-realistic-frame {
    background: #000000;
    border: 12px solid #1e293b;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.tv-frame-16-9 {
    aspect-ratio: 16 / 9;
}

.tv-real-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.tv-frame-bezel {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 800;
    color: #475569;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
}

/* ── Model 1: Super Destaque Individual ───────────────────────────────────── */
.tv-destaque-stage {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #991b1b 0%, #450a0a 90%, #2b0606 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4% 6%;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.destaque-left {
    flex: 1.2;
    z-index: 2;
    text-align: left;
}

.destaque-pill {
    background: #facc15;
    color: #78350f;
    font-size: clamp(0.75rem, 1.3vw, 1.2rem);
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 9999px;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
    letter-spacing: 0.5px;
}

.destaque-title {
    font-size: clamp(1.8rem, 3.8vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    margin: 14px 0 10px 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.destaque-desc {
    color: #fecaca;
    font-size: clamp(0.9rem, 1.4vw, 1.35rem);
    margin-bottom: 20px;
    max-width: 520px;
    line-height: 1.4;
}

.destaque-price-de {
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
    color: #cbd5e1;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 2px;
}

.destaque-price-por {
    font-size: clamp(2.8rem, 5.8vw, 6.2rem);
    font-weight: 900;
    color: #facc15;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-shadow: 0 6px 25px rgba(250, 204, 21, 0.4);
}

.destaque-price-por small {
    font-size: clamp(1.3rem, 2.4vw, 2.4rem);
    color: #ffffff;
}

.destaque-price-por .unit {
    font-size: clamp(1.2rem, 2.2vw, 2.2rem);
    color: #ffffff;
    font-weight: 800;
    margin-left: 6px;
}

.destaque-sync-badge {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.7rem, 1.1vw, 1rem);
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.destaque-right {
    flex: 0.9;
    text-align: center;
    position: relative;
    z-index: 2;
}

.destaque-hero-icon {
    font-size: clamp(80px, 14vw, 160px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
    animation: floatSlow 4s ease-in-out infinite;
}

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

/* ── Model 2: Grade Proporcional Multiuso ─────────────────────────────────── */
.tv-grid-stage {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #15803d 0%, #14532d 100%);
    padding: 2.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.tv-grid-stage.hortifruti-bg {
    background: radial-gradient(circle at center, #047857 0%, #064e3b 100%);
}

.tv-grid-stage-header {
    text-align: center;
    margin-bottom: 1.5%;
    flex-shrink: 0;
}

.tv-grid-stage-header h2 {
    font-size: clamp(1.1rem, 2.6vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(180deg, #fffbeb 0%, #fef08a 50%, #facc15 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.tv-multi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    height: 85%;
}

.tv-grid-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.tv-grid-item-img {
    height: 44%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.8vw, 32px);
}

.tv-grid-item-title {
    font-size: clamp(8px, 1vw, 12px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.2em;
    width: 100%;
}

.tv-grid-item-badge {
    background: #15803d;
    color: #ffffff;
    font-size: clamp(6px, 0.75vw, 8.5px);
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 6px;
    text-transform: uppercase;
}

.tv-grid-item-prices {
    width: 100%;
}

.tv-grid-item-de {
    font-size: clamp(7px, 0.8vw, 10px);
    color: #64748b;
    text-decoration: line-through;
    font-weight: 600;
    line-height: 1;
}

.tv-grid-item-por {
    font-size: clamp(11px, 1.5vw, 18px);
    font-weight: 900;
    color: #dc2626;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.tv-grid-item-por small {
    font-size: clamp(6px, 0.8vw, 9px);
}

.tv-grid-item-por .unit {
    font-size: clamp(6px, 0.8vw, 9px);
    color: #475569;
    margin-left: 2px;
}

/* ── Model 3: Split Screen Híbrido (Vídeo + Ofertas) ─────────────────────── */
.tv-split-stage {
    width: 100%;
    height: 100%;
    background: #0b1120;
    display: flex;
    gap: 14px;
    padding: 16px;
    box-sizing: border-box;
}

.tv-split-video-pane {
    flex: 1.35;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border-radius: 14px;
    border: 2px solid #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    text-align: center;
    overflow: hidden;
}

.tv-video-pulse-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.6);
    margin-bottom: 14px;
    animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.tv-video-label {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.tv-video-sub {
    font-size: clamp(0.75rem, 1.1vw, 0.95rem);
    color: #94a3b8;
    max-width: 360px;
    line-height: 1.4;
}

.tv-video-sponsor-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #f59e0b;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tv-split-offers-pane {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: 100%;
}

.tv-split-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Model 4: Totem Digital Vertical (9:16) ───────────────────────────────── */
.tv-totem-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.tv-totem-frame {
    background: #000000;
    border: 10px solid #1e293b;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tv-totem-stage {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, #1e1b4b 0%, #0f172a 60%, #030712 100%);
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-sizing: border-box;
    justify-content: space-between;
    position: relative;
}

.tv-totem-header {
    text-align: center;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tv-totem-header .totem-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
}

.tv-totem-header .totem-sub {
    font-size: 0.75rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tv-totem-hero-deal {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ef4444;
    border-radius: 18px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

.tv-totem-hero-deal .deal-badge {
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 8px;
}

.tv-totem-hero-deal .deal-img {
    font-size: 54px;
    line-height: 1;
    margin-bottom: 6px;
}

.tv-totem-hero-deal .deal-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.tv-totem-hero-deal .deal-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #facc15;
    line-height: 1;
    margin-top: 6px;
}

.tv-totem-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tv-totem-mini-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    color: #0f172a;
}

.tv-totem-footer {
    background: rgba(16, 185, 129, 0.15);
    border: 1px dashed rgba(16, 185, 129, 0.4);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.tv-totem-footer p {
    font-size: 0.78rem;
    color: #a7f3d0;
    font-weight: 700;
    margin: 0;
}

/* ── Model 5: Padaria 4 Produtos (Cards Grandes) ─────────────────────────── */
.tv-bakery-stage {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #78350f 0%, #451a03 100%);
    padding: 2.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.tv-bakery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    height: 85%;
    align-items: center;
}

.tv-bakery-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tv-bakery-card .b-icon {
    font-size: clamp(32px, 4.5vw, 56px);
}

.tv-bakery-card .b-name {
    font-size: clamp(10px, 1.3vw, 15px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.tv-bakery-card .b-price {
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 900;
    color: #b45309;
}

/* ── Media Capabilities Section (Vídeos e Imagens Prontas) ────────────────── */
.tv-media-section {
    padding: 90px 0;
    background: #0a0e1a;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.media-card {
    background: var(--tv-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.media-card-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.media-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.media-card p {
    color: #94a3b8;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-mockup-mini {
    background: #020617;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

/* ── Deep Dive Features Section ──────────────────────────────────────────── */
.tv-features-section {
    padding: 90px 0;
    background: #05070d;
}

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

.tv-feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.25s ease;
}

.tv-feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
}

.tv-feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
}

.tv-feature-box h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.tv-feature-box p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Scheduling Feature Showcase ─────────────────────────────────────────── */
.tv-schedule-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px;
    margin: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .tv-schedule-box {
        grid-template-columns: 1fr;
    }
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 12px;
}

.timeline-time {
    background: #ef4444;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.timeline-content h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* ── Comparison Table: Pendrive vs SegCommerce TV ────────────────────────── */
.tv-comparison-section {
    padding: 80px 0;
    background: #080c18;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--tv-bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table th.col-segcommerce {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-top: 3px solid #ef4444;
}

.comparison-table td.col-segcommerce {
    background: rgba(239, 68, 68, 0.04);
    font-weight: 600;
    color: #ffffff;
}

.comparison-table td.col-pendrive {
    color: #94a3b8;
}

/* ── PDF Presentation Banner / Download Area ─────────────────────────────── */
.tv-pdf-deck-section {
    padding: 90px 0;
    background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.pdf-deck-card {
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(245, 158, 11, 0.35);
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.15);
}

@media (max-width: 900px) {
    .pdf-deck-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
}

.pdf-deck-info h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: #ffffff;
    margin-bottom: 14px;
}

.pdf-deck-info p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pdf-deck-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pdf-deck-bullets li {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdf-deck-bullets li i {
    color: #f59e0b;
    font-style: normal;
    font-weight: 900;
}

.pdf-deck-preview-mockup {
    background: #020617;
    border: 2px solid #334155;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.pdf-deck-preview-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.pdf-cover-canvas {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pdf-cover-logo {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.pdf-cover-title {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.pdf-cover-tag {
    font-size: 10px;
    font-weight: 800;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── FAQ Section ─────────────────────────────────────────────────────────── */
.tv-faq-section {
    padding: 80px 0;
    background: #05070d;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--tv-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    color: #ef4444;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .tv-multi-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .tv-bakery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .tv-split-stage {
        flex-direction: column;
    }

    .tv-model-card {
        padding: 20px;
    }
}
