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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background: #0a0f1b;
    color: #1a1a2e;
    position: relative;
    overflow-x: hidden;
}

/* Focus indicators for accessibility */
*:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.background-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, #1e40af 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, #3b82f6 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #0a0f1b 0%, transparent 100%);
    opacity: 0.3;
    animation: gradient-shift 20s ease infinite;
    z-index: 0;
}

@keyframes gradient-shift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 27, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e5e7eb;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 27, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    z-index: 99;
}

.mobile-nav.active {
    max-height: 300px;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    border-left-color: #3b82f6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.meeting-details {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

#name-input {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#name-input::placeholder {
    color: #9ca3af;
}

#name-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

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

.btn-primary:focus-visible {
    outline: 2px solid #93bbfc;
    outline-offset: 3px;
}

.meeting-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.duration-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 1 auto;
}

.duration-selector label {
    color: #e5e7eb;
    font-weight: 500;
}

#duration {
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#duration:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.custom-rate-toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 1 auto;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: #9ca3af;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
    background-color: white;
}

.toggle-label {
    color: #e5e7eb;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.custom-rate-input-container {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    animation: fadeIn 0.3s ease;
}

.custom-rate-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.custom-rate-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency-symbol {
    color: #9ca3af;
    font-size: 1.125rem;
    font-weight: 500;
}

#custom-rate-input {
    width: 100px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

#custom-rate-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.rate-suffix {
    color: #9ca3af;
    font-size: 0.875rem;
}

.custom-rate-hint {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.attendees-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 300px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0;
}

.attendee-count {
    font-size: 1rem;
    font-weight: 400;
    color: #9ca3af;
    margin-left: 0.5rem;
}

.btn-clear-all {
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-all:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.btn-clear-all:focus-visible {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.attendees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.attendee-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease;
}

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

.attendee-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.attendee-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.attendee-info {
    flex: 1;
}

.attendee-name {
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.attendee-rate {
    font-size: 0.875rem;
    color: #9ca3af;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.1);
}

.remove-btn:focus-visible {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.empty-state svg {
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 1rem;
}

.cost-summary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item.total {
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cost-label {
    color: #9ca3af;
    font-weight: 500;
}

.cost-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e5e7eb;
}

.cost-item.total .cost-value {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-send {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

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

.btn-send:focus-visible {
    outline: 2px solid #93bbfc;
    outline-offset: 3px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.hero-feature svg {
    flex-shrink: 0;
    color: #3b82f6;
}

.integrations-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 3rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.integration-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.integration-category {
    margin-bottom: 3rem;
}

.integration-category:last-child {
    margin-bottom: 0;
}

.integration-category h3 {
    color: #e5e7eb;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.integration-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.integration-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.integration-badge svg {
    color: #3b82f6;
}

.integration-badge span {
    color: #e5e7eb;
    font-size: 0.875rem;
    font-weight: 500;
}

.benefits-section {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    color: #3b82f6;
}

.benefit-card h3 {
    color: #e5e7eb;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #9ca3af;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: #9ca3af;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-demo {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.btn-calculate {
    padding: 1rem 2rem;
    background: transparent;
    color: #e5e7eb;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-testimonial {
    color: #9ca3af;
    font-style: italic;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .meeting-details,
    .attendees-section,
    .cost-summary,
    .integrations-section,
    .cta-section {
        padding: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    #name-input {
        min-width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-demo,
    .btn-calculate {
        width: 100%;
    }
    
    .integration-badges {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

.footer {
    margin-top: 6rem;
    background: rgba(10, 15, 27, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: gradient-shift 30s ease infinite;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 2rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #e5e7eb;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    color: #e5e7eb;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    transform: translateY(-2px);
}

.footer-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-cta p {
    color: #e5e7eb;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: #6b7280;
    font-size: 0.813rem;
}

.footer-legal a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-stats {
        max-width: 200px;
        margin: 0 auto;
    }
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.drawer.active {
    transform: translateY(0);
}

.drawer-content {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.drawer-view {
    text-align: center;
}

.drawer-view.hidden {
    display: none;
}

.drawer-view h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cost-warning {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.drawer-view p {
    color: #e5e7eb;
}

.cost-highlight {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drawer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-send-anyway {
    padding: 0.875rem 2rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-anyway:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #93bbfc;
}

.btn-email-best {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-email-best:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
}

.video-tools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.video-tool {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-tool:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.tool-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
}

.tool-icon svg {
    color: #3b82f6;
    width: 24px;
    height: 24px;
}

.tool-info {
    flex: 1;
    text-align: left;
}

.tool-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tool-info p {
    color: #e5e7eb;
    font-size: 0.875rem;
}

.btn-close {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-section {
    padding: 4rem 0;
}

.faq-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    min-height: 60px;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer p {
    padding: 0 1.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Toast Container */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    .container {
        padding: 5rem 1rem 2rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .meeting-details,
    .attendees-section,
    .cost-summary,
    .integrations-section,
    .cta-section,
    .faq-section {
        padding: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    #name-input {
        min-width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-demo,
    .btn-calculate {
        width: 100%;
    }
    
    .integration-badges {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .drawer-content {
        padding: 1.5rem;
    }
    
    .drawer-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-send-anyway,
    .btn-email-best {
        width: 100%;
    }
    
    .attendees-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-clear-all {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .meeting-details,
    .attendees-section,
    .cost-summary,
    .integrations-section,
    .cta-section,
    .faq-section {
        padding: 1rem;
    }
    
    .cost-value {
        font-size: 1.25rem;
    }
    
    .cost-item.total .cost-value {
        font-size: 1.5rem;
    }
    
    .hero-features {
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-feature {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #e5e7eb;
        transition: all 0.3s ease;
    }
    
    .hero-feature svg {
        width: 24px;
        height: 24px;
        background: rgba(59, 130, 246, 0.1);
        padding: 8px;
        border-radius: 8px;
        box-sizing: content-box;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }
    
    .toast-container {
        bottom: 80px;
        top: auto;
        right: 10px;
        left: 10px;
        max-height: 300px;
        overflow: hidden;
        flex-direction: column-reverse;
    }
    
    .toast {
        font-size: 0.875rem;
        animation: slideUp 0.3s ease;
    }
    
    .toast.fade-out {
        animation: fadeOutDown 0.3s ease forwards;
    }
    
    .integration-badges {
        gap: 0.5rem;
    }
    
    .integration-badge {
        padding: 0.75rem 0.5rem;
    }
    
    .integration-badge span {
        font-size: 0.75rem;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-accept, .btn-decline {
        width: 100%;
    }
    
    .meeting-options {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .duration-selector {
        width: 100%;
    }
    
    .custom-rate-toggle-container {
        width: 100%;
        justify-content: flex-start;
    }
    
    .custom-rate-input-container {
        margin-top: 1rem;
    }
    
    .custom-rate-input-wrapper {
        justify-content: flex-start;
    }
    
    #custom-rate-input {
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .meeting-options {
        gap: 1.5rem;
    }
}

.toast {
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
}

.toast.add {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.toast.remove {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.toast.milestone {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    font-size: 1.25rem;
    padding: 16px 24px;
}

.toast.warning {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.toast.info {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.milestone-amount {
    font-weight: 700;
    color: #c4b5fd;
    margin-left: 4px;
}

.toast.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

.toast.confirm {
    background: rgba(59, 130, 246, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 16px;
    max-width: 400px;
}

.confirm-message {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.confirm-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.confirm-yes, .confirm-no {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-yes {
    background: #ef4444;
    color: white;
}

.confirm-yes:hover {
    background: #dc2626;
}

.confirm-no {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.confirm-no:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

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

@keyframes fadeOutDown {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(10, 15, 27, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 1001;
    display: none;
    animation: slideUp 0.3s ease;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-accept {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-decline {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
}

.footer-privacy {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.footer-privacy a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: #3b82f6;
}

.testimonials-section {
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
    height: 80px;
}

.testimonial-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial.exit {
    opacity: 0;
    transform: translateX(50px);
}

.testimonial-quote {
    color: #9ca3af;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Privacy Drawer */
.privacy-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.98) 0%, rgba(59, 130, 246, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-drawer.active {
    transform: translateY(0);
}

.privacy-drawer-content {
    padding: 2rem;
    color: #ffffff;
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.privacy-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.privacy-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.privacy-refresh:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.privacy-refresh svg {
    transition: transform 0.3s ease;
}

.privacy-refresh:hover svg {
    transform: rotate(180deg);
}

.privacy-poem {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.poem-content {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: fadeInPoem 0.5s ease;
}

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

.poem-content.haiku {
    font-family: 'Georgia', serif;
}

.poem-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatEmoji 20s infinite linear;
}

.floating-emoji:nth-child(1) { top: 20%; left: 10%; }
.floating-emoji:nth-child(2) { top: 60%; right: 15%; }
.floating-emoji:nth-child(3) { bottom: 20%; left: 20%; }
.floating-emoji:nth-child(4) { top: 40%; right: 10%; }

@keyframes floatEmoji {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.privacy-footer {
    text-align: center;
}

.privacy-tldr {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-privacy-close {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-privacy-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* Mobile responsiveness for privacy drawer */
@media (max-width: 768px) {
    .privacy-drawer-content {
        padding: 1.5rem;
    }
    
    .privacy-header h3 {
        font-size: 1.25rem;
    }
    
    .privacy-poem {
        padding: 2rem 1.5rem;
        min-height: 200px;
    }
    
    .poem-content {
        font-size: 1.1rem;
    }
    
    .privacy-refresh {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .privacy-refresh svg {
        width: 16px;
        height: 16px;
    }
    
    .floating-emoji {
        font-size: 1.5rem;
    }
}

/* Confetti Container */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001; /* Above drawer to ensure visibility */
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #3b82f6;
    opacity: 0.8;
    pointer-events: none;
    will-change: transform;
}

@keyframes confettiBurst {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0);
        opacity: 1;
    }
    10% {
        transform: translate(var(--x1), var(--y1)) rotate(90deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x2), var(--y2)) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

.confetti-piece {
    animation: confettiBurst 3s ease-out forwards;
    transform-origin: center;
}

/* Different confetti colors */
.confetti-piece.color-1 { background: #3b82f6; }
.confetti-piece.color-2 { background: #60a5fa; }
.confetti-piece.color-3 { background: #10b981; }
.confetti-piece.color-4 { background: #a78bfa; }
.confetti-piece.color-5 { background: #fbbf24; }
.confetti-piece.color-6 { background: #ef4444; }

/* Damage Modal */
.damage-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.damage-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.damage-modal.visible {
    opacity: 1;
}

.damage-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 27, 0.95);
    backdrop-filter: blur(10px);
}

.damage-content {
    position: relative;
    background: rgba(20, 27, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(59, 130, 246, 0.15);
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.damage-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.damage-close:hover {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.1);
}

.damage-phase {
    text-align: center;
    transition: all 0.5s ease;
}

.damage-phase.hidden {
    display: none;
}

.damage-title {
    font-size: 2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* ROI Phase Styles */
.roi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.roi-stat {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.roi-stat:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.roi-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    word-break: break-word;
}

.roi-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roi-subtitle {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Simulator Phase Styles */
.simulator-stage {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.simulator-attendees {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    min-height: 100px;
}

.simulator-attendee {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #60a5fa;
    font-size: 1.125rem;
    animation: attendeePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s ease;
}

@keyframes attendeePopIn {
    from {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.simulator-attendee:hover {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.3);
}

.simulator-cost {
    text-align: center;
}

.cost-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cost-amount {
    font-size: 4rem;
    font-weight: 700;
    color: #ef4444;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
    transition: all 0.3s ease;
}

.cost-per-hour {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.simulator-messages {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simulator-message {
    color: #fbbf24;
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0;
    animation: messageFadeIn 0.5s ease forwards;
}

@keyframes messageFadeIn {
    to {
        opacity: 1;
    }
}

/* Action Button */
.damage-actions {
    margin-top: 2rem;
    text-align: center;
}

.btn-damage-action {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-damage-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .damage-content {
        padding: 2rem;
        width: 95%;
    }
    
    .damage-title {
        font-size: 1.5rem;
    }
    
    .roi-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .roi-number {
        font-size: 2rem;
    }
    
    .simulator-stage {
        padding: 2rem;
    }
    
    .simulator-attendee {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .cost-amount {
        font-size: 3rem;
    }
    
    .simulator-message {
        font-size: 1rem;
    }
}