/* ========================================
   CHICAGO LANDING PAGE - ART DECO STYLING
   Adult Stage - February 2026
   ======================================== */

/* ========================================
   CSS VARIABLES - ART DECO CHICAGO PALETTE
   ======================================== */
:root {
    /* Art Deco Color Palette */
    --chicago-black: #0A0A0A;
    --chicago-gold: #D4AF37;
    --chicago-red: #B91C1C;
    --chicago-cream: #FFF8E7;
    --chicago-bronze: #CD7F32;

    /* Cabaret Accent Colors (from photo 2) */
    --cabaret-purple: #8B5CF6;
    --cabaret-pink: #EC4899;
    --cabaret-blue: #1E3A8A;

    /* Neutral Shades */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1400px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.5);
    --shadow-spotlight: 0 0 100px rgba(139, 92, 246, 0.6);
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--chicago-black);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--chicago-gold);
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--chicago-cream);
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.highlight-gold {
    color: var(--chicago-gold);
    text-shadow: var(--shadow-gold);
}

.chicago-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    color: var(--chicago-gold);
    font-size: 1.1em;
    letter-spacing: 0.05em;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--chicago-black) 0%, #1a0a2e 50%, var(--cabaret-blue) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Art Deco Animated Elements */
.deco-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.spotlight {
    position: absolute;
    width: 300px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: spotlightMove 8s ease-in-out infinite;
}

.spotlight-1 {
    top: -200px;
    left: 10%;
    animation-delay: 0s;
}

.spotlight-2 {
    top: -200px;
    right: 10%;
    animation-delay: 2s;
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
}

@keyframes spotlightMove {
    0%, 100% { transform: translateY(0) rotate(10deg); opacity: 0.3; }
    50% { transform: translateY(100px) rotate(-5deg); opacity: 0.6; }
}

/* Geometric Art Deco Shapes */
.geometric-shape {
    position: absolute;
    border: 2px solid var(--chicago-gold);
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 5%;
    transform: rotate(45deg);
    border-radius: 20px;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 50%;
    border-radius: 50%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

/* Musical Notes */
.musical-note {
    position: absolute;
    font-size: 40px;
    color: var(--chicago-gold);
    opacity: 0.2;
    animation: noteFloat 10s ease-in-out infinite;
}

.note-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.note-2 {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.note-3 {
    top: 40%;
    right: 5%;
    animation-delay: 6s;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-50px) rotate(15deg); opacity: 0.4; }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: var(--chicago-cream);
}

.hero-badge {
    margin-bottom: 30px;
}

.hero-badge .logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--chicago-cream);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Event Details */
.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.detail-icon {
    font-size: 24px;
}

.detail-text {
    font-size: 16px;
    color: var(--chicago-cream);
}

/* Price Box */
.price-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--chicago-gold);
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 35px;
    text-align: center;
}

.price-old {
    font-size: 24px;
    text-decoration: line-through;
    color: var(--gray-300);
    opacity: 0.6;
}

.price-new {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--chicago-gold);
    text-shadow: var(--shadow-gold);
    margin: 10px 0;
}

.price-subtext {
    font-size: 16px;
    color: var(--chicago-cream);
    opacity: 0.8;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, var(--chicago-gold) 0%, var(--chicago-bronze) 100%);
    color: var(--chicago-black);
    box-shadow: var(--shadow-gold);
    width: 100%;
    margin-bottom: 25px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.7);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

/* Urgency Bar */
.urgency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(185, 28, 28, 0.15);
    border: 1px solid var(--chicago-red);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 25px;
}

.urgency-icon {
    font-size: 20px;
}

.urgency-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--chicago-cream);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-item {
    font-size: 15px;
    color: var(--chicago-cream);
    opacity: 0.85;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 32px;
    color: var(--chicago-gold);
    opacity: 0.6;
}

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

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--chicago-gold);
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-points {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--cabaret-blue) 0%, var(--chicago-black) 100%);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: var(--chicago-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.pain-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--chicago-gold);
    margin-bottom: 15px;
}

.pain-card p {
    font-size: 17px;
    color: var(--chicago-cream);
    opacity: 0.9;
    line-height: 1.7;
}

/* Promise Block */
.promise-block {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--cabaret-purple);
    border-radius: 24px;
    padding: 60px;
}

.promise-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--chicago-gold);
    margin-bottom: 20px;
    text-align: left;
}

.promise-intro {
    font-size: 20px;
    color: var(--chicago-cream);
    margin-bottom: 40px;
    line-height: 1.7;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.promise-icon {
    font-size: 32px;
    flex-shrink: 0;
    margin-top: 5px;
}

.promise-text strong {
    font-size: 20px;
    color: var(--chicago-gold);
    display: block;
    margin-bottom: 8px;
}

.promise-text p {
    font-size: 17px;
    color: var(--chicago-cream);
    opacity: 0.9;
}

.promise-tagline {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--chicago-cream);
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* ========================================
   JOURNEY SECTION
   ======================================== */
.journey {
    padding: var(--section-gap) 0;
    background: var(--chicago-black);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, var(--chicago-gold) 0%, transparent 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--chicago-black);
    border: 3px solid var(--chicago-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--chicago-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    flex-shrink: 0;
}

.timeline-marker.star {
    background: var(--chicago-gold);
    color: var(--chicago-black);
    font-size: 40px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(212, 175, 55, 0.7); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    border-left: 4px solid var(--chicago-gold);
}

.timeline-item-featured .timeline-content {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--chicago-gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--chicago-gold);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 18px;
    color: var(--chicago-cream);
    line-height: 1.8;
    margin-bottom: 25px;
}

.timeline-highlight {
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--chicago-gold);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    font-size: 17px;
    color: var(--chicago-cream);
}

.timeline-image {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   WHY IT WORKS SECTION
   ======================================== */
.why-it-works {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--chicago-black) 0%, #1a0a2e 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 45px;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--chicago-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.why-card-featured {
    border: 2px solid var(--chicago-gold);
    background: rgba(212, 175, 55, 0.08);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--chicago-gold);
    color: var(--chicago-black);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--chicago-gold);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 17px;
    color: var(--chicago-cream);
    line-height: 1.7;
    opacity: 0.95;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--section-gap) 0;
    background: var(--chicago-black);
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--chicago-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-q-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--chicago-cream);
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    color: var(--chicago-gold);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    font-size: 17px;
    color: var(--chicago-cream);
    line-height: 1.8;
    opacity: 0.95;
}

.faq-answer strong {
    color: var(--chicago-gold);
}

/* ========================================
   PRACTICAL INFO SECTION
   ======================================== */
.practical-info {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--chicago-black) 0%, #1a0a2e 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--chicago-gold);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--chicago-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--chicago-gold);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 17px;
    color: var(--chicago-cream);
    margin-bottom: 8px;
}

.info-detail {
    font-size: 15px;
    opacity: 0.8;
}

.price-highlight {
    color: var(--chicago-gold);
    font-size: 24px;
    font-weight: 700;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    position: relative;
    padding: var(--section-gap) 0;
    overflow: hidden;
}

.final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 10, 46, 0.9) 100%);
}

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

.final-cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--chicago-gold);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: var(--shadow-gold);
}

.paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.path {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
}

.path-no {
    border: 1px solid rgba(185, 28, 28, 0.5);
}

.path-yes {
    border: 2px solid var(--chicago-gold);
    background: rgba(212, 175, 55, 0.08);
}

.path h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.path-no h3 {
    color: var(--gray-300);
}

.path-yes h3 {
    color: var(--chicago-gold);
}

.path ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.path li {
    font-size: 18px;
    line-height: 1.6;
    padding-left: 35px;
    position: relative;
}

.path-no li {
    color: var(--gray-300);
}

.path-no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--chicago-red);
    font-weight: 700;
}

.path-yes li {
    color: var(--chicago-cream);
}

.path-yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--chicago-gold);
    font-weight: 700;
}

/* Final Offer */
.final-offer {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--chicago-gold);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-old {
    font-size: 28px;
    text-decoration: line-through;
    color: var(--gray-300);
    opacity: 0.6;
}

.offer-new {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: var(--chicago-gold);
    text-shadow: var(--shadow-gold);
}

.offer-details {
    text-align: left;
}

.offer-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--chicago-cream);
    margin-bottom: 8px;
}

.offer-sub {
    font-size: 16px;
    color: var(--chicago-cream);
    opacity: 0.8;
}

.cta-final {
    background: linear-gradient(135deg, var(--chicago-gold) 0%, var(--chicago-bronze) 100%);
    color: var(--chicago-black);
    font-size: 20px;
    padding: 20px 50px;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.8);
}

.offer-urgency {
    font-size: 16px;
    color: var(--chicago-cream);
    font-weight: 600;
}

/* Final PS */
.final-ps {
    max-width: 700px;
    margin: 60px auto 0;
    text-align: center;
}

.final-ps p {
    font-size: 17px;
    color: var(--chicago-cream);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-ps strong {
    color: var(--chicago-gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--chicago-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

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

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--chicago-cream);
    opacity: 0.8;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--chicago-gold);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: var(--chicago-cream);
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 15px;
    color: var(--chicago-cream);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--chicago-gold);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--chicago-cream);
    opacity: 0.6;
}

/* ========================================
   FLOATING STICKY CTA
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--chicago-black);
    border-top: 2px solid var(--chicago-gold);
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.floating-cta.visible {
    transform: translateY(0);
}

.floating-cta-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.floating-cta-text {
    display: flex;
    flex-direction: column;
}

.floating-cta-text strong {
    font-size: 18px;
    color: var(--chicago-gold);
}

.floating-cta-text span {
    font-size: 14px;
    color: var(--chicago-cream);
    opacity: 0.8;
}

.cta-floating {
    background: linear-gradient(135deg, var(--chicago-gold) 0%, var(--chicago-bronze) 100%);
    color: var(--chicago-black);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
}

/* ========================================
   MODAL
   ======================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--chicago-black);
    border: 2px solid var(--chicago-gold);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: var(--chicago-gold);
    font-size: 36px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--chicago-cream);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--chicago-gold);
    margin-bottom: 15px;
    text-align: center;
}

.modal-subtitle {
    font-size: 17px;
    color: var(--chicago-cream);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Quick Form */
.quick-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--chicago-gold);
}

.form-group input {
    padding: 15px 20px;
    font-size: 16px;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--chicago-cream);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--chicago-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-300);
    opacity: 0.6;
}

.cta-submit {
    background: linear-gradient(135deg, var(--chicago-gold) 0%, var(--chicago-bronze) 100%);
    color: var(--chicago-black);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.form-note {
    font-size: 14px;
    color: var(--chicago-cream);
    text-align: center;
    opacity: 0.8;
    margin-top: 10px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .event-details {
        flex-direction: column;
        gap: 15px;
    }

    .pain-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promise-block {
        padding: 40px 25px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 25px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .timeline-content {
        padding: 30px 20px;
    }

    .timeline-content h3 {
        font-size: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .paths {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .final-offer {
        padding: 35px 25px;
    }

    .offer-content {
        flex-direction: column;
        gap: 25px;
    }

    .offer-new {
        font-size: 56px;
    }

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

    .floating-cta-content {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .cta-floating {
        width: 100%;
    }

    .modal {
        padding: 35px 25px;
        width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }

    /* Hide decorative elements on mobile */
    .deco-elements {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

    .price-new {
        font-size: 44px;
    }

    .section-title {
        font-size: 28px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .offer-new {
        font-size: 48px;
    }
}
