/*
Theme Name: CCcamHub Theme
Theme URI: https://ccamhub.com
Author: CCcamHub
Author URI: https://ccamhub.com
Description: Custom WordPress theme for CCcamHub.com — IPTV and CCcam subscription services. Clean, modern white and blue design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ccamhub
*/

/* === CSS Variables === */
:root {
    --primary: #3b4fe4;
    --primary-light: #5a6ef0;
    --primary-dark: #2a3bc0;
    --bg-body: #f5f7fa;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --bg-footer: #1a1f36;
    --text-primary: #1a1f36;
    --text-secondary: #5a6178;
    --text-muted: #8b92a5;
    --border: #e2e6ef;
    --border-light: #f0f2f7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --crypto-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

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

/* === Header === */
.site-header {
    background: linear-gradient(135deg, #1a1f36 0%, #252b47 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(26, 31, 54, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

/* Navigation */
.main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 8px 18px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
}

.main-nav a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
}

.main-nav .current-menu-item a {
    color: #ffffff;
    background: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    flex-direction: column;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, rgba(26,31,54,0.85) 0%, rgba(59,79,228,0.8) 50%, rgba(26,31,54,0.9) 100%),
                url('https://cccamhub.com/wp-content/uploads/2021/02/freeveiw-play-family-watching-TV1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 36px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 79, 228, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(59, 79, 228, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-crypto {
    background: var(--crypto-gradient);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.btn-crypto:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: #f0f2f7;
    color: var(--primary-dark);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* === Section Styles === */
.section { padding: 80px 0; }
.section-alt { background: #fff; }

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === Cards === */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* === Pricing Cards === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(59, 79, 228, 0.15);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-card .plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.pricing-card .plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .plan-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-card .plan-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card .plan-features li:last-child { border-bottom: none; }

.pricing-card .plan-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-card .card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

/* === TMDB Movie Grid === */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.movie-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.movie-card .movie-info {
    padding: 12px;
}

.movie-card .movie-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card .movie-rating {
    font-size: 0.75rem;
    color: var(--warning);
    margin-top: 4px;
    font-weight: 600;
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(59, 79, 228, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === FAQ Section === */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    -webkit-user-select: none;
    user-select: none;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.faq-question:hover { background: var(--border-light); }

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === Free CCcam Page === */
.cline-generator {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.generate-box {
    background: linear-gradient(145deg, #1a1f36 0%, #252b48 50%, #1a1f36 100%);
    border: 2px solid rgba(59, 79, 228, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(59, 79, 228, 0.1);
    color: #ffffff;
    overflow: hidden;
}

.generate-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.generate-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.generate-box .last-updated {
    color: rgba(255, 255, 255, 0.45);
}

.cline-result {
    display: none;
    text-align: left;
    margin-top: 24px;
}

.cline-result.active { display: block; }

.cline-output {
    background: #1a1f36;
    color: #10b981;
    padding: 20px;
    border-radius: var(--radius-md);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.cline-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.copy-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s;
}

.copy-btn:hover { background: var(--primary-dark); }

.cline-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.cline-error {
    color: var(--danger);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    font-weight: 500;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* === Tabs === */
.tabs-nav {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 4px;
    border: 1px solid var(--border);
    display: inline-flex;
}

.tabs-nav-wrap { text-align: center; margin-bottom: 32px; }

.tab-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

.tab-btn:hover:not(.active) { background: var(--border-light); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* === Contact Form 7 Override === */
.wpcf7 {
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

.wpcf7 .cf7-row {
    display: flex;
    gap: 16px;
}
.wpcf7 .cf7-row > p {
    flex: 1;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    background: #f8f9fc;
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    -webkit-transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 79, 228, 0.12);
    background: #ffffff;
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 32px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(59, 79, 228, 0.3);
}

.wpcf7 input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3ab8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 79, 228, 0.4);
}

.wpcf7 input[type="submit"]:active {
    transform: translateY(0);
}

.wpcf7 p { margin-bottom: 18px; }
.wpcf7 label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 7px;
    display: block;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
}

/* Acceptance / checkbox */
.wpcf7 .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

/* Response messages */
.wpcf7 .wpcf7-response-output {
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 0.9rem;
    margin: 16px 0 0 !important;
}
.wpcf7 .wpcf7-mail-sent-ok {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-spam-blocked {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.06);
    color: #dc2626;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.82rem;
    margin-top: 4px;
}

/* Spinner */
.wpcf7 .wpcf7-spinner {
    margin: 0 0 0 12px;
}

/* Dark section override */
.section-dark .wpcf7,
.section-mesh .wpcf7 {
    background: rgba(255,255,255,0.97);
}

/* Responsive */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .wpcf7 .cf7-row {
        flex-direction: column;
        gap: 0;
    }
}

/* === Crypto Modal === */
.ccgx-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 31, 54, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.ccgx-modal-overlay.active { display: flex; }

.ccgx-modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.ccgx-modal h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ccgx-modal p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.ccgx-modal input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.ccgx-modal input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 79, 228, 0.15);
}

.ccgx-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.ccgx-modal-close:hover { color: var(--text-primary); }

.ccgx-modal-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: none;
}

/* === Footer === */
.site-footer {
    background: var(--bg-footer);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.footer-about .footer-logo span { color: var(--primary-light); }

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links { list-style: none; }

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* === 404 Page === */
.error-404 {
    text-align: center;
    padding: 100px 20px;
}

.error-404 h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.error-404 p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* === Page Header (inner pages) === */
.page-hero {
    color: #fff;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Default gradient overlay — each page overrides with its own bg image */
.page-hero--free {
    background: linear-gradient(135deg, rgba(26,31,54,0.88), rgba(59,79,228,0.82)),
                url('https://cccamhub.com/wp-content/uploads/2021/02/CCcamhub.Com_7.jpg') center/cover no-repeat;
}

.page-hero--premium {
    background: linear-gradient(135deg, rgba(26,31,54,0.88), rgba(42,59,192,0.82)),
                url('https://cccamhub.com/wp-content/uploads/2021/02/CCcamhub.Com_9.jpg') center/cover no-repeat;
}

.page-hero--iptv {
    background: linear-gradient(135deg, rgba(26,31,54,0.85), rgba(59,79,228,0.8)),
                url('https://cccamhub.com/wp-content/uploads/2021/02/family-watching-tv-content-review.jpg') center/cover no-repeat;
}

.page-hero--contact {
    background: linear-gradient(135deg, rgba(26,31,54,0.9), rgba(59,79,228,0.8)),
                url('https://cccamhub.com/wp-content/uploads/2021/02/TELEMMGLPICT000133804850_trans_NvBQzQNjv4BqgRl8BouVbC6HZnydG5Kn5pdzd29AV1S6GkBHLgjhxoY1-e1613577913345.jpeg') center/cover no-repeat;
}
.page-hero--blog {
    background: linear-gradient(135deg, #1a1f36 0%, #232a4a 40%, #2a3065 70%, #1e2444 100%);
}

/* Fallback if no modifier class */
.page-hero:not([class*="page-hero--"]) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.page-hero p {
    opacity: 0.92;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
    line-height: 1.7;
}

.page-hero .hero-breadcrumb {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

.page-hero .hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.page-hero .hero-breadcrumb a:hover {
    color: #fff;
}

/* === Subscription Form Section === */
.subscribe-section {
    background: #fff;
    padding: 60px 0;
}

.subscribe-section .section-header { margin-bottom: 32px; }

/* === Responsive === */
@media (max-width: 768px) {
    .site-logo-img { height: 24px; }
    .menu-toggle { display: flex; z-index: 1001; position: relative; }

    .main-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #1a1f36;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        padding: 16px;
        z-index: 999;
    }

    .main-nav.active { display: block; }

    .main-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        padding: 12px 16px;
        color: rgba(255,255,255,0.8);
    }

    .main-nav a:hover {
        color: #fff;
        background: rgba(255,255,255,0.1);
    }

    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.5rem; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .generate-box { padding: 32px 20px; }

    .tabs-nav { flex-direction: column; }

    .ccgx-modal { padding: 28px 20px; }

    .page-hero h1 { font-size: 1.6rem; }
    .page-hero { padding: 40px 0; }
    .two-col-visual--image { min-height: 280px; }
    .two-col-visual--image .visual-overlay-stats { min-height: 280px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .pricing-card { padding: 24px 16px; }
    .card { padding: 24px 16px; }
}

/* ============================================
   MODERN COMPONENTS — v2
   ============================================ */

/* === Animated Stats Counter Bar === */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

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

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === Steps / How-It-Works === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(59, 79, 228, 0.3);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Connector lines between steps */
.steps-grid .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--border);
}

/* === Testimonials / Review Cards === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === CTA Banner === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #1a1f36 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

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

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Badges / Tags === */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary { background: rgba(59, 79, 228, 0.1); color: var(--primary); }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

/* === Icon Box (modern feature cards) === */
.icon-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.icon-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.icon-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.icon-box-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(59, 79, 228, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.icon-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.icon-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === Info Grid (Contact page) === */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 79, 228, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Comparison Table === */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.comparison-table thead th {
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: left;
}

.comparison-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover { background: rgba(59, 79, 228, 0.03); }

.comparison-table .check { color: var(--success); font-weight: 700; }
.comparison-table .cross { color: var(--text-muted); }

/* === Guarantee / Trust Badges === */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-item {
    padding: 24px 16px;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.trust-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === Channel Categories (IPTV) === */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.channel-cat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}

.channel-cat:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.channel-cat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.channel-cat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.channel-cat-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* === Device Compatibility Grid === */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s;
}

.device-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.device-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.device-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* === Content Blocks (SEO Rich Text) === */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.content-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.content-block ul {
    margin: 12px 0 20px 20px;
    color: var(--text-secondary);
}

.content-block ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === Two-Column Layout === */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.two-col-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.two-col-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.two-col-visual {
    background: linear-gradient(135deg, rgba(59,79,228,0.05), rgba(59,79,228,0.12));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Image variant of two-col visual */
.two-col-visual--image {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 380px;
    background: none;
}

.two-col-visual--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-lg);
}

.two-col-visual--image .visual-overlay-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    height: 100%;
    min-height: 380px;
    padding: 24px;
    align-content: end;
    background: linear-gradient(180deg, transparent 30%, rgba(26,31,54,0.85) 100%);
    border-radius: var(--radius-lg);
}

.two-col-visual--image .visual-overlay-stats .visual-stat-box {
    background: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 16px 12px;
}

.two-col-visual--image .visual-overlay-stats .vstat-num {
    color: #fff;
    font-size: 1.4rem;
}

.two-col-visual--image .visual-overlay-stats .vstat-label {
    color: rgba(255,255,255,0.7);
}

.two-col-visual .visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.visual-stat-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.visual-stat-box .vstat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.visual-stat-box .vstat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* === Marquee / Scrolling Brands === */
.brand-bar {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.brand-bar-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
}

/* === Responsive Additions === */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item .stat-number { font-size: 1.8rem; }

    .steps-grid .step-card::after { display: none; }

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .device-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-table { font-size: 0.85rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 10px 12px; }

    .cta-banner h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .device-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INTERACTIVE & VISUAL ENHANCEMENTS — v3
   ============================================ */

/* === Blog Archive === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-img {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.blog-card-meta a { color: var(--primary); }

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: var(--text-primary);
    transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.blog-card-link:hover { color: var(--primary-dark); }

.blog-pagination {
    margin-top: 48px;
    text-align: center;
}
.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.blog-pagination .page-numbers:hover { border-color: var(--primary); color: var(--primary); }
.blog-pagination .page-numbers.current {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* === Blog Single Post === */
.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.blog-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}
.blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #2d3748;
    max-width: 720px;
    letter-spacing: 0.01em;
}
.blog-body h2 {
    font-size: 1.6rem;
    margin: 40px 0 18px;
    color: var(--heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.blog-body h3 {
    font-size: 1.3rem;
    margin: 32px 0 14px;
    color: var(--heading);
    font-weight: 600;
}
.blog-body p {
    margin-bottom: 20px;
    color: #3d4a5c;
}
.blog-body ul, .blog-body ol {
    margin: 0 0 20px 28px;
    color: #3d4a5c;
}
.blog-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.blog-body img { max-width: 100%; border-radius: 10px; margin: 24px 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.blog-body blockquote {
    border-left: 4px solid var(--primary);
    margin: 28px 0;
    padding: 20px 28px;
    background: rgba(59, 79, 228, 0.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #4a5568;
    font-size: 1.05rem;
}
.blog-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.blog-body a:hover { color: #2a3ad4; }
.blog-body pre, .blog-body code {
    background: #f0f2f5;
    border-radius: 6px;
    font-size: 0.9rem;
}
.blog-body pre { padding: 18px; overflow-x: auto; margin-bottom: 20px; border: 1px solid #e2e8f0; }
.blog-body code { padding: 2px 7px; }
.blog-body strong { color: var(--heading); }

.blog-tags {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.blog-tags a { color: var(--primary); }
.tags-label { font-weight: 600; color: var(--text-primary); }

.post-meta-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 12px;
    flex-wrap: wrap;
}
.post-meta-hero a { color: rgba(255,255,255,0.9); }

/* Post Navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    transition: all 0.2s;
    max-width: 48%;
}
.post-nav-link:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(59, 79, 228, 0.1);
}
.post-nav-label { font-size: 0.8rem; color: var(--text-secondary); }
.post-nav-title { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.post-nav-next { text-align: right; margin-left: auto; }

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 88px;
}
.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-links {
    list-style: none;
}
.sidebar-links li {
    margin-bottom: 10px;
}
.sidebar-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
    display: block;
    padding: 6px 0;
}
.sidebar-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
    .post-nav {
        flex-direction: column;
    }
    .post-nav-link {
        max-width: 100%;
    }
}

/* === Scroll Reveal Animations === */
.reveal {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* === Scroll Progress Bar === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), #10b981);
    z-index: 10001;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 79, 228, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(59, 79, 228, 0.5);
}

/* === Button Ripple Effect === */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleAnim 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: translate(-50%, -50%) scale(30);
        opacity: 0;
    }
}

/* === Hero Glow Follow Effect === */
.hero {
    --glow-x: 50%;
    --glow-y: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(600px circle at var(--glow-x) var(--glow-y), rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

/* === Hero Typed Fade-In === */
.hero-typed {
    -webkit-animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@-webkit-keyframes heroFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
        -webkit-filter: blur(4px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}
@keyframes heroFadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
        -webkit-filter: blur(4px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

.hero p {
    -webkit-animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-buttons {
    -webkit-animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero .badge {
    -webkit-animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

/* === Interactive Card Hover (glow border) === */
.pricing-card,
.icon-box,
.testimonial-card,
.info-card,
.channel-cat,
.device-card {
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card:hover,
.icon-box:hover {
    box-shadow: 0 8px 32px rgba(59, 79, 228, 0.18), 0 0 0 1px rgba(59, 79, 228, 0.3);
}

.icon-box:hover .icon-box-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(-3deg);
    transition: all 0.3s;
}

.icon-box-icon {
    transition: all 0.3s;
}

/* Pricing card hover — price pulse */
.pricing-card:hover .plan-price {
    transform: scale(1.05);
    transition: transform 0.3s;
}

.plan-price { transition: transform 0.3s; }

/* === Colored Section Backgrounds (break white monotony) === */
/* Blue gradient section */
.section-blue {
    background: linear-gradient(135deg, #eef1fd 0%, #dfe4fc 100%);
}

/* Dark branded section */
.section-dark {
    background: linear-gradient(135deg, #1a1f36 0%, #252b47 100%);
    color: #fff;
}

.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-dark .icon-box { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.section-dark .icon-box h3 { color: #fff; }
.section-dark .icon-box p { color: rgba(255,255,255,0.65); }
.section-dark .icon-box:hover { border-color: var(--primary-light); box-shadow: 0 8px 32px rgba(59, 79, 228, 0.25); }
.section-dark .icon-box-icon { background: rgba(59, 79, 228, 0.2); }

/* Subtle gradient mesh background */
.section-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 79, 228, 0.06), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.05), transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.04), transparent 50%),
        var(--bg-body);
}

/* Angled section separator */
.section-angled {
    position: relative;
}

.section-angled::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* === Stats Bar Enhanced === */
.stats-bar {
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1fd 100%);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 79, 228, 0.04);
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-item:last-child::after { display: none; }

/* === Page Hero Enhanced === */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
    z-index: 2;
}

.page-hero h1 {
    -webkit-animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero p {
    -webkit-animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.page-hero .hero-breadcrumb {
    -webkit-animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* === Testimonial Enhancements === */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    color: rgba(59, 79, 228, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

/* === CTA Banner Floating Shapes === */
.cta-banner::before {
    -webkit-animation: float 8s ease-in-out infinite;
    animation: float 8s ease-in-out infinite;
}

.cta-banner::after {
    -webkit-animation: float 10s ease-in-out infinite reverse;
    animation: float 10s ease-in-out infinite reverse;
}

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

/* === Feature Card Icon Bounce on Hover === */
.feature-card:hover .feature-icon,
.channel-cat:hover .channel-cat-icon,
.device-card:hover .device-icon,
.info-card:hover .info-card-icon,
.trust-item:hover .trust-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2); }
    50% { transform: scale(0.95); }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* === Tab Button Enhanced === */
.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.tab-btn:hover:not(.active)::before {
    width: 60%;
}

/* === Comparison Table Row Highlight === */
.comparison-table tbody tr {
    transition: background 0.2s, transform 0.2s;
}

.comparison-table tbody tr:hover {
    background: rgba(59, 79, 228, 0.06);
    transform: scale(1.01);
}

/* === Generate Box Glow Animation === */
.generate-box {
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.generate-box:hover {
    border-color: rgba(59, 79, 228, 0.6);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(59, 79, 228, 0.2);
}

.generate-box .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    font-size: 1.1rem;
    padding: 16px 40px;
    border: none;
    box-shadow: 0 4px 20px rgba(59, 79, 228, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.generate-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 79, 228, 0.6);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === Pricing Card Featured Glow === */
.pricing-card.featured {
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(59, 79, 228, 0.15); }
    50% { box-shadow: 0 4px 30px rgba(59, 79, 228, 0.28); }
}

/* === Brand Bar Scroll Animation === */
.brand-bar-inner {
    gap: 20px;
}

.brand-item {
    transition: all 0.3s;
}

.brand-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 79, 228, 0.04);
    transform: translateY(-2px);
}

/* === FAQ Enhanced Hover === */
.faq-item {
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(59, 79, 228, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(59, 79, 228, 0.1);
}

.faq-question::after {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(59, 79, 228, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-item.active .faq-question::after {
    background: var(--primary);
    color: #fff;
}

/* === Mobile Menu Animation === */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* === Smooth Section Transitions === */
.section, .section-alt, .stats-bar {
    position: relative;
}

/* === Footer hover links underline animation === */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

/* === Header nav link hover underline === */
.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after {
    width: 60%;
}

/* === Step card connector dot === */
.step-number::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

/* === Loading shimmer for movie cards === */
.movie-card img {
    transition: transform 0.4s, filter 0.4s;
}

.movie-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* === Enhanced Responsive for animations === */
@media (max-width: 768px) {
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .stat-item::after { display: none; }
    .reveal { transform: translateY(20px); }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-typed { animation: none; }
    .hero p, .hero-buttons, .hero .badge { animation: none; }
    .pricing-card.featured { animation: none; }
    .cta-banner::before, .cta-banner::after { animation: none; }
    .generate-box { transition: none; }
    @keyframes iconBounce { 0%, 100% { transform: none; } }
}

/* === Thank You Page === */
.thankyou-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1117 0%, #1a1f36 40%, #141929 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(59, 79, 228, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(108, 99, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.thankyou-card {
    background: rgba(26, 31, 54, 0.8);
    border: 1px solid rgba(59, 79, 228, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 640px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 79, 228, 0.05);
    animation: tyFadeIn 0.8s ease both;
}

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

.thankyou-icon {
    margin-bottom: 24px;
    animation: tyBounce 0.6s 0.3s ease both;
}

@keyframes tyBounce {
    0%   { opacity: 0; transform: scale(0.3); }
    50%  { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.thankyou-icon svg {
    filter: drop-shadow(0 0 20px rgba(59, 79, 228, 0.3));
}

.thankyou-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankyou-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.thankyou-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 18px;
    transition: border-color 0.3s;
}

.thankyou-detail-item:hover {
    border-color: rgba(59, 79, 228, 0.25);
}

.thankyou-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 79, 228, 0.1);
    border-radius: 10px;
}

.thankyou-detail-item strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.thankyou-detail-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.thankyou-steps {
    background: rgba(59, 79, 228, 0.06);
    border: 1px solid rgba(59, 79, 228, 0.12);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 32px;
    text-align: left;
}

.thankyou-steps h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.thankyou-steps ol {
    list-style: none;
    counter-reset: steps;
    padding: 0;
    margin: 0;
}

.thankyou-steps li {
    counter-increment: steps;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 6px 0 6px 36px;
    position: relative;
}

.thankyou-steps li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary-ty {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(59, 79, 228, 0.3);
}

.btn-primary-ty:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 79, 228, 0.4);
}

.btn-outline-ty {
    display: inline-flex;
    align-items: center;
    padding: 13px 32px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s;
}

.btn-outline-ty:hover {
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .thankyou-hero { padding: 100px 16px 40px; }
    .thankyou-card { padding: 36px 24px; }
    .thankyou-title { font-size: 1.6rem; }
    .thankyou-subtitle { font-size: 0.95rem; }
    .thankyou-steps { padding: 20px; }
    .thankyou-actions { flex-direction: column; }
    .btn-primary-ty, .btn-outline-ty { width: 100%; justify-content: center; }
}
