/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3 {
    line-height: 1.15;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.15rem;
    color: #666;
    max-width: 560px;
    margin: 16px auto 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #e0e0e8;
}

.btn-outline:hover {
    border-color: #7C3AED;
    color: #7C3AED;
}

.btn-white {
    background: white;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

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

.logo-icon-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px;
    max-height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.navbar:not(.scrolled) .logo-text {
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.navbar.scrolled .nav-links a {
    color: #666;
}

.nav-links a:hover {
    color: #FF5BA3;
}

.navbar:not(.scrolled) .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 40%, #7C3AED 70%, #FF5BA3 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-meta {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Hero Visual / Browser Mock */
.hero-visual {
    margin-top: 60px;
    padding-bottom: 40px;
}

.browser-frame {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.browser-dots span:first-child {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.browser-content {
    padding: 0;
}

.mock-player {
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-template-rows: auto auto;
}

.mock-video {
    position: relative;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mock-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.mock-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}

.annotation-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #FF5BA3;
    border-radius: 50%;
    animation: annotationFade 3s infinite;
}

.annotation-arrow {
    color: #FF5BA3;
    font-size: 1.5rem;
}

.annotation-label {
    background: rgba(255, 91, 163, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes annotationFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.mock-timeline {
    grid-column: 1 / -1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
}

.timeline-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 52%;
    background: linear-gradient(90deg, #FF5BA3, #7C3AED);
    border-radius: 2px;
}

.timeline-comment {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
    font-size: 0.65rem;
    cursor: pointer;
}

.mock-sidebar {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-comment {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.comment-meta strong {
    color: rgba(255, 255, 255, 0.9);
}

.comment-meta span {
    margin-left: 6px;
}

.comment-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.comment-resolved {
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== Pain → Solution ===== */
.pain-solution {
    padding: 100px 0;
    background: #fafafe;
}

.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pain-card {
    display: grid;
    grid-template-columns: 50px 1fr 40px 1fr;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.pain-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.pain-icon {
    font-size: 1.8rem;
}

.pain-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #EF4444;
    margin-bottom: 6px;
}

.after-label {
    color: #10B981;
}

.pain-before p,
.pain-after p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.pain-arrow {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    margin-bottom: 20px;
}

.step-visual {
    margin-bottom: 24px;
}

.step-mock {
    background: #1e1e2e;
    border-radius: 12px;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Slack mock */
.slack-message,
.slack-bot-message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.slack-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.slack-avatar.bot {
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
}

.slack-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.5;
}

.slack-body strong {
    color: white;
}

.slack-filename {
    color: #4A9EFF;
    text-decoration: underline;
}

.slack-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Review mock */
.review-mock {
    align-items: center;
    gap: 12px;
}

.review-video-area {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.review-play {
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
}

.review-drawing {
    position: absolute;
    inset: 0;
}

.review-drawing svg {
    width: 100%;
    height: 100%;
}

.review-tools {
    display: flex;
    gap: 8px;
}

.review-tools .tool {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.review-tools .tool.active {
    background: rgba(255, 91, 163, 0.3);
    outline: 1px solid #FF5BA3;
}

/* Resolve mock */
.resolve-mock {
    gap: 10px;
}

.resolve-comment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
}

.resolve-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.resolve-check {
    font-size: 0.85rem;
}

.resolve-check.pending {
    color: rgba(255, 255, 255, 0.2);
}

.resolve-slack {
    text-align: center;
    padding: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Features ===== */
.features {
    padding: 100px 0;
    background: #fafafe;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card>p {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: #999;
}

/* ===== Comparison ===== */
.comparison {
    padding: 100px 0;
    background: #fafafe;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 24px;
    text-align: center;
    border-bottom: 1px solid #f5f5fa;
    font-size: 0.9rem;
}

.comparison-table th {
    background: #fafafe;
    font-weight: 700;
    font-size: 0.85rem;
    color: #666;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table .highlight-col {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.04), rgba(255, 91, 163, 0.04));
    font-weight: 700;
    color: #7C3AED;
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    color: white;
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #1a1a2e;
    font-weight: 700;
}

.toggle-save {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

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

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 26px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
}

.pricing-card {
    background: white;
    border: 1px solid #f0f0f5;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border: 2px solid #7C3AED;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF5BA3, #7C3AED);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-tier {
    font-size: 1rem;
    font-weight: 700;
    color: #7C3AED;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
    transition: all 0.3s ease;
}

.pricing-period {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: #555;
    border-bottom: 1px solid #f5f5fa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: #10B981;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: #999;
    font-weight: 500;
}

.pricing-comparison {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    color: #777;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: #fafafe;
}

.faq-grid {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e8f0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #7C3AED;
}

.faq-toggle {
    font-size: 1.3rem;
    color: #ccc;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #FF5BA3;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 40%, #7C3AED 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 91, 163, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 250px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #FF5BA3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== Animations ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    h2 {
        font-size: 2.2rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-player {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .pricing-grid,
    .pricing-grid-two {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

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

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pain-icon {
        margin: 0 auto;
    }

    .pain-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.78rem;
    }
}