* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0b14;
    color: #ffffff;
    overflow-x: hidden;
}

/* ── Ambient Glow Blobs ── */
.glow-blob-cyan {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-blob-purple {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.10) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-blob-green {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

/* ── Noise Overlay ── */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    pointer-events: none;
    z-index: 1;
}

/* ── Card Shine ── */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.card-shine:hover::after {
    left: 160%;
}

/* ── Top Gradient Line ── */
.top-gradient-line {
    position: relative;
}

.top-gradient-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.25), transparent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 0.7rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-nav-actions .btn-login {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0a0b0;
}

.mobile-nav-actions .btn-login:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.mobile-nav-actions .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
}

.hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(91, 127, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 2rem;
}

.mobile-menu-tools {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.mobile-tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-tool-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9090b0;
    flex-shrink: 0;
}

.mobile-tool-icon i {
    font-size: 1.1rem;
}

.mobile-tool-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mobile-tool-title {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-tool-subtitle {
    color: #707080;
    font-size: 0.8rem;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.5rem;
}

.mobile-btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-actions .btn-login {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #a0a0b0;
}

.mobile-menu-actions .btn-login:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.mobile-menu-actions .btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.mobile-menu-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-login {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: #00d4ff;
    border: none;
    color: #ffffff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
    color: #00d4ff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-gray {
    display: block;
    background: linear-gradient(
        90deg,
        #00d4ff 0%,
        #00ff88 15%,
        #ffaa00 30%,
        #ff0080 45%,
        #00d4ff 60%,
        #00ff88 75%,
        #ffaa00 90%,
        #00d4ff 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: waveFlow 8s linear infinite;
    text-shadow: none;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes waveFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Search Container */
.search-container {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    gap: 1rem;
    transition: all 0.3s;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2), 0 0 40px rgba(0, 212, 255, 0.1);
}

.youtube-icon {
    flex-shrink: 0;
    color: #FF0000;
    font-size: 1.5rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.search-input::placeholder {
    color: #606060;
}

.btn-analyze {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #00d4ff;
    border: none;
    color: #ffffff;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.btn-analyze:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5);
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0a0b14;
    margin-left: -0.5rem;
}

.star {
    font-size: 1.25rem;
}

.stat-text {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.stat-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Demo Container */
.demo-container {
    margin-top: 2rem;
    margin-left: 4rem;
    margin-right: 4rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.browser-window {
    background: rgba(20, 22, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 212, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: rgba(15, 17, 28, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.browser-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    flex: 1;
    margin: 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-url span {
    color: #00d4ff;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.processing-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(39, 201, 63, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.15);
}

.processing-dot {
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.browser-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    min-height: 400px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 0.9rem;
}

.card-icon.transcript {
    background: rgba(0, 212, 255, 0.12);
    color: #00d4ff;
}

.card-icon.summary {
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
}

.card-icon.chat {
    background: rgba(0, 255, 136, 0.12);
    color: #00ff88;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.transcript-content,
.summary-content,
.chat-content {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.5;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.transcript-line {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: baseline;
}

.timestamp {
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.transcript-line .text {
    color: #a0a0b0;
    font-size: 0.8rem;
}

.summary-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.6rem;
}

.summary-content h4 {
    color: #ffffff;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-align: center;
}

.summary-content p {
    color: #9090a0;
    font-size: 0.75rem;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.chat-message {
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    max-width: 90%;
}

.chat-message.user {
    background: rgba(30, 30, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-self: flex-end;
}

.chat-message.user p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.75rem;
}

.chat-message.assistant {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-self: flex-start;
}

.chat-message.assistant p {
    color: #a0a0b0;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
}

.chat-timestamp {
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.chat-input-container {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s;
}

.chat-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.5);
}

.chat-input::placeholder {
    color: #606060;
}

.chat-send {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #e0e0e0;
    flex-shrink: 0;
}

.chat-send:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .browser-content {
        grid-template-columns: 1fr;
    }
    
    .demo-container {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .demo-container {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/* Features Section */
.features-section {
    background: #0a0b14;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: left;
    margin-bottom: 4rem;
}

.features-badge {
    display: inline-block;
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.features-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.title-dark {
    display: block;
    color: #3a3d4a;
}

.title-blue {
    display: block;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.features-grid:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.feature-arrow {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #a0a0a0;
    transition: all 0.3s;
}

.feature-arrow:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-icon i {
    font-size: 1.25rem;
}

.transcript-icon {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.summarizer-icon {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
}

.chat-icon {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.whiteboard-icon {
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
}

.feature-item-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item-title-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-badge {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    color: #ffaa00;
}

.interactive-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.visual-badge {
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    color: #ff0080;
}

.feature-item-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.feature-item-text {
    font-size: 1.05rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
}

.feature-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #707070;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    flex: 1;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-icon {
    font-size: 1rem;
}

.preview-title {
    font-size: 0.85rem;
    color: #808080;
    font-family: 'Courier New', monospace;
}

.preview-content {
    padding: 1.5rem;
    max-height: 220px;
    overflow-y: auto;
}

.preview-content::-webkit-scrollbar {
    width: 6px;
}

.preview-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.preview-content::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 3px;
}

.transcript-line-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.time-code {
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 50px;
}

.transcript-text {
    color: #c0c0c0;
    line-height: 1.6;
}

.summary-preview {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.summary-block h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
}

.summary-block p {
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.05);
    align-self: flex-start;
}

.feature-cta:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    gap: 0.85rem;
}

.feature-cta i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.feature-cta:hover i {
    transform: translateX(4px);
}

.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-question-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    align-self: flex-end;
    max-width: 85%;
}

.chat-answer-box {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #c0c0c0;
    line-height: 1.7;
}

.chat-answer-box p {
    margin: 0;
}

.timestamp-link {
    color: #00d4ff;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.whiteboard-preview {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.whiteboard-preview img {
    max-height: 190px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.mindmap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.mindmap-node {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #00d4ff;
    font-weight: 600;
}

.main-node {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
    font-size: 0.9rem;
}

.mindmap-connections {
    display: flex;
    gap: 2rem;
    position: relative;
}

.mindmap-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-a {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.concept-b {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.3);
    color: #ff0080;
}

.mindmap-bottom {
    display: flex;
    gap: 2rem;
}

.evidence {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.conclusion {
    background: rgba(255, 170, 0, 0.1);
    border-color: rgba(255, 170, 0, 0.3);
    color: #ffaa00;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 3rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    background: #0a0b14;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-badge {
    display: inline-block;
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.how-it-works-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.title-white {
    display: block;
    color: #ffffff;
}

.title-blue-gradient {
    display: block;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin: 0 0 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.25);
}

.step-three {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.03);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2a2d3a;
    margin-bottom: 1rem;
}

.step-two {
    color: #3a3d4a;
}

.step-three-num {
    color: #00d4ff;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.step-description {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.7;
    margin: 0 0 2rem 0;
}

.step-visual {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.visual-dots {
    color: #606060;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.url-input-demo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.demo-url {
    flex: 1;
    color: #a0a0a0;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.arrow-icon {
    color: #00d4ff;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #808080;
}

.info-dot {
    color: #00ff88;
    font-size: 0.6rem;
}

.tool-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tool-buttons:last-child {
    margin-bottom: 0;
}

.tool-btn {
    flex: 1;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.65rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-label {
    font-size: 0.85rem;
    color: #c0c0c0;
}

.progress-percent {
    font-size: 0.85rem;
    color: #00d4ff;
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s;
}

.complete {
    width: 100%;
    background: #00d4ff;
}

.summary-progress {
    width: 78%;
    background: #a78bfa;
}

.chat-progress {
    width: 52%;
    background: #00d4ff;
}

.whiteboard-progress {
    width: 31%;
    background: #00ff88;
}

.processing-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.spinner-icon {
    color: #00d4ff;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.share-btn {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.share-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.shareable-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #00ff88;
}

.link-display {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    margin-bottom: 1rem;
    word-break: break-all;
}

.export-formats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.format-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-title {
        font-size: 3rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #f6f7f9;
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-badge {
    display: inline-block;
    color: #667eea;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
    color: #1a1a2e;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-number.cyan {
    color: #00d4ff;
}

.stat-number.magenta {
    color: #ff00ff;
}

.stat-number.yellow {
    color: #ffaa00;
}

.stat-description {
    font-size: 0.9rem;
    color: #666677;
}

.testimonials-marquee {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.marquee-row {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.marquee-track[data-direction="left"] {
    animation: marquee-left 50s linear infinite;
}

.marquee-track[data-direction="right"] {
    animation: marquee-right 50s linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonials-marquee .testimonial-card {
    flex: 0 0 380px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stars {
    color: #ffaa00;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4a4a5a;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.1rem;
}

.author-title {
    font-size: 0.8rem;
    color: #888899;
}

@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background: #0a0b14;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    color: #00d4ff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.title-gray-text {
    display: block;
    color: #606060;
}

.cta-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
    margin: 0 0 3rem 0;
}

.cta-search-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    gap: 1rem;
    transition: all 0.3s;
}

.cta-search-box:focus-within {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2), 0 0 40px rgba(0, 212, 255, 0.1);
}

.cta-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.cta-search-input::placeholder {
    color: #606060;
}

.cta-start-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #00d4ff;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.cta-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.5);
}

.tool-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tool-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.4rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #a0a0a0;
    padding: 0.65rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #667eea;
    color: #ffffff;
}

.toggle-btn:hover:not(.active) {
    color: #ffffff;
}

.annual-note {
    font-size: 0.85rem;
    color: #00ff88;
    margin-top: 0.5rem;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(10, 11, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: rgba(15, 16, 25, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 60px rgba(0, 212, 255, 0.05);
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.03);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.08);
}

.pricing-card.featured:hover {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 80px rgba(99, 102, 241, 0.12);
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(30, 30, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0c0;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.plan-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #808080;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    color: #707070;
    font-weight: 400;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: #909090;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-features .feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.5;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    min-height: auto;
}

.check-icon {
    color: #00d4ff;
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.75rem;
}

.pricing-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 0.9rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.featured-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.featured-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

/* Footer */
.footer {
    background: #0a0b14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.25), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00d4ff;
}

.footer-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #606060;
}

.footer-icon {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-icon:hover {
    color: #00d4ff;
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 3rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }

    .footer-meta {
        flex-wrap: wrap;
        gap: 1rem 1.25rem;
        align-items: center;
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-actions {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }

    .search-box {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .search-input {
        font-size: 0.85rem;
        padding: 0;
    }

    .btn-analyze-text {
        display: none;
    }

    .btn-analyze {
        padding: 0.65rem;
        border-radius: 10px;
    }

    .btn-analyze i {
        font-size: 1rem;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
        justify-content: center;
    }

    .stat-item:first-child {
        flex: 0 0 100%;
        justify-content: center;
    }

    .stat-item:not(:first-child) {
        flex: 0 0 auto;
    }

    .demo-container {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .browser-window {
        background: #0d0d12;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
    }

    .browser-header {
        padding: 0.6rem 0.75rem;
        background: rgba(15, 17, 28, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .browser-dots {
        gap: 0.35rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .browser-url {
        padding: 0.35rem 0.6rem;
        margin: 0 0.5rem;
        gap: 0.4rem;
    }

    .browser-url i {
        font-size: 0.75rem;
    }

    .browser-url span {
        font-size: 0.7rem;
    }

    .processing-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
        gap: 0.35rem;
    }

    .processing-dot {
        width: 6px;
        height: 6px;
    }

    .browser-content {
        padding: 0;
        gap: 0;
        min-height: auto;
    }

    .feature-card {
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        border-radius: 0;
        padding: 1rem 1.25rem;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .feature-card:hover {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.04);
        transform: none;
    }

    .card-header {
        margin-bottom: 0.75rem;
        gap: 0.6rem;
    }

    .card-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
    }

    .card-icon i {
        font-size: 0.9rem;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .transcript-content {
        gap: 0.5rem;
    }

    .transcript-line {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .timestamp {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .transcript-line .text {
        font-size: 0.8rem;
    }

    .summary-content {
        gap: 0.5rem;
    }

    .summary-section {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        margin-bottom: 0;
        text-align: center;
    }

    .summary-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
        color: #ffffff;
    }

    .summary-content p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin: 0;
    }

    .chat-content {
        gap: 0.6rem;
        display: flex;
        flex-direction: column;
    }

    .chat-message {
        display: block;
        max-width: 85%;
        padding: 0.65rem 0.9rem;
        border-radius: 14px;
        margin-bottom: 0;
    }

    .chat-message.user {
        background: rgba(30, 30, 45, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.06);
        align-self: flex-end;
        border-bottom-right-radius: 4px;
    }

    .chat-message.user p {
        color: #e0e0e0;
        font-size: 0.8rem;
        margin: 0;
    }

    .chat-message.assistant {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.08);
        align-self: flex-start;
        border-bottom-left-radius: 4px;
    }

    .chat-message.assistant p {
        color: #a0a0b0;
        font-size: 0.8rem;
        line-height: 1.45;
        margin: 0;
    }

    .chat-timestamp {
        color: #00d4ff;
    }

    .chat-input-container {
        display: flex;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .chat-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }

    .chat-send {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .features-section,
    .how-it-works-section,
    .testimonials-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    .features-container {
        padding: 0 1rem;
    }

    .features-header {
        margin-bottom: 2.5rem;
    }

    .features-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.2);
        color: #00d4ff;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 0.4rem 0.9rem;
        border-radius: 20px;
        margin-bottom: 1.25rem;
    }

    .features-title,
    .how-it-works-title,
    .testimonials-title,
    .cta-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

    .features-title {
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .title-dark {
        color: #4a4d5a;
    }

    .features-description,
    .how-it-works-description,
    .cta-description {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #808080;
    }

    .features-grid {
        gap: 1.25rem;
    }

    .feature-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 1.25rem;
        min-height: auto;
    }

    .feature-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 212, 255, 0.06);
    }

    .feature-item-header {
        margin-bottom: 1.25rem;
        gap: 0.75rem;
    }

    .feature-item-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent !important;
    }

    .feature-item-icon i {
        font-size: 1rem;
    }

    .feature-item-title-group h3 {
        font-size: 1rem;
    }

    .feature-badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.6rem;
    }

    .feature-arrow {
        display: none;
    }

    .feature-item-heading {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .feature-item-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .feature-stats {
        flex-direction: row;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .stat-value {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .feature-preview {
        border-radius: 10px;
        margin-bottom: 0;
    }

    .preview-header {
        padding: 0.75rem 1rem;
    }

    .preview-content {
        padding: 1rem;
        max-height: 160px;
    }

    .transcript-line-preview {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    .time-code {
        min-width: 40px;
        font-size: 0.8rem;
    }

    .feature-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        width: 100%;
        margin-top: 1.25rem;
        padding: 0.75rem 1.25rem;
        border-radius: 10px;
        background: rgba(0, 212, 255, 0.06);
        border: 1px solid rgba(0, 212, 255, 0.2);
        color: #00d4ff;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 0 16px rgba(0, 212, 255, 0.05);
    }

    .feature-cta:hover,
    .feature-cta:active {
        background: rgba(0, 212, 255, 0.12);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
        color: #00d4ff;
        gap: 0.8rem;
    }

    .feature-cta i {
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .feature-cta:hover i,
    .feature-cta:active i {
        transform: translateX(4px);
    }

    .steps-grid {
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .step-three {
        background: rgba(0, 212, 255, 0.02);
        border: 1px solid rgba(0, 212, 255, 0.15);
    }

    .step-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .step-three-num {
        color: #00d4ff;
    }

    .step-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .step-visual {
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 1rem;
    }

    .visual-dots {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.3rem;
    }

    .action-buttons {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .action-btn {
        flex: 1;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.6rem 0.25rem;
        border-radius: 10px;
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .action-btn i {
        font-size: 0.9rem;
    }

    .share-btn {
        background: rgba(0, 212, 255, 0.06);
        border-color: rgba(0, 212, 255, 0.35);
        color: #00d4ff;
    }

    .shareable-link {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        color: #00d4ff;
        gap: 0.5rem;
    }

    .shareable-link i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .link-display {
        background: transparent;
        border: none;
        padding: 0 1rem 0.75rem;
        font-size: 0.7rem;
        color: #707080;
        margin-bottom: 0.75rem;
    }

    .export-formats {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }

    .format-tag {
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
        font-size: 0.7rem;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .testimonials-marquee {
        gap: 1rem;
    }

    .testimonials-marquee .testimonial-card {
        flex: 0 0 220px;
        padding: 1.25rem;
    }

    .stars {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 36px;
        height: 36px;
    }

    .author-name {
        font-size: 0.85rem;
    }

    .author-title {
        font-size: 0.75rem;
    }

    .cta-search-box {
        padding: 0.4rem 0.4rem 0.4rem 0.75rem;
        gap: 0.5rem;
        border-radius: 12px;
    }

    .cta-search-input {
        font-size: 0.85rem;
        padding: 0;
    }

    .cta-start-btn {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        padding: 0.6rem 1rem;
        border-radius: 10px;
        font-size: 0.85rem;
        gap: 0.4rem;
    }

    .cta-start-btn i {
        font-size: 0.85rem;
    }

    .tool-tags {
        gap: 0.5rem;
    }

    .tool-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    .billing-toggle {
        margin-bottom: 2rem;
    }

    .toggle-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }

    .pricing-cards {
        gap: 1.25rem;
    }

    .pricing-card {
        background: rgba(10, 11, 20, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 1.5rem;
    }

    .pricing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }

    .pricing-card.featured {
        border-color: rgba(99, 102, 241, 0.2);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.06);
    }

    .popular-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        transform: none;
        background: rgba(30, 30, 45, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #a0a0c0;
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        border-radius: 20px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .pricing-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .plan-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .plan-price {
        margin-bottom: 0.35rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .period {
        font-size: 0.95rem;
    }

    .plan-subtitle {
        font-size: 0.85rem;
    }

    .pricing-features {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .pricing-features .feature-item {
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .pricing-features .check-icon {
        width: 14px;
        height: 14px;
        color: #00d4ff;
        flex-shrink: 0;
    }

    .pricing-btn {
        padding: 0.75rem;
        border-radius: 10px;
        font-size: 0.9rem;
        margin-top: 0;
    }

    .pricing-btn:hover {
        transform: none;
    }

    .featured-btn {
        background: rgba(0, 212, 255, 0.08);
        border-color: rgba(0, 212, 255, 0.3);
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-container {
        gap: 1.25rem;
    }

    .footer-links {
        gap: 0.75rem 1.25rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-meta {
        gap: 0.75rem 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-title,
    .how-it-works-title,
    .testimonials-title,
    .cta-title {
        font-size: 1.85rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-item-heading {
        font-size: 1.15rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .price {
        font-size: 2rem;
    }

    .period {
        font-size: 0.9rem;
    }
}
