/**
 * HOT 4K - Pages & Components Stylesheet
 * Styles for all page templates and reusable components
 */

/* ==========================================================================
   Page Breadcrumbs
   ========================================================================== */

.page-breadcrumbs {
    padding: 20px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumbs {
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.breadcrumb-item.active span {
    color: var(--text-primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
    opacity: 0.5;
    margin-left: 8px;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */

.page-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Channels Page
   ========================================================================== */

/* Channel Stats Bar */
.channel-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.channel-stat {
    text-align: center;
}

.channel-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.channel-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .channel-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-info {
    margin-bottom: 12px;
}

.category-info h3 {
    font-size: 1.25rem;
    margin: 0 0 5px;
}

.category-count {
    font-size: 14px;
    color: var(--accent-orange);
    font-weight: 600;
}

.category-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight-tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Countries Grid */
.country-search-wrapper {
    max-width: 400px;
    margin: 0 auto 40px;
}

.country-search {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 20px;
}

.country-search .search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    margin-right: 12px;
}

.country-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}

.country-search input::placeholder {
    color: var(--text-muted);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.country-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s;
}

.country-card:hover {
    border-color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.05);
}

.country-flag {
    font-size: 32px;
}

.country-info h4 {
    font-size: 14px;
    margin: 0 0 4px;
}

.country-count {
    font-size: 12px;
    color: var(--accent-orange);
    font-weight: 600;
}

.country-popular {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.4;
    opacity: 0.8;
}

.countries-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Sports Leagues Grid */
.sports-leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.league-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.league-icon {
    font-size: 28px;
}

.league-info strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.league-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* PPV Banner */
.sports-ppv-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    border-radius: 16px;
}

.ppv-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ppv-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
}

.ppv-badge svg {
    width: 24px;
    height: 24px;
}

.ppv-text h3 {
    margin: 0 0 5px;
    font-size: 1.25rem;
}

.ppv-text p {
    margin: 0;
    opacity: 0.9;
}

.sports-ppv-banner .btn {
    background: #fff;
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .sports-ppv-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .ppv-content {
        flex-direction: column;
    }
}

/* 24/7 Channels Section */
.channels-247-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.channels-247-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.channels-247-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.channels-247-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.channels-247-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-muted);
}

.channels-247-list li svg {
    color: var(--accent-green);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.visual-item {
    padding: 20px 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s;
}

.visual-item:hover {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .channels-247-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Quality Grid */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quality-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
}

.quality-badge svg {
    width: 28px;
    height: 28px;
}

.quality-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.quality-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Reseller Page
   ========================================================================== */

.reseller-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
}

.highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.highlight-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent-orange);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Reseller Tiers */
.reseller-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tier-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tier-popular {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.tier-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-orange);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tier-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
}

.tier-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.tier-credits {
    font-size: 14px;
    color: var(--text-muted);
}

.tier-price {
    text-align: center;
    margin-bottom: 20px;
}

.tier-price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.tier-price-per {
    font-size: 14px;
    color: var(--text-muted);
}

.tier-margin {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.tier-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-tier {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-tier:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.tiers-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 1200px) {
    .reseller-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-popular {
        transform: none;
    }
}

@media (max-width: 576px) {
    .reseller-tiers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Hero Section */
.blog-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-hero-section .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--accent-orange-rgb), 0.15);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 30px;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.blog-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blog-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
}

.blog-stat-icon {
    font-size: 18px;
}

.blog-stat-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Featured Post Card */
.featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: all 0.3s;
}

.featured-post-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-post-thumbnail {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.featured-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.featured-post-card:hover .featured-post-thumbnail img {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.featured-post-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.featured-post-title a:hover {
    color: var(--accent-orange);
}

.featured-post-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.featured-post-content .btn {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }
    
    .featured-post-content {
        padding: 25px;
    }
    
    .featured-post-title {
        font-size: 1.4rem;
    }
}

/* Blog Section Title */
.blog-section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.posts-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .posts-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .posts-grid,
    .posts-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Post Card */
.post-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.post-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.post-thumbnail {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.post-thumbnail-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    opacity: 0.3;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.post-category {
    padding: 4px 10px;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 20px;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
}

.post-category:hover {
    background: var(--accent-orange);
    color: #fff;
}

.post-date {
    color: var(--text-muted);
}

.post-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.post-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.post-title a:hover {
    color: var(--accent-orange);
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.post-read-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.post-read-more:hover {
    gap: 8px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s;
}

.blog-pagination a:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.blog-pagination .current {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border-radius: 16px;
}

.no-posts svg {
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.no-posts h3 {
    margin-bottom: 10px;
}

.no-posts p {
    color: var(--text-muted);
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.single-post-header {
    padding: 60px 0 40px;
    background: var(--bg-dark);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 20px;
}

.single-post-excerpt {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.single-post-thumbnail {
    margin-bottom: 0;
}

.single-post-thumbnail img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
}

.single-post-section {
    padding-top: 40px;
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

@media (max-width: 992px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }
}

.single-post-content {
    max-width: 100%;
}

/* Post Body */
.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-body h2,
.post-body h3,
.post-body h4 {
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.post-body p {
    margin-bottom: 24px;
}

.post-body a {
    color: var(--accent-orange);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.post-body ul,
.post-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-body blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(var(--accent-orange-rgb), 0.05);
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.post-body pre {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 30px 0;
}

.post-body code {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Post Tags */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.post-tags>span {
    color: var(--text-muted);
    font-size: 14px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.tag:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

/* Post Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0 30px;
}

.post-share>span {
    color: var(--text-muted);
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn:hover {
    border-color: currentColor;
}

.share-twitter:hover {
    color: #1da1f2;
    background: rgba(29, 161, 242, 0.1);
}

.share-facebook:hover {
    color: #4267b2;
    background: rgba(66, 103, 178, 0.1);
}

.share-whatsapp:hover {
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
}

.share-copy:hover {
    color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.1);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin: 30px 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.author-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.author-bio {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.post-nav-item {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.post-nav-item:hover {
    border-color: var(--accent-orange);
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.nav-label svg {
    width: 16px;
    height: 16px;
}

.nav-title {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
}

.post-nav-next {
    text-align: right;
}

.post-nav-next .nav-label {
    justify-content: flex-end;
}

@media (max-width: 576px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-nav-next {
        text-align: left;
    }

    .post-nav-next .nav-label {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .comment {
    margin-bottom: 25px;
}

.comment-body {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.comment-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.comment-content-wrap {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.comment-author-name a {
    color: var(--text-primary);
    text-decoration: none;
}

.comment-author-name a:hover {
    color: var(--accent-orange);
}

.comment-date {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.comment-text p {
    margin: 0 0 10px;
}

.comment-text p:last-child {
    margin-bottom: 0;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-actions a,
.comment-actions span a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.comment-actions a:hover {
    color: var(--accent-orange);
}

.comment-awaiting-moderation {
    font-size: 13px;
    color: var(--accent-orange);
    font-style: italic;
    margin-bottom: 10px;
}

/* Nested comments */
.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
}

/* Comment form */
.comment-form {
    margin-top: 40px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.comment-form .required {
    color: var(--accent-orange);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(var(--accent-orange-rgb), 0.1);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form p {
    margin-bottom: 20px;
}

.comment-form .submit-comment {
    margin-top: 10px;
}

.comment-reply-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.comment-reply-title small {
    font-size: 14px;
    margin-left: 10px;
}

.comment-reply-title small a {
    color: var(--accent-orange);
}

.comment-navigation {
    margin: 30px 0;
}

.comment-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.comment-navigation a {
    color: var(--accent-orange);
    text-decoration: none;
}

.no-comments {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 576px) {
    .comment-body {
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-list .children {
        padding-left: 20px;
    }
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
}

.widget-title {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--accent-orange-rgb), 0.05) 100%);
    border-color: rgba(var(--accent-orange-rgb), 0.2);
    text-align: center;
}

.sidebar-cta .cta-icon {
    margin-bottom: 15px;
}

.sidebar-cta .cta-icon svg {
    color: var(--accent-orange);
}

.sidebar-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Search Widget */
.search-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.search-submit {
    padding: 12px 15px;
    background: var(--accent-orange);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.search-submit:hover {
    background: var(--accent-red);
}

.search-submit svg {
    width: 18px;
    height: 18px;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-title {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 6px;
}

.recent-post-title:hover {
    color: var(--accent-orange);
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.categories-list a:hover {
    color: var(--accent-orange);
}

.cat-count {
    padding: 2px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Quick Links Widget */
.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-links-list li:last-child {
    border-bottom: none;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.quick-links-list a:hover {
    color: var(--accent-orange);
}

.quick-links-list svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.quick-links-list a:hover svg {
    color: var(--accent-orange);
}

/* ==========================================================================
   Setup Pages
   ========================================================================== */

.setup-device-hero .device-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 20px;
}

.setup-device-hero .device-hero-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.setup-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.setup-difficulty,
.setup-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.setup-difficulty.easy svg {
    color: var(--accent-green);
}

.section-title-left {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.requirement-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

.requirement-text strong {
    display: block;
    margin-bottom: 4px;
}

.requirement-text span {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

.no-account-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(var(--accent-orange-rgb), 0.05);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    border-radius: 12px;
}

.no-account-banner p {
    margin: 0;
    color: var(--text-muted);
}

/* Setup Steps */
.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.setup-step {
    display: flex;
    gap: 25px;
}

.setup-step .step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    position: static;
    transform: none;
}

.step-content {
    flex: 1;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setup-step:last-child .step-content {
    border-bottom: none;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-content>p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.step-substeps {
    margin: 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.step-substeps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.step-tip {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(var(--accent-orange-rgb), 0.05);
    border-left: 3px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.step-tip svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.step-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.code-label {
    color: var(--text-muted);
    font-size: 14px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.step-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(135, 206, 235, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 10px;
    color: var(--accent-green);
}

.step-success svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Devices Grid (Setup Hub) */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.device-card {
    position: relative;
    display: block;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.device-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.device-popular {
    border-color: var(--accent-orange);
}

.device-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    background: var(--accent-orange);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.device-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 14px;
    margin-bottom: 20px;
}

.device-icon svg {
    width: 30px;
    height: 30px;
    color: var(--accent-orange);
}

.device-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.device-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.device-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.device-difficulty {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 12px;
}

.device-difficulty.easy {
    background: rgba(135, 206, 235, 0.1);
    color: var(--accent-green);
}

.device-difficulty.medium {
    background: rgba(var(--accent-orange-rgb), 0.1);
    color: var(--accent-orange);
}

.device-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.device-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-orange);
    font-weight: 500;
    font-size: 14px;
}

.device-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.device-card:hover .device-link svg {
    transform: translateX(4px);
}

/* Setup Help Section */
.setup-help-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.help-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.help-text>p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.help-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.help-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.help-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.help-buttons {
    display: flex;
    gap: 15px;
}

.help-card {
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
}

.help-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-radius: 50%;
}

.help-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-orange);
}

.help-card h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.help-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .setup-help-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .help-features {
        align-items: center;
    }

    .help-buttons {
        justify-content: center;
    }
}

/* ==========================================================================
   Template Parts
   ========================================================================== */

/* CTA Banner */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.cta-banner h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cta-banner p {
    color: var(--text-muted);
    margin: 0;
}

.cta-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

/* CTA Compact */
.cta-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(var(--accent-orange-rgb), 0.05);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    border-radius: 12px;
}

.cta-compact h3 {
    font-size: 1rem;
    margin: 0;
}

.cta-compact p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 5px 0 0;
}

/* Trust Badges */
.trust-badges-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badges-inline span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-badges-inline svg {
    color: var(--accent-orange);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.trust-badge svg {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.trust-badge-text strong {
    display: block;
    font-size: 14px;
}

.trust-badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.trust-badges-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Device Icons Strip */
.device-icons-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.device-strip-label {
    font-size: 14px;
    color: var(--text-muted);
}

.device-strip-icons {
    display: flex;
    gap: 12px;
}

.device-strip-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 13px;
}

.device-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.device-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.device-icon-item:hover {
    border-color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.05);
}

.device-icon-emoji {
    font-size: 28px;
}

.device-icon-name {
    font-size: 13px;
    text-align: center;
}


/* ==========================================================================
   Guide Page Styles
   ========================================================================== */

/* Guide Device Cards */
.guide-devices {
    display: grid;
    gap: 24px;
    margin-top: 30px;
}

.guide-device-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.guide-device-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-orange-rgb), 0.15);
}

.guide-device-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.guide-device-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.1), rgba(var(--accent-orange-rgb), 0.05));
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.guide-device-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.guide-device-title {
    flex: 1;
}

.guide-device-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.device-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.device-badge.popular {
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    color: var(--accent-orange);
}

.guide-device-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-apps {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.guide-apps h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--text-primary);
}

.app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-list li {
    padding: 8px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.app-list li strong {
    color: var(--accent-orange);
    font-weight: 600;
}

/* App Recommendations */
.app-recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.app-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-orange-rgb), 0.1);
}

.app-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.app-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.app-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-badge.recommended {
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    color: var(--accent-orange);
}

.app-badge.exclusive {
    background: rgba(255, 59, 48, 0.1);
    border-color: rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

.app-card-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.app-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.platform-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-device-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .guide-device-icon {
        width: 50px;
        height: 50px;
    }

    .guide-device-icon svg {
        width: 28px;
        height: 28px;
    }

    .guide-device-title h3 {
        font-size: 1.25rem;
    }

    .app-recommendations {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Reseller Contact Box
   ========================================================================== */

.reseller-contact-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 60px 40px;
}

.reseller-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.1), rgba(var(--accent-orange-rgb), 0.05));
    border: 2px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 50%;
}

.reseller-contact-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-orange);
}

.reseller-contact-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.reseller-contact-box>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.reseller-contact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.contact-feature svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.contact-feature span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reseller-contact-box {
        padding: 40px 24px;
    }

    .reseller-contact-features {
        grid-template-columns: 1fr;
    }

    .reseller-contact-box h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Affiliate Page
   ========================================================================== */

.affiliate-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.affiliate-section-header .section-title {
    margin-bottom: 10px;
}

.section-subtitle-small {
    font-size: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-badge-accent {
    background: rgba(135, 206, 235, 0.1);
    border-color: rgba(135, 206, 235, 0.3);
    color: #87CEEB;
}

/* Affiliate Reward Cards */
.affiliate-rewards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.affiliate-reward-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.affiliate-reward-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reward-card-featured {
    border-color: rgba(var(--accent-orange-rgb), 0.5);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(var(--accent-orange-rgb), 0.05) 100%);
}

.reward-card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.reward-badge-featured {
    background: rgba(var(--accent-orange-rgb), 0.1);
    border-color: rgba(var(--accent-orange-rgb), 0.3);
    color: var(--accent-orange);
}

.reward-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.reward-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.reward-details {
    list-style: none;
    padding: 25px 30px;
    margin: 0;
}

.reward-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.reward-details li svg {
    width: 18px;
    height: 18px;
    color: #87CEEB;
    flex-shrink: 0;
    margin-top: 2px;
}

.reward-example {
    padding: 15px 30px 25px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-example strong {
    color: var(--accent-orange);
}

/* Single reward card - centered */
.affiliate-rewards-single {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .affiliate-rewards-grid {
        grid-template-columns: 1fr;
    }
}

/* Affiliate How It Works */
.affiliate-how-it-works {
    margin-top: 50px;
}

.affiliate-how-it-works h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* Get Code Box */
.affiliate-get-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.05) 0%, rgba(var(--accent-orange-rgb), 0.02) 100%);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    border-radius: 20px;
}

.get-code-content h3 {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.get-code-content p {
    margin: 0;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .affiliate-get-code-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .get-code-content h3 {
        text-align: center;
    }
}

/* Partner Details Grid */
.affiliate-partner-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.partner-terms-box,
.partner-ideal-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
}

.partner-terms-box h3,
.partner-ideal-box h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.term-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.term-label {
    font-size: 14px;
    color: var(--text-muted);
}

.term-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-orange);
}

.ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ideal-list li:last-child {
    border-bottom: none;
}

.ideal-list li svg {
    width: 18px;
    height: 18px;
    color: #87CEEB;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .affiliate-partner-details {
        grid-template-columns: 1fr;
    }
}

/* Apply Box */
.affiliate-apply-box {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   Trial Page Styles
   ========================================================================== */

.trial-page {
    background: var(--bg-primary);
    min-height: 100vh;
}

.trial-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239ca3af'%3E%3Cpath d='M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 20px !important;
}

.trial-hero {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-orange-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.trial-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trial-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    line-height: 1.1;
}

.trial-hero h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trial-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.trial-form-section {
    padding: 40px 0 80px;
}

.trial-form-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.trial-form-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 24px;
    text-align: center;
}

.trial-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.trial-page .form-group input[type="text"],
.trial-page .form-group input[type="email"],
.trial-page .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-heading);
    font-size: 1rem;
    transition: all 0.2s;
}

.plan-selector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.plan-card {
    position: relative;
    display: block;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.plan-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-card.selected {
    border-color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.05);
}

.plan-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.plan-card-price {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.plan-card-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 4px;
    align-self: flex-start;
}

.trial-page .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trial-page .trust-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trial-page .trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.trial-features {
    background: var(--bg-secondary);
}

.trial-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.trial-feature {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trial-feature:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trial-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.1) 0%, rgba(var(--accent-orange-rgb), 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trial-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.trial-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.trial-feature p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .trial-hero {
        padding: 100px 0 30px;
    }
    .trial-hero h1 {
        font-size: 2rem;
    }
    .trial-description {
        font-size: 1rem;
    }
    .trial-form-wrapper {
        padding: 24px 20px;
    }
    .trial-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .trial-page .trust-item {
        font-size: 0.8125rem;
        padding: 10px 12px;
    }
}

/* ==========================================================================
   Checkout Page V2 Styles
   ========================================================================== */

.checkout-page-v2 {
    background: var(--bg-primary);
    min-height: 100vh;
}

.checkout-hero-v2 {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.checkout-hero-v2 .checkout-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.checkout-hero-v2 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--accent-orange-rgb), 0.15);
    border: 1px solid rgba(var(--accent-orange-rgb), 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.checkout-hero-v2 .hero-badge svg {
    width: 16px;
    height: 16px;
}

.checkout-hero-v2 h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.checkout-hero-v2 .checkout-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.checkout-content-v2 {
    padding: 40px 0 80px;
}

.checkout-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.checkout-form-wrapper-v2 {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

#checkout-message.success {
    color: #87CEEB;
    font-weight: 600;
}

#checkout-message.error {
    color: #ef4444;
    font-weight: 600;
}

.order-summary-compact {
    background: linear-gradient(135deg, rgba(var(--accent-orange-rgb), 0.08) 0%, rgba(var(--accent-orange-rgb), 0.03) 100%);
    padding: 20px 20px 12px;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
    margin-bottom: 24px;
}

.order-summary-compact h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 14px;
    font-weight: 600;
}

.order-summary-compact h3 svg {
    color: var(--accent-orange);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.summary-item {
    text-align: center;
    padding: 10px;
    background: var(--bg-card);
    border-radius: 10px;
}

.summary-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item .value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-heading);
}

.summary-item.total {
    background: var(--accent-orange);
}

.summary-item.total .label {
    color: rgba(255, 255, 255, 0.8);
}

.summary-item.total .value.price {
    color: #fff;
    font-size: 1.125rem;
}

.change-plan-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    color: var(--accent-orange);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.change-plan-link:hover {
    opacity: 0.7;
}

.manual-selection-compact .select-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.manual-selection-compact select {
    padding: 10px 12px;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-body);
    cursor: pointer;
}

.manual-selection-compact select:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0;
    border-top: 1px solid var(--border-color);
}

.summary-total-row .price {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.form-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group-v2 {
    margin-bottom: 12px;
}

.form-group-v2 input,
.form-group-v2 textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.9375rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-primary);
    color: var(--text-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group-v2 input::placeholder,
.form-group-v2 textarea::placeholder {
    color: var(--text-muted);
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(var(--accent-orange-rgb), 0.1);
}

.payment-methods-compact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-chip {
    display: flex;
    cursor: pointer;
}

.payment-chip input {
    display: none;
}

.payment-chip .chip-content {
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    transition: all 0.2s;
}

.payment-chip:hover .chip-content {
    border-color: var(--accent-orange);
}

.payment-chip input:checked + .chip-content {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #fff;
}

.btn-submit-v2 {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.btn-submit-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-orange-rgb), 0.35);
}

.btn-submit-v2 .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-v2 .btn-text .btn-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
}

.btn-submit-v2 .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-submit-v2.loading .btn-text {
    display: none;
}

.btn-submit-v2.loading .btn-loading {
    display: inline-flex;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trust-badges-inline {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.checkout-page-v2 .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.checkout-page-v2 .trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
}

.features-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.features-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.features-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    color: var(--text-heading);
    margin-bottom: 20px;
    font-weight: 700;
}

.features-card h3 svg {
    color: var(--accent-orange);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-check {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-heading);
}

.feature-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .checkout-grid-v2 {
        grid-template-columns: 1fr;
    }
    .features-sidebar {
        position: static;
        order: 1;
    }
    .features-card {
        margin-bottom: 24px;
    }
    .features-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .feature-item {
        border-bottom: none;
        padding: 8px;
        background: var(--bg-primary);
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .checkout-hero-v2 {
        padding: 100px 0 30px;
    }
    .checkout-hero-v2 h1 {
        font-size: 1.75rem;
    }
    .checkout-form-wrapper-v2 {
        padding: 20px;
    }
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row-v2 {
        grid-template-columns: 1fr;
    }
    .payment-methods-compact {
        flex-direction: column;
    }
    .payment-chip .chip-content {
        width: 100%;
        text-align: center;
    }
    .trust-badges-inline {
        flex-wrap: wrap;
        gap: 12px;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .manual-selection-compact .select-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Thank You Page Styles
   ========================================================================== */

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    padding: 60px 0;
}

.thank-you-card {
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(135, 206, 235, 0.1);
    color: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.thank-you-card h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.thank-you-card .subtitle {
    font-size: 1.25rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.thank-you-card .description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
}

.trial-countdown-container {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 138, 0, 0.05) 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 0 4px;
    align-self: flex-start;
    padding-top: 4px;
}

.order-details-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.order-details-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
    text-align: center;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.order-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-detail-item.order-code-item {
    grid-column: span 2;
    text-align: center;
    background: var(--bg-card);
    padding: 16px;
    border-radius: 12px;
    border: 2px dashed var(--accent-orange);
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.detail-value.order-code {
    font-size: 1.5rem;
    font-family: monospace;
    color: var(--accent-orange);
    letter-spacing: 2px;
}

.detail-value.status-pending {
    color: #f59e0b;
}

.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.notice-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notice-icon svg {
    width: 24px;
    height: 24px;
}

.notice-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.notice-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-section {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(0, 136, 204, 0.1) 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}

.contact-section.instant-contact {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.08) 0%, rgba(255, 138, 0, 0.03) 100%);
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.contact-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.step-item {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin: 0 auto 16px;
}

.step-icon svg {
    width: 20px;
    height: 20px;
}

.step-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.support-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.support-note a {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
}

.support-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 40px 24px;
    }
    .thank-you-card h1 {
        font-size: 2rem;
    }
    .next-steps {
        grid-template-columns: 1fr;
    }
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    .order-detail-item.order-code-item {
        grid-column: span 1;
    }
    .contact-buttons {
        flex-direction: column;
    }
}