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

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --danger-color: #dc2626;
    --success-color: #16a34a;
    --error-color: #dc2626;
    --background: #f8fafc;
    --card-background: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1e9fb3 0%, #e0f2f7 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: var(--card-background);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    animation: slideUp 0.4s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.header .logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 16px auto;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.section {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.instructions {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 10px;
}

/* Turnstile invisible widget - prevent layout shift */
#turnstile-widget {
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden;
}

/* Signup Instructions */
.signup-instructions {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px !important;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #f59700;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.phone-number-large {
    margin: 12px 0 !important;
}

.phone-number-large a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f59700;
    text-decoration: none;
    display: inline-block;
}

.phone-number-large a:hover {
    color: #d98704;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.help-text {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 16px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.4;
}

.disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.captcha-group {
    background: var(--background);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    min-width: 80px;
}

.captcha-container input {
    flex: 1;
    margin-bottom: 0;
}

.btn {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: #f59700;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #d98704;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary-outline {
    background: white;
    color: #1699ad;
    border: 2px solid #1699ad;
    margin-top: 12px;
}

.btn-secondary-outline:hover:not(:disabled) {
    background: #f8f9fa;
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-spinner {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
}

.message-error {
    background: #fee2e2;
    color: var(--error-color);
    border: 1px solid #fecaca;
}

.message-success {
    background: #dcfce7;
    color: var(--success-color);
    border: 1px solid #bbf7d0;
}

.status-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 16px;
}

#waiting-section h2,
#dashboard-section h2 {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.phone-display {
    background: var(--background);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0;
}

.loading-spinner {
    text-align: center;
    margin: 32px 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.account-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.info-card {
    background: var(--background);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

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

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--background);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 151, 0, 0.2);
    border-color: #d98704;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #f59700;
}

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

.schedules-section {
    margin-bottom: 24px;
}

.schedules-section h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.schedules-list {
    background: var(--background);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.schedule-item {
    padding: 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

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

.schedule-time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.schedule-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.loading-text {
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.no-schedules {
    color: var(--text-secondary);
    text-align: center;
}

.session-info {
    background: var(--background);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    text-align: center;
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.info-text span {
    font-weight: 600;
    color: var(--text-primary);
}

.action-buttons {
    display: flex;
    justify-content: center;
}

.logout-link {
    color: #dc2626;
    text-decoration: none;
    font-size: 14px;
    padding: 8px;
    transition: opacity 0.2s;
}

.logout-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

footer {
    text-align: center;
    color: white;
    margin-top: 20px;
}

footer p {
    margin: 4px 0;
    font-size: 0.875rem;
}

.security-note {
    opacity: 0.8;
}

@media (max-width: 640px) {
    .card {
        padding: 24px;
    }

    .header .logo {
        max-width: 150px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .account-info {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

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

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

/* Messages Tab */
.messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.messages-header h3 {
    margin: 0;
}

.timezone-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timezone-selector label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.timezone-selector select {
    padding: 6px 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
}

.message-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.message-card:hover {
    box-shadow: var(--shadow);
}

.message-card.disabled {
    opacity: 0.6;
    background: var(--background);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.message-info {
    flex: 1;
}

.message-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-delete {
    background: none;
    border: none;
    color: #dc2626;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s, transform 0.1s;
}

.btn-delete:hover {
    color: #991b1b;
    transform: scale(1.1);
}

.btn-delete:active {
    transform: scale(0.95);
}

.message-from {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.message-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.message-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-new {
    background: #dcfce7;
    color: var(--success-color);
}

.message-player {
    margin: 12px 0;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
    border-radius: 6px;
    white-space: nowrap;
}

.messages-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.messages-group {
    margin-bottom: 32px;
}

.messages-group h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Schedules Tab */
.schedules-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.schedules-header h3 {
    margin: 0;
}

.schedules-header .btn {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.schedule-form {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.schedule-form h4 {
    margin-top: 0;
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.schedule-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s;
    position: relative;
}

.schedule-card:hover {
    box-shadow: var(--shadow);
}

.schedule-delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    color: #666;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.schedule-delete-btn:hover {
    background: #fee;
    border-color: #fcc;
    color: #c33;
}

.schedule-time-range {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 6px;
    padding-right: 40px;
}

.schedule-frequency {
    color: var(--text-secondary);
    font-size: 14px;
}

.schedule-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.schedule-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #dcfce7;
    color: var(--success-color);
}

.schedules-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

/* Dashboard Footer */
.dashboard-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

/* Overview specific */
.overview-schedules {
    margin-top: 24px;
}

.overview-schedules h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.schedules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.schedule-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.schedule-time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.schedule-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.no-schedules {
    color: var(--text-secondary);
    text-align: center;
    padding: 24px;
    font-style: italic;
}

.no-schedules a {
    color: var(--primary);
    text-decoration: underline;
}

.no-schedules a:hover {
    color: var(--primary-dark);
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .messages-header,
    .schedules-header {
        flex-direction: column;
        align-items: stretch;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .message-actions {
        flex-direction: column;
    }

    .btn-sm {
        width: 100%;
    }
}

/* Footer Styles */
.site-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.footer-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-nav .separator {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 16px;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-style: italic;
}

.legal-content {
    text-align: left;
    line-height: 1.7;
}

.legal-content section {
    margin-bottom: 32px;
}

.legal-content h1 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.legal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-content a.email-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.legal-content a.email-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.agreement-notice {
    background-color: var(--border-color);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.agreement-notice p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Page Specific */
.contact-method {
    background-color: var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-method h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.contact-method .note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.125rem;
}

.thank-you {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 8px;
}

.thank-you p {
    color: white;
    margin-bottom: 8px;
}

.thank-you strong {
    color: white;
}

/* Mobile responsiveness for footer and legal */
@media (max-width: 640px) {
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav .separator {
        display: none;
    }

    .legal-content {
        font-size: 0.9rem;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }

    .legal-content h3 {
        font-size: 1rem;
    }

    .contact-method {
        padding: 16px;
    }
}

/* Press & Events Page Styles */
.press-hero {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.press-hero h2 {
    color: white;
    border: none;
    margin: 0 0 16px 0;
}

.press-hero .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Pricing Page Styles */
.pricing-hero {
    text-align: center;
    padding: 32px;
    margin-bottom: 40px;
}

.pricing-hero h2 {
    margin: 0 0 12px 0;
}

.pricing-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.pricing-tier {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.free-tier {
    border-color: var(--primary-color);
}

.future-tier {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-style: dashed;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge.future {
    background: #6c757d;
}

.pricing-tier h2 {
    margin: 12px 0 16px 0;
    font-size: 2rem;
    color: var(--text-primary);
    border: none;
}

.price {
    margin-bottom: 24px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 8px;
}

.tier-description {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.tier-description p {
    margin: 0;
    color: var(--text-secondary);
}

.features-list {
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature:last-child {
    border-bottom: none;
}

.feature .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

.future-features .feature .icon {
    background: #6c757d;
}

.feature span:last-child {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.future-note {
    margin-top: 24px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.future-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.faq-section {
    margin: 60px 0 40px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 24px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    margin: 0 0 12px 0;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-item h3 {
    margin: 0 0 12px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.about-section {
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
}

.about-section h2 {
    margin-top: 0;
}

.about-section p {
    max-width: 700px;
    margin: 0 auto 16px auto;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .pricing-tier {
        padding: 24px;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item,
.event-type,
.integration-option {
    background-color: var(--border-color);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-item h3,
.event-type h3,
.integration-option h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.125rem;
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.process-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.integration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.option-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 12px;
}

.differentiators {
    list-style: none;
    padding: 0;
}

.differentiators li {
    padding: 16px;
    margin-bottom: 12px;
    background-color: var(--border-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial {
    background-color: var(--border-color);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    margin: 24px 0;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.case-study-note {
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

.coming-soon {
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    padding: 24px;
}

.cta-section {
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 48px;
}

.cta-section h2 {
    border: none;
    margin-top: 0;
}

.contact-cta,
.press-kit {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin: 24px auto;
    max-width: 600px;
}

.contact-cta h3,
.press-kit h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.social-proof {
    background-color: var(--border-color);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.social-proof h2 {
    border: none;
    margin-top: 0;
}

.footer-nav a.highlight {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Mobile responsiveness for press page */
@media (max-width: 640px) {
    .press-hero {
        padding: 24px;
    }

    .press-hero .lead {
        font-size: 1rem;
    }

    .event-types,
    .integration-options {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        padding-left: 40px;
    }

    .process-steps li::before {
        width: 28px;
        height: 28px;
        font-size: 0.875rem;
    }

    .cta-section {
        padding: 24px;
    }
}