/* 
   CFPC26 Premium Landing Page Styles 
   Theme: Modern Tech, Premium, Dark Mode
   Version 2.0 - Enhanced Visual Design
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    /* Colors - Enhanced Palette */
    --bg-dark: #030712;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-card-solid: #0f172a;
    --bg-card-hover: #1e293b;
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    --success: #22c55e;
    --danger: #ef4444;
    --gold: #f59e0b;
    --purple: #a855f7;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, var(--purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mono { font-family: var(--font-mono); color: var(--text-muted); font-size: 0.9em; }

/* ============================================
   BUTTONS - Premium Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 
        0 4px 15px var(--primary-glow),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px var(--primary-glow),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-pulse {
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px var(--primary-glow); }
    50% { box-shadow: 0 4px 30px var(--primary-glow), 0 0 60px var(--primary-glow); }
}

/* ============================================
   SECTIONS - General Styles
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    line-height: 1.2;
}

.bg-darker {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, var(--bg-dark) 100%);
}

/* ============================================
   HERO SECTION - Premium Design
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

/* Animated Grid Background */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
    animation: aurora 15s ease-in-out infinite;
}

@keyframes aurora {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 1%) rotate(1deg); }
    66% { transform: translate(-1%, -2%) rotate(-1deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Logo */
.hero-logo {
    max-width: 140px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scarcity Alert - PROMINENT */
.scarcity-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 2px solid var(--danger);
    color: #fca5a5;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 0 30px rgba(239, 68, 68, 0.3),
        inset 0 0 20px rgba(239, 68, 68, 0.1);
    animation: scarcity-pulse 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scarcity-alert ion-icon {
    font-size: 1.5rem;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes scarcity-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.3), inset 0 0 20px rgba(239, 68, 68, 0.1);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 50px rgba(239, 68, 68, 0.5), inset 0 0 30px rgba(239, 68, 68, 0.2);
    }
}

/* Badge */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--success);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subtitle strong {
    color: var(--text-main);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    max-width: 850px;
    margin: 2rem auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-banner:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.hero-banner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.hero-banner:hover .hero-banner-img {
    transform: scale(1.05);
}

.hero-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.7) 50%, transparent 100%);
}

.hero-banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-banner-text ion-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Hero Bullets */
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-bullet:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bullet-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    color: white;
    font-size: 1.25rem;
}

.hero-bullet span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero CTA */
.hero-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.microcopy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.microcopy ion-icon {
    color: var(--success);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 2rem;
    animation: bounce-down 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   CARDS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.list-check li, .list-cross li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

.list-cross li::before {
    content: "✕";
    color: var(--danger);
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
}

.module-icon {
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 40px;
}

.module-item h3 {
    margin-bottom: 0.25rem;
}

.text-muted {
    color: var(--text-muted);
}

/* ============================================
   STEP CARDS
   ============================================ */
.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.step-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.step-card h3 ion-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

/* ============================================
   PRICING TABLE
   ============================================ */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-bottom: var(--spacing-md);
}

.price-row td {
    background: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.price-row td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-muted);
    border-right: none;
}

.price-row td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    text-align: right;
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--text-main);
    border-left: none;
}

.total-row td {
    background: transparent;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: line-through;
    padding-top: 1.5rem;
    border: none;
}

/* ============================================
   OFFER BOX
   ============================================ */
.offer-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 2px solid var(--primary);
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    animation: badge-bounce 2s infinite;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 2;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-5px) rotate(3deg); }
}

.offer-box h2 {
    position: relative;
    z-index: 1;
}

.final-price {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin: 1.5rem 0;
    text-shadow: 0 0 60px var(--primary-glow);
    position: relative;
    z-index: 1;
}

.offer-disclaimer {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 400px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--primary-light);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-title { font-size: 2rem; }
    
    .hero .subtitle { font-size: 1.1rem; }
    
    .scarcity-alert {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-banner-img { height: 250px; }
    
    .hero-banner-text { font-size: 1.1rem; }
    
    .hero-bullets {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-bullet {
        justify-content: flex-start;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .final-price { font-size: 3rem; }
    
    .offer-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    
    .hero-banner { margin: 1rem auto; }
    
    .hero-banner-img { height: 200px; }
    
    .hero-banner-text { font-size: 1rem; }
    
    .top-banner { font-size: 0.85rem; padding: 0.75rem; }
    
    .scarcity-hero { font-size: 1rem; }
    
    .scarcity-box { padding: 1rem; }
    
    .scarcity-inline { font-size: 0.95rem; }
}

/* ============================================
   TOP BANNER - Fixed Scarcity Alert
   ============================================ */
.top-banner {
    background: linear-gradient(90deg, var(--danger), #dc2626, var(--danger));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    text-align: center;
    padding: 0.875rem 1rem;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================
   SCARCITY ELEMENTS
   ============================================ */
.scarcity-hero {
    font-size: 1.5rem;
    color: #fca5a5;
    margin: 1rem 0 1.5rem;
    font-weight: 700;
}

.scarcity-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid var(--danger);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.scarcity-box p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.scarcity-big {
    font-size: 1.4rem !important;
    color: #fca5a5;
}

.scarcity-inline {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 1.25rem 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.scarcity-inline strong {
    color: #fca5a5;
}

.scarcity-box-small {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin: 1rem auto;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* ============================================
   HERO TEXT BLOCK
   ============================================ */
.hero-text-block {
    max-width: 750px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.hero-text-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-text-block strong {
    color: var(--text-main);
}

/* ============================================
   HIGHLIGHT CARDS
   ============================================ */
.highlight-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid var(--primary);
    text-align: center;
    padding: 1.5rem 2rem;
}

.highlight-summary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 700px;
}

.highlight-summary p {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-main);
}

/* ============================================
   CARD NOTES
   ============================================ */
.card-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.card-note strong {
    color: #fca5a5;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: linear-gradient(0deg, var(--primary) 0%, var(--bg-dark) 100%);
    padding: 4rem 0 2rem;
}

.final-cta-section h2 {
    color: var(--text-main);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS
   ============================================ */
@media (max-width: 768px) {
    .top-banner {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .scarcity-hero {
        font-size: 1.2rem;
    }
    
    .scarcity-box {
        padding: 1.25rem;
        margin: 1.5rem auto;
    }
    
    .scarcity-inline {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .highlight-summary {
        padding: 1.25rem;
    }
    
    .highlight-summary p {
        font-size: 1rem;
    }
}
