/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --blur-bg: rgba(255, 255, 255, 0.72);
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f9fafb;
        --text-secondary: #9ca3af;
        --bg-primary: #111111;
        --bg-secondary: #1f1f1f;
        --border-color: #374151;
        --blur-bg: rgba(17, 17, 17, 0.72);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Header */
.main-header {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    padding: 2rem 0;
    background: transparent;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.main-header.hidden {
    opacity: 0;
    transform: translateY(-50px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    padding-bottom: 0.1em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
    background: var(--blur-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-title {
    opacity: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    transition: opacity 0.3s ease;
}

.navbar.visible .nav-title {
    opacity: 1;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
}

.footer-app-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.nav-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.app-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.download-nav {
    background: var(--primary-gradient);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: 16rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-wrap {
    white-space: nowrap;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

/* App Store Badge */
.app-store-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-badge {
    height: 48px;
    width: auto;
}

.app-store-badge-hero {
    height: 80px;
    width: auto;
}

.app-store-badge-large {
    height: 90px;
    width: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Menu Bar App UI */
.menu-bar-app {
    animation: float 6s ease-in-out infinite;
    max-width: 280px;
    margin: 0 auto;
}

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

.menu-bar-dropdown {
    background: rgba(246, 246, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
    .menu-bar-dropdown {
        background: rgba(40, 40, 40, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Recording Status */
.recording-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
}

.status-indicator.recording .record-dot {
    width: 14px;
    height: 14px;
    background: #ff3b30;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.2);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.status-text {
    flex: 1;
}

.status-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.status-size {
    font-size: 11px;
    color: #6b7280;
    margin-top: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.status-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    transition: opacity 0.2s;
    border-radius: 4px;
}

.icon-btn:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.05);
}

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

@media (prefers-color-scheme: dark) {
    .status-title {
        color: #f3f4f6;
    }
    .status-size {
        color: #9ca3af;
    }
    .icon-btn {
        color: #9ca3af;
    }
    .icon-btn:hover:not(:disabled) {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Dividers */
.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0;
}

.divider-vertical {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    .divider, .divider-vertical {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* Audio Sources */
.audio-sources {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 16px;
}

.audio-source {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.source-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.toggle-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 50%;
}

.toggle-icon.active {
    color: #fff;
    background: #34c759;
    font-weight: bold;
}

.source-label {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.source-status {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-status.on {
    color: #34c759;
    background: rgba(52, 199, 89, 0.15);
}

.source-status.off {
    color: #6b7280;
    background: rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark) {
    .source-label {
        color: #f3f4f6;
    }
    .source-status.off {
        background: rgba(255, 255, 255, 0.05);
        color: #9ca3af;
    }
}

/* Audio Meters */
.audio-meters {
    display: flex;
    gap: 10px;
    padding: 0 14px 12px;
}

.meter {
    flex: 1;
    height: 28px;
    background: #f3f4f6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.meter.active {
    background: linear-gradient(90deg, #34c759 0%, #30d158 100%);
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.meter-bar {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.meter-bar.animated {
    animation: wave 0.8s ease-in-out infinite;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
}

@keyframes wave {
    0%, 100% { height: 12px; }
    50% { height: 20px; }
}

.meter.inactive {
    background: #f9fafb;
}

.meter-label {
    font-size: 10px;
    color: #9ca3af;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

@media (prefers-color-scheme: dark) {
    .meter {
        background: #374151;
        border-color: rgba(255, 255, 255, 0.06);
    }
    .meter.inactive {
        background: #1f2937;
    }
}

/* Controls */
.controls {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.btn-control.stop {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
}

.btn-control.stop:hover {
    background: rgba(255, 59, 48, 0.15);
    transform: translateY(-1px);
}

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

.btn-control.ai-chat {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}

.btn-control.ai-chat:hover {
    background: rgba(0, 122, 255, 0.15);
    transform: translateY(-1px);
}

.btn-control.ai-chat:active {
    transform: translateY(0);
}

.stop-icon {
    font-size: 10px;
}

.brain-icon {
    font-size: 14px;
}

/* History Section */
.history-section {
    padding: 8px 14px 12px;
}

.history-header {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    font-size: 11px;
    color: #6b7280;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    transition: color 0.15s;
}

.history-header:hover {
    color: #374151;
}

.chevron {
    font-size: 9px;
    transition: transform 0.2s;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    margin-top: 6px;
    background: #f9fafb;
    border-radius: 6px;
    transition: background 0.15s;
    cursor: pointer;
}

.history-item:hover {
    background: #f3f4f6;
}

.history-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #34c759;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

.history-details {
    flex: 1;
    min-width: 0;
}

.history-title {
    font-size: 11px;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
    font-weight: 500;
}

.history-time {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.history-action {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    opacity: 0;
    transition: opacity 0.15s;
    border-radius: 4px;
}

.history-item:hover .history-action {
    opacity: 1;
}

.history-action:hover {
    background: rgba(0, 0, 0, 0.05);
}

@media (prefers-color-scheme: dark) {
    .history-header {
        color: #9ca3af;
    }
    .history-header:hover {
        color: #d1d5db;
    }
    .history-item {
        background: #1f2937;
    }
    .history-item:hover {
        background: #374151;
    }
    .history-title {
        color: #f3f4f6;
    }
    .history-time {
        color: #6b7280;
    }
    .history-action {
        color: #9ca3af;
    }
    .history-action:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}


/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

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

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-secondary);
    max-width: 250px;
    margin: 0 auto;
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 1rem;
    align-self: center;
    margin-bottom: 4rem;
}

/* Pricing */
.pricing {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: var(--bg-primary);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-image: var(--primary-gradient) 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pro-type {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-content {
    padding: 1rem 0;
}

.faq-content p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-content p strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

/* Download Section */
.download-section {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.download-card {
    background: var(--primary-gradient);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.download-buttons .btn-primary:hover {
    background: #f9fafb;
}

.download-meta {
    margin-top: 1rem;
}

.download-meta small {
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    overflow: visible !important;
}

.footer .container {
    overflow: visible !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-description {
    color: var(--text-secondary);
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

/* GitHub Link Styles */
.github-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.github-icon {
    flex-shrink: 0;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.github-link:hover .github-icon {
    transform: scale(1.1);
}

/* Info Card GitHub Link */
.info-card .github-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card .github-link .github-icon {
    width: 20px;
    height: 20px;
}

.recording-notice {
    padding: 1.5rem !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid var(--border-color) !important;
    border-radius: 0 !important;
    margin: 2rem auto !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 100 !important;
    min-height: 60px !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: auto !important;
    max-width: 1200px !important;
}

.recording-notice p {
    color: var(--text-secondary) !important;
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    max-width: 900px !important;
    display: block !important;
    position: relative !important;
    z-index: 101 !important;
    opacity: 1 !important;
}

.recording-notice strong {
    color: #f59e0b !important;
    font-weight: 600 !important;
}

@media (prefers-color-scheme: dark) {
    .recording-notice {
        background: transparent !important;
        border-top: 1px solid var(--border-color) !important;
    }

    .recording-notice p {
        color: var(--text-secondary) !important;
    }

    .recording-notice strong {
        color: #fbbf24 !important;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Screenshot Carousel */
.screenshot-showcase {
    padding: 6rem 2rem;
    background: var(--bg-secondary);
}

.screenshot-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot-carousel {
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    background: var(--bg-primary);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.carousel-slide img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

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

.carousel-indicators {
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 32px;
    border-radius: 5px;
    background: var(--primary-gradient);
}

.indicator:hover:not(.active) {
    background: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-title {
        font-size: 2.5rem;
    }

    .header-app-icon {
        width: 60px;
        height: 60px;
    }

    .hero {
        padding: 14rem 2rem 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        order: -1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-bar-app {
        transform: scale(0.9);
    }

    .showcase-image {
        width: 100%;
        max-width: 100%;
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

}

/* Support Page Styles */
.support-page {
    padding: 8rem 2rem 4rem;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Support Form */
.support-form-container {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.support-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin-top: 0.5rem;
}

/* Form Messages */
#formMessages {
    margin-top: 1.5rem;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.form-message strong {
    font-weight: 600;
}

/* Button Loading State */
.btn .btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
}

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

.spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

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

/* Support Info Cards */
.support-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.info-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.info-list li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .form-group input,
    .form-group textarea {
        background: var(--bg-secondary);
    }

    .form-message.success {
        background: rgba(34, 197, 94, 0.15);
        color: #4ade80;
    }

    .form-message.error {
        background: rgba(239, 68, 68, 0.15);
        color: #f87171;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .support-page {
        padding: 6rem 1.5rem 3rem;
    }

    .support-form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
