/* 
========================================================================
   CKavArt Ultimate Clipart Design Vault - Premium Stylesheet
   Design Philosophy: Slate Navy (#092937), Accent Crimson (#cf3740),
   Luxurious Gold Gradients, Elegant Typography, Responsive Grid & Flex,
   Dynamic Animations, & High-Conversion Layout.
========================================================================
*/

/* --- 1. CSS VARIABLES & THEME TOKENS --- */
:root {
    /* Brand Colors */
    --primary-navy: #092937;
    --primary-navy-dark: #051922;
    --primary-navy-light: #123c4e;
    --accent-crimson: #cf3740;
    --accent-crimson-hover: #b52c34;
    
    /* Elegant Gold Gradient Palette */
    --gold-primary: #B38728;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-gradient-hover: linear-gradient(135deg, #AA771C 0%, #FBF5B7 25%, #B38728 50%, #FCF6BA 75%, #BF953F 100%);
    --gold-soft-bg: rgba(179, 135, 40, 0.1);
    
    /* Neutrals */
    --bg-page: #F9FAFB;
    --bg-card: #ffffff;
    --border-light: #EBF0F5;
    --border-mid: #D1D5DB;
    
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-light: #E5E7EB;
    --text-white: #ffffff;
    
    /* Layout & Shadows */
    --max-width: 1200px;
    --max-width-sm: 800px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
    
    /* Premium Drop Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 0 20px rgba(179, 135, 40, 0.4);
    --shadow-crimson: 0 0 15px rgba(207, 55, 64, 0.3);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.small-container {
    width: 90%;
    max-width: var(--max-width-sm);
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-weight: 400;
}

strong {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Button Reset */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* --- 3. DYNAMIC MICRO-ANIMATIONS & TRANSITIONS --- */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(179, 135, 40, 0.4);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(179, 135, 40, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(179, 135, 40, 0);
        transform: scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(251, 245, 183, 0.4)); }
    50% { filter: drop-shadow(0 0 16px rgba(251, 245, 183, 0.8)); }
}

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

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.pulsating-cta {
    animation: pulse-gold 2.5s infinite;
}

.pulse-glow-effect {
    animation: pulse-glow 3s infinite;
}

/* --- 4. NAVIGATION HEADER & TOP BAR --- */

/* Announcement Bar */
.announcement-bar {
    background-color: var(--accent-crimson);
    color: var(--text-white);
    padding: 8px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 100;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.announcement-bar .badge {
    background-color: var(--text-white);
    color: var(--accent-crimson);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.announcement-bar p {
    margin: 0;
}

.timer-span {
    font-family: monospace;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 2px 6px;
    border-radius: var(--border-radius-sm);
    margin-left: 4px;
    letter-spacing: 0.5px;
}

/* Main Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
}

.brand-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

/* Global CTA Button Components */
.btn-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-nav-cta {
    background: var(--gold-gradient);
    color: var(--primary-navy-dark);
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.btn-nav-cta:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- 5. HERO SECTION --- */
.hero-section {
    background: radial-gradient(circle at top right, var(--primary-navy-light) 0%, var(--primary-navy-dark) 100%);
    color: var(--text-white);
    padding: 70px 0;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--accent-crimson);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.star-icon {
    color: #ffd700;
    font-size: 1rem;
}

.hero-headline {
    color: var(--text-white);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.highlight-gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-icon {
    background-color: rgba(179, 135, 40, 0.2);
    border: 1px solid var(--gold-primary);
    color: #ffd700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.btn-hero-cta {
    background: var(--gold-gradient);
    color: var(--primary-navy-dark);
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-gold);
}

.btn-hero-cta:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 135, 40, 0.6);
}

.btn-main-text {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.btn-sub-text {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.secure-checkout-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.lock-icon {
    font-size: 0.9rem;
}

/* Hero Right: 3D Box Mockup styling */
.hero-mockup-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mockup-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.mockup-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

/* Glassmorphism Floating Badges */
.glass-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    line-height: 1.3;
    pointer-events: none;
}

.badge-top-right {
    top: 15%;
    right: -25px;
}

.badge-bottom-left {
    bottom: 15%;
    left: -25px;
}

.glass-float-badge strong {
    font-size: 1.15rem;
    color: #ffd700;
    display: block;
    font-family: var(--font-heading);
}

/* --- 6. COMPATIBILITY BANNER --- */
.compatibility-banner {
    background-color: var(--border-light);
    border-bottom: 1px solid var(--border-mid);
    padding: 24px 0;
    text-align: center;
}

.banner-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.banner-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
}

.banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-navy);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.banner-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- 7. SECTION HEADER COMPONENT --- */
.section-header {
    text-align: center;
    max-width: var(--max-width-sm);
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 2px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* --- 8. SHOWCASE PREVIEW GALLERY --- */
.showcase-section {
    background-color: var(--bg-page);
    padding: 80px 0;
}

/* Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-soft);
}

.tab-btn:hover {
    border-color: var(--primary-navy);
    color: var(--primary-navy);
}

.tab-btn.active {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

/* Gallery Grid */
.showcase-gallery-container {
    position: relative;
    min-height: 380px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-grid.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

/* Preview Card */
.preview-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-crop {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    overflow: hidden;
    background-color: #f7f9fa;
}

.card-image-crop img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-card:hover .card-image-crop img {
    transform: scale(1.05);
}

.card-info {
    padding: 20px;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
}

.showcase-footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* --- 9. COMMERCIAL LICENSE SECTION --- */
.license-section {
    background-color: var(--bg-card);
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.license-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.license-badge-col {
    display: flex;
    justify-content: center;
}

.badge-ring {
    border: 3px double var(--gold-primary);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: var(--gold-soft-bg);
}

.badge-lock {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.badge-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-navy);
}

.badge-sub {
    font-size: 0.7rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 4px;
}

.license-headline {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.license-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.license-rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.rule-box {
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.rule-allow {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.rule-allow h5 {
    color: #15803d;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.rule-deny {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.rule-deny h5 {
    color: #b91c1c;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.rule-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rule-box li {
    font-size: 0.85rem;
    position: relative;
    padding-left: 14px;
    color: var(--text-secondary);
}

.rule-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.1rem;
}

.rule-allow li::before { color: #16a34a; }
.rule-deny li::before { color: #dc2626; }

/* --- 10. PRODUCT USE CASES (POD) --- */
.pod-use-cases {
    background-color: #f3f5f6;
    padding: 80px 0;
}

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

.use-case-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.case-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.use-case-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.use-case-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- 11. PRICING OFFER SECTION (THE TICKET BOX) --- */
.pricing-section {
    background: radial-gradient(circle at bottom left, var(--primary-navy-light) 0%, var(--primary-navy-dark) 100%);
    padding: 85px 0;
    color: var(--text-white);
}

.pricing-ticket-box {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
}

.ticket-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--text-white);
    padding: 30px 40px;
    text-align: center;
    border-bottom: 2px dashed var(--border-mid);
    position: relative;
}

/* Ticket Side Notches */
.ticket-header::before, .ticket-header::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary-navy-dark);
    border-radius: 50%;
    bottom: -12px;
    z-index: 10;
}

.ticket-header::before { left: -12px; }
.ticket-header::after { right: -12px; }

.ticket-header h4 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ticket-header p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.ticket-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-badge-area {
    text-align: center;
    margin-bottom: 30px;
}

.original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.original-price span {
    text-decoration: line-through;
    color: var(--accent-crimson);
}

.discount-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin: 8px 0;
}

.percent-badge {
    background-color: var(--accent-crimson);
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

/* Countdown Urgency Timer Component */
.urgency-timer-card {
    background-color: #f7f9fa;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 20px 30px;
    width: 100%;
    max-width: 460px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.timer-headline {
    color: var(--accent-crimson);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 8px 14px;
    border-radius: var(--border-radius-md);
    min-width: 60px;
    box-shadow: var(--shadow-soft);
}

.timer-box span:first-child {
    font-family: monospace;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.box-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.timer-colon {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

/* Checklist Inside Ticket */
.ticket-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 680px;
    margin-bottom: 35px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 25px 0;
}

.check-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Ticket CTA Button */
.ticket-checkout-area {
    width: 100%;
    max-width: 680px;
    text-align: center;
}

.btn-ticket-checkout {
    background: var(--gold-gradient);
    color: var(--primary-navy-dark);
    padding: 18px 40px;
    width: 100%;
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-gold);
}

.btn-ticket-checkout:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(179, 135, 40, 0.6);
}

.btn-ticket-checkout .btn-main-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.ticket-checkout-footer {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- 12. TESTIMONIALS & SOCIAL PROOF --- */
.testimonials-section {
    background-color: var(--bg-card);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.testimonial-card {
    background-color: var(--bg-page);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.reviewer-info strong {
    font-size: 0.95rem;
    color: var(--primary-navy);
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- 13. FAQ INTERACTIVE ACCORDION --- */
.faq-section {
    background-color: var(--bg-page);
    padding: 80px 0;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.faq-box {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-navy);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.arrow {
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

/* Accordion Open State toggled by JS */
.faq-box.active {
    border-color: var(--border-mid);
}

.faq-box.active .arrow {
    transform: rotate(45deg);
    color: var(--gold-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #fafbfc;
}

.faq-box.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

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

/* --- 14. FOOTER --- */
.main-footer {
    background-color: var(--primary-navy-dark);
    color: var(--text-white);
    padding: 50px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
}

/* --- 15. RESPONSIVE BREAKPOINTS (FLUID LAYOUT GRID) --- */

/* Desktop & Laptop Breakpoint */
@media (max-width: 1024px) {
    h1, .hero-headline {
        font-size: 2.6rem;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .showcase-grid {
        gap: 20px;
    }
}

/* Tablet Breakpoint (Portrait & Landscape) */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container, .small-container {
        width: 92%;
        padding: 0 10px;
    }
    
    /* Header nav hidden/collapsed (simple touch-friendly styling for landing page simplicity) */
    .main-nav {
        display: none; /* Fallback for simplicity: visitors focus on hero and ticket CTAs directly */
    }
    
    /* Hero layout stack vertically */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }
    
    .tagline-badge {
        margin-bottom: 15px;
    }
    
    h1, .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-bullets {
        align-items: center;
        margin-bottom: 25px;
    }
    
    .hero-bullets li {
        text-align: left;
        max-width: 500px;
    }
    
    .hero-cta-area {
        align-items: center;
        width: 100%;
    }
    
    .btn-hero-cta {
        max-width: 100%;
    }
    
    .hero-mockup-column {
        order: -1; /* Place 3D box mockup at top on mobile for maximum immediate visual impact */
        margin-bottom: 20px;
    }
    
    .mockup-wrapper {
        max-width: 360px;
    }
    
    .badge-top-right {
        right: -10px;
    }
    
    .badge-bottom-left {
        left: -10px;
    }
    
    /* Grid stack */
    .showcase-grid {
        grid-template-columns: 1fr; /* Stack previews sequentially */
        gap: 25px;
    }
    
    .showcase-gallery-container {
        min-height: auto;
    }
    
    .showcase-grid {
        position: relative;
        display: none;
    }
    
    .showcase-grid.active {
        display: grid;
    }
    
    /* Commercial License stack */
    .license-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .license-rules-grid {
        grid-template-columns: 1fr;
    }
    
    /* POD use cases stack */
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Testimonials stack */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Ticket Pricing Checklist stack */
    .ticket-checklist-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
        padding-left: 20px;
    }
    
    .ticket-body {
        padding: 30px 20px;
    }
    
    .discount-price {
        font-size: 3rem;
    }
}

/* Mobile Breakpoint (Small Screens) */
@media (max-width: 480px) {
    h1, .hero-headline {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .license-headline {
        font-size: 1.6rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-timer-card {
        padding: 15px 10px;
    }
    
    .timer-box {
        min-width: 50px;
        padding: 6px 10px;
    }
    
    .timer-box span:first-child {
        font-size: 1.3rem;
    }
}
