/* Landing Page Specific Styles */
/* Base styles (reset, variables, buttons, forms, nav) come from main.css */

/* Override button shape for landing page (pill style) */
.btn {
    border-radius: 9999px;
    text-decoration: none;
}

[dir="ltr"] .btn svg {
    transform: rotate(180deg);
}

.btn-hero {
    background: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-hero:hover {
    background: #60a5fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    padding: 5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #bfdbfe;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-checks {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    flex-wrap: wrap;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-check svg {
    color: #4ade80;
}

/* Hero Visual (Report Card) */
.hero-visual {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.report-card {
    background: white;
    color: #1f2937;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e5e7eb;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.report-card:hover {
    transform: rotate(0deg);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.report-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.report-sub {
    font-size: 0.875rem;
    color: #6b7280;
    white-space: nowrap;
}

[dir="ltr"] .report-sub {
    font-size: 0.8125rem;
}

.report-score {
    text-align: end;
    white-space: nowrap;
    flex-shrink: 0;
}

.report-score-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.report-score-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: #16a34a;
}

[dir="ltr"] .report-score-value {
    font-size: 1.625rem;
}

.report-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.report-item-green {
    background: #f0fdf4;
    border-right: 4px solid #22c55e;
}

[dir="ltr"] .report-item-green {
    border-right: none;
    border-left: 4px solid #22c55e;
}

.report-item-red {
    background: #fef2f2;
    border-right: 4px solid #ef4444;
}

[dir="ltr"] .report-item-red {
    border-right: none;
    border-left: 4px solid #ef4444;
}

.report-item-blue {
    background: #eff6ff;
    border-right: 4px solid #3b82f6;
}

[dir="ltr"] .report-item-blue {
    border-right: none;
    border-left: 4px solid #3b82f6;
}

.report-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.report-item-green .report-item-header {
    color: #166534;
}

.report-item-red .report-item-header {
    color: #991b1b;
}

.report-item-blue .report-item-header {
    color: #1e40af;
}

.report-item-text {
    font-size: 0.75rem;
    color: #4b5563;
}

.report-badge {
    position: absolute;
    bottom: -1.25rem;
    inset-inline-start: -1.25rem;
    background: #facc15;
    color: #1f2937;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: rotate(180deg);
}

.wave-divider .shape-fill {
    fill: #f9fafb;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    overflow-x: clip;
}

.section-bg {
    background: #eff6ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}

.section-dark {
    background: #0f172a;
    color: white;
}

.section-gray {
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: white;
}

.section-desc {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Principles Checklist */
.principles-grid {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

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

.principle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.principle-check {
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    padding: 0.25rem;
    flex-shrink: 0;
}

.quote-box {
    margin-top: 3rem;
    text-align: center;
}

.quote-star {
    color: #facc15;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.quote-text .accent {
    color: #2563eb;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #eff6ff;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Accordion Features */
.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.features-accordion {
    flex: 1 1 400px;
}

.features-visual {
    flex: 1 1 400px;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 6rem;
}

.accordion-item {
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.accordion-item.active {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbeafe;
    transform: scale(1.02);
}

.accordion-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
    background: #dbeafe;
    color: #2563eb;
}

.accordion-title {
    font-weight: 700;
    color: #6b7280;
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-title {
    color: #111827;
}

.accordion-chevron {
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: #3b82f6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-text {
    padding-inline-start: 4.5rem;
    padding-inline-end: 1rem;
    padding-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    border-inline-end: 2px solid #dbeafe;
    margin-inline-end: 1.25rem;
}

/* Visual Metrics */
.metric-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    margin-bottom: 1rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.metric-value {
    font-weight: 700;
}

.metric-value.excellent { color: #16a34a; }
.metric-value.good { color: #3b82f6; }
.metric-value.warning { color: #f59e0b; }
.metric-value.poor { color: #ea580c; }
.metric-value.improve { color: #14b8a6; }

.metric-bar {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.metric-bar-fill.excellent { background: #22c55e; }
.metric-bar-fill.good { background: #3b82f6; }
.metric-bar-fill.warning { background: #f59e0b; }
.metric-bar-fill.poor { background: #f97316; }
.metric-bar-fill.improve { background: #14b8a6; }

.metric-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Annotation Section */
.annotation-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.annotation-text {
    flex: 1 1 400px;
}

.annotation-visual {
    flex: 1 1 400px;
}

.annotation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.annotation-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.annotation-desc {
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.annotation-list {
    list-style: none;
}

.annotation-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.annotation-list-icon {
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #2563eb;
    flex-shrink: 0;
}

.annotation-list h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.annotation-list p {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Audio Player Mock */
.audio-mock {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.audio-mock:hover {
    transform: scale(1.02);
}

.audio-header {
    background: #0f172a;
    padding: 1.5rem;
    color: white;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audio-play {
    width: 48px;
    height: 48px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5);
    cursor: pointer;
}

.audio-info h3 {
    font-weight: 700;
    font-size: 1.125rem;
}

.audio-time {
    font-size: 0.875rem;
    color: #94a3b8;
    font-family: monospace;
}

.audio-waveform {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 96px;
    justify-content: center;
    overflow: hidden;
}

.wave-bar {
    width: 6px;
    border-radius: 2px 2px 0 0;
    background: #475569;
    transition: all 0.3s ease;
}

.wave-bar.green {
    background: #22c55e;
    cursor: pointer;
}

.wave-bar.red {
    background: #ef4444;
    cursor: pointer;
}

.wave-bar.green:hover,
.wave-bar.red:hover {
    filter: brightness(1.2);
}

.audio-transcript {
    padding: 1.5rem;
    background: #f9fafb;
}

.transcript-msg {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.transcript-msg.faded {
    opacity: 0.6;
}

.transcript-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.transcript-avatar.rep {
    background: #dbeafe;
    color: #2563eb;
}

.transcript-avatar.client {
    background: #ffedd5;
    color: #ea580c;
}

.transcript-bubble {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border-start-end-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    color: #6b7280;
    border: 1px solid #f3f4f6;
}

.transcript-bubble.highlight {
    border-inline-start: 4px solid #ef4444;
    color: #374151;
}

.transcript-time {
    display: inline-block;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.transcript-action {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #991b1b;
    background: #fef2f2;
    padding: 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.transcript-action:hover {
    background: #fee2e2;
}

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

.audience-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #334155;
    transition: border-color 0.3s ease;
}

.audience-card:hover {
    border-color: #3b82f6;
}

.audience-card.cyan:hover {
    border-color: #22d3ee;
}

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

.audience-icon {
    color: #60a5fa;
}

.audience-card.cyan .audience-icon {
    color: #22d3ee;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.audience-list svg {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.audience-card.cyan .audience-list svg {
    color: #22d3ee;
}

/* Roadmap */
.roadmap-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.roadmap-text {
    flex: 1 1 300px;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.roadmap-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.roadmap-desc {
    color: #6b7280;
    font-size: 1.125rem;
}

.roadmap-items {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roadmap-item {
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 1rem;
}

.roadmap-item-icon {
    color: #6366f1;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.roadmap-item h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.roadmap-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #facc15;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
}

.testimonial-name {
    font-weight: 700;
}

.testimonial-role {
    font-size: 0.75rem;
    color: #6b7280;
}

/* CTA Form Section */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: #2563eb;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    display: flex;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1 1 350px;
    padding: 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-desc {
    color: #bfdbfe;
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.cta-features svg {
    color: #93c5fd;
}

.cta-form {
    flex: 1 1 350px;
    background: white;
    padding: 2.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    width: 100%;
    padding: 0.875rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.form-note {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #1f2937;
}

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

.footer-logo svg {
    color: #3b82f6;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-text {
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.875rem;
}

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

.animate-fade {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive - Medium screens (flex wrap point) */
@media (max-width: 900px) {
    .features-split,
    .annotation-split,
    .roadmap-split {
        flex-direction: column;
    }

    .features-accordion,
    .features-visual,
    .annotation-text,
    .annotation-visual,
    .roadmap-text,
    .roadmap-items {
        flex: 1 1 100%;
        min-width: 0;
    }

    .features-visual {
        position: static;
    }
}

/* Responsive - Small screens */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text,
    .hero-visual {
        flex: 1 1 100%;
        min-width: 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-checks {
        justify-content: center;
    }

    .annotation-text,
    .annotation-visual {
        max-width: 100%;
        width: 100%;
    }

    .annotation-visual {
        overflow: hidden;
    }

    .audio-mock {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .audio-header {
        padding: 1rem;
    }

    .audio-waveform {
        max-width: 100%;
        overflow: hidden;
    }

    .wave-bar {
        width: 4px;
    }

    .cta-box {
        flex-direction: column;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}
