/* ================================
   GIGAGENT LANDING PAGE STYLES
   Professional Booking Infrastructure
   ================================ */

/* ================================
   CSS RESET & BASE STYLES
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-dark: #5a67d8;
    --primary-light: #7c3aed;
    --accent: #f59e0b;
    --dark: #1a202c;
    --dark-gray: #2d3748;
    --medium-gray: #4a5568;
    --light-gray: #e2e8f0;
    --off-white: #f7fafc;
    --white: #ffffff;
    --success: #10b981;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.hidden {
    display: none !important;
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-light);
}

/* ================================
   LOGO COMPONENT
   ================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero logo styling - enhanced visibility */
.hero .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.8)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    color: #ffffff;
}

.hero .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.9)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* ================================
   BUTTONS
   ================================ */

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ================================
   FORMS
   ================================ */

.waitlist-form {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    color: var(--text-primary);
}

.waitlist-form button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    background-image: url('../images/hero-stage-performance.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    opacity: 0.95;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
                 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-form-container {
    margin-top: var(--spacing-lg);
}

.trust-signal {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ================================
   SECTION STYLES
   ================================ */

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   PROBLEM SECTION
   ================================ */

.problem-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--off-white);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.pain-point {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pain-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    color: var(--primary-light);
}

.pain-icon svg {
    width: 100%;
    height: 100%;
}

.pain-point h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pain-point p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ================================
   SOLUTION SECTION
   ================================ */

.solution-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

/* Workflow Steps */
.workflow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.workflow-step {
    text-align: center;
    padding: var(--spacing-md);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.workflow-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.workflow-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Benefit Cards */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Placeholder should only show when no actual image exists.
   When adding real images, add the 'has-image' class to .benefit-image
   to hide the placeholder overlay */
.benefit-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
}

.benefit-image.has-image .benefit-image-placeholder {
    display: none;
}

.benefit-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--white);
}

.benefit-content {
    padding: var(--spacing-md);
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.benefit-content ul {
    list-style: none;
    padding: 0;
}

.benefit-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.benefit-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ================================
   FESTIVAL MODULE SECTION
   ================================ */

.festival-module-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f7f3ff 0%, #fff8f0 100%);
    position: relative;
    overflow: hidden;
}

.festival-module-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.festival-module-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.festival-module-section .container {
    position: relative;
    z-index: 1;
}

.festival-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 auto var(--spacing-md);
    text-align: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.festival-badge svg {
    width: 20px;
    height: 20px;
}

.festival-value-prop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
}

.value-stat {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.value-stat .stat-description {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
}

.festival-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.festival-feature {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.festival-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.festival-feature .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-sm);
    color: var(--accent);
}

.festival-feature .feature-icon svg {
    width: 100%;
    height: 100%;
}

.festival-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.festival-feature > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.festival-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: var(--radius-xl);
    margin: var(--spacing-xl) 0 var(--spacing-lg);
    border: 3px solid var(--accent);
}

.festival-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.festival-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.festival-cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.festival-cta .btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    font-size: 1.25rem;
    padding: 1.125rem 3rem;
}

.festival-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.festival-cta .btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 3px solid var(--accent);
}

.festival-cta .btn-secondary:hover {
    background: var(--off-white);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
}

.festival-testimonial {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.testimonial-quote {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 4px solid var(--accent);
}

.testimonial-quote svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: var(--spacing-sm);
}

.testimonial-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.testimonial-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

/* ================================
   WHY THIS MATTERS SECTION
   ================================ */

.why-matters-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--primary-light);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ================================
   DIFFERENT SECTION
   ================================ */

.different-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.comparison-card {
    background: var(--off-white);
    border: 3px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.comparison-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.comparison-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.comparison-headline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-sm) 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.comparison-points {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.comparison-points li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.comparison-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    color: var(--white);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    background-image: url('../images/cta-crowd-hands.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    opacity: 0.95;
    z-index: -1;
}

.cta-content {
    text-align: center;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4),
                 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subheadline {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4),
                 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-info {
    text-align: center;
    margin-top: var(--spacing-md);
    font-size: 1rem;
    opacity: 0.9;
}

.cta-info p {
    margin-bottom: 0.5rem;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer .logo-icon {
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-contact i {
    margin-right: 0.5rem;
    opacity: 0.8;
}

.footer a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ================================
   SUCCESS PAGE
   ================================ */

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: var(--spacing-md) auto;
    color: var(--success);
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.success-message {
    margin-bottom: var(--spacing-lg);
}

.message-main {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.message-detail {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.success-next-steps {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
}

.success-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: left;
}

.step {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.success-share {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--off-white);
    border-radius: var(--radius-lg);
}

.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-sm);
}

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

.share-btn svg {
    width: 20px;
    height: 20px;
}

.success-actions {
    margin-top: var(--spacing-lg);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2, .section-title {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.125rem;
    }
    
    .cta-headline {
        font-size: 2.25rem;
    }
    
    .cta-subheadline {
        font-size: 1.125rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .workflow {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .festival-features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .success-headline {
        font-size: 2rem;
    }
    
    .feature-detail,
    .feature-detail-reverse {
        grid-template-columns: 1fr;
    }
    
    .feature-detail-reverse .feature-detail-visual {
        order: 0;
    }
    
    .user-stories {
        grid-template-columns: 1fr;
    }
    
    .market-insight {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .workflow {
        grid-template-columns: 1fr;
    }
    
    .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* ================================
   FESTIVAL PAGE SPECIFIC STYLES
   ================================ */

.festival-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.hero-stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
}

.btn-large {
    font-size: 1.375rem;
    padding: 1.25rem 3.5rem;
}

/* Feature Showcase */
.feature-showcase {
    margin-top: var(--spacing-xl);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    align-items: center;
}

.feature-detail-reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-detail-reverse .feature-detail-visual {
    order: -1;
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.feature-detail h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.feature-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.feature-capabilities {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.capability {
    padding: var(--spacing-sm);
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-light);
}

.capability h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.capability p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.feature-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    text-align: center;
    padding: var(--spacing-md);
}

.visual-placeholder svg {
    width: 200px;
    height: 200px;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

.visual-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* User Stories */
.user-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.user-story {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 3px solid var(--light-gray);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.user-story:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--light-gray);
}

.story-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
}

.story-icon svg {
    width: 100%;
    height: 100%;
}

.story-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.story-item {
    padding: var(--spacing-sm);
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.story-item p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.story-item p:last-child {
    margin-bottom: 0;
}

.story-item strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Market Insight */
.market-insight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.insight-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

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

.insight-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 3px solid var(--accent);
}

.insight-highlight p strong {
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* Comparison Table */
.comparison-table {
    margin-top: var(--spacing-xl);
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-table h3 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--primary-gradient);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background: var(--off-white);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td:nth-child(2) {
    color: var(--text-secondary);
}

.comparison-table td:nth-child(3) {
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer Link */
.footer-link {
    margin-top: var(--spacing-sm);
}

.footer-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* ================================
   ACCESSIBILITY
   ================================ */

/* Focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-background,
    .cta-background {
        opacity: 1;
    }
    
    .benefit-image-placeholder {
        opacity: 1;
    }
}

/* Print styles */
@media print {
    .hero-background,
    .cta-background {
        display: none;
    }
    
    .waitlist-form,
    .footer-social {
        display: none;
    }
}
