/* devani-site-styles:{"backgroundColor":"#ffffff","textColor":"#1a1a1a","fontFamily":"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","baseFontSize":"16px","headingFontFamily":"system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif","headingColor":"#1a1a1a","linkColor":"#0066cc","containerMaxWidth":"1200px","customCss":""} */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #0066cc;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   Site styles merged from /templates/global.css on 2026-05-21
   as part of migrating seamcut marketing root to
   devani_render_page. Devani chrome only loads /global-styles.css.
   ============================================================ */
/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables */
:root {
    /* Colors - No Gradients */
    --black: #111827;
    --dark-gray: #1f2937;
    --gray-900: #374151;
    --gray-700: #4b5563;
    --gray-600: #6b7280;
    --gray-500: #9ca3af;
    --gray-400: #d1d5db;
    --gray-300: #e5e7eb;
    --gray-200: #f3f4f6;
    --gray-100: #f9fafb;
    --white: #ffffff;
    
    --accent: #111827;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 64px; /* Account for fixed header */
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(17, 24, 39, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    border-color: var(--black);
    background: var(--gray-100);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero-editor {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.text-accent {
    color: var(--black);
    display: inline-block;
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(17, 24, 39, 0.1);
    z-index: -1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-metrics {
    display: flex;
    gap: var(--space-lg);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.metric-label {
    font-size: 14px;
    color: var(--gray-600);
}

/* Editor Preview */
.hero-editor-preview {
    position: relative;
}

.editor-window {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.editor-title {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
}

.editor-btn {
    padding: 6px 12px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.tool-btn:hover {
    background: var(--gray-200);
    color: var(--black);
}

.tool-btn.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tool-btn.ai-active {
    background: var(--black);
    color: var(--white);
}

.toolbar-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-300);
    margin: 0 8px;
}

.toolbar-time {
    font-size: 13px;
    color: var(--gray-600);
    font-variant-numeric: tabular-nums;
}

.editor-main {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.video-preview {
    flex: 1;
    background: var(--black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-player {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-processing {
    text-align: center;
    color: var(--white);
}

.processing-icon {
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.processing-text {
    font-size: 14px;
    margin-bottom: 12px;
}

.processing-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--white);
    transition: width 0.3s;
}

.timeline-container {
    background: var(--gray-900);
    padding: 12px 16px;
    position: relative;
}

.timeline-ruler {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--gray-500);
}

.timeline-tracks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.track-label {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 80px;
    font-size: 12px;
    color: var(--gray-500);
}

.track-content {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.clip {
    position: absolute;
    top: 4px;
    bottom: 4px;
    background: var(--gray-700);
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.clip-video {
    background: #4a5568;
}

.clip.removed {
    background: rgba(239, 68, 68, 0.3);
    border: 1px dashed rgba(239, 68, 68, 0.5);
}

.clip-label {
    font-size: 10px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.waveform-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.4) 20%,
        rgba(59, 130, 246, 0.2) 40%,
        rgba(59, 130, 246, 0.5) 60%,
        rgba(59, 130, 246, 0.3) 80%,
        rgba(59, 130, 246, 0.2) 100%
    );
}

.silence-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(239, 68, 68, 0.3);
    border-left: 1px solid rgba(239, 68, 68, 0.5);
    border-right: 1px solid rgba(239, 68, 68, 0.5);
}

.timeline-playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30%;
    width: 2px;
    background: var(--white);
    pointer-events: none;
}

.timeline-playhead::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
}

.editor-sidebar {
    position: absolute;
    right: 16px;
    top: 80px;
    width: 240px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

.sidebar-panel {
    color: var(--black);
}

.panel-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.detection-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-400);
}

.stat-icon.silence { background: #ef4444; }
.stat-icon.filler { background: #f59e0b; }
.stat-icon.retake { background: #3b82f6; }

.stat-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.stat-type {
    font-size: 13px;
    color: var(--gray-600);
}

.time-saved {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.saved-label {
    font-size: 13px;
    color: var(--gray-600);
}

.saved-value {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin: var(--space-sm) 0;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

/* How It Works */
.how-it-works {
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: var(--space-lg);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-200);
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step h3 {
    font-size: 20px;
    margin-bottom: var(--space-xs);
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
}

.step-connector {
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--gray-300);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-300);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--black);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.testimonial {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-role {
    font-size: 14px;
    color: var(--gray-600);
}

/* CTA Section */
.cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: var(--gray-400);
    font-size: 18px;
    margin-bottom: var(--space-lg);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.cta-actions .btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-actions .btn-primary:hover {
    background: var(--gray-100);
}

.cta-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* Transcript Editor */
.transcript-panel {
    flex: 1;
    background: var(--white);
    padding: 20px;
    overflow-y: auto;
    max-height: 250px;
}

.transcript-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.transcript-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.word-count {
    font-size: 13px;
    color: var(--gray-600);
}

.transcript-content {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.8;
}

.transcript-line {
    padding: 8px;
    margin: 4px 0;
    border-radius: 4px;
    transition: background 0.2s;
}

.transcript-line:hover {
    background: var(--gray-100);
}

.transcript-line.selected {
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
}

.timestamp {
    color: var(--gray-500);
    font-size: 12px;
    margin-right: 8px;
}

.word-removed {
    text-decoration: line-through;
    color: var(--gray-400);
    background: #fee2e2;
    padding: 2px 4px;
    border-radius: 2px;
}

.silence-removed {
    color: #ef4444;
    font-style: italic;
}

.transcript-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.btn-small {
    padding: 6px 12px;
    font-size: 13px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:hover {
    background: var(--gray-200);
}

/* Free/Pro Indicators */
.free-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    margin-right: 8px;
}

.free-feature {
    background: #f0fdf4 !important;
    border: 1px solid #10b981;
}

.ai-locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.feature-item.free {
    color: #10b981;
}

.feature-item.locked {
    color: var(--gray-500);
}

.feature-check {
    font-size: 16px;
    color: #10b981;
}

.feature-lock {
    font-size: 14px;
}

.feature-tag {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 6px;
    background: var(--gray-100);
    border-radius: 3px;
    font-weight: 600;
}

.upgrade-btn {
    width: 100%;
    padding: 10px;
    background: var(--black);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.upgrade-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pricing Section */
.free-vs-pro {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto var(--space-xl);
}

.pricing-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: var(--space-xl);
    position: relative;
}

.pricing-card.pro-card {
    border-color: var(--black);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: var(--space-sm) 0;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
}

.period {
    font-size: 18px;
    color: var(--gray-600);
}

.pricing-desc {
    color: var(--gray-600);
    font-size: 15px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 15px;
}

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

.pricing-note {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-lg);
    background: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.pricing-note p {
    margin: 0;
    line-height: 1.6;
}

/* Free/Pro Feature Cards */
.feature-card.pro {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.free-indicator,
.pro-indicator {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.free-indicator {
    background: #10b981;
    color: white;
}

.pro-indicator {
    background: var(--black);
    color: white;
}

/* AI Upgrade Callout */
.ai-upgrade-callout {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--gray-100);
    border-radius: 12px;
}

.callout-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.callout-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-text {
    flex: 1;
}

.callout-text h4 {
    margin-bottom: var(--space-xs);
}

.callout-text p {
    margin: 0;
    color: var(--gray-600);
}

/* AI Processing Display */
.ai-tasks {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-task {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.ai-task.completed {
    color: #10b981;
}

.ai-task.active {
    color: white;
}

.task-check {
    font-size: 16px;
    color: #10b981;
}

.task-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.task-dot {
    opacity: 0.3;
}

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

/* Free Forever Note */
.free-forever-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-md);
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 14px;
    color: var(--gray-700);
}

.free-forever-note svg {
    color: #f59e0b;
}

/* AI Features Section */
.ai-features {
    background: var(--gray-50);
}

/* Pricing Section Updates */
.pricing {
    padding: var(--space-3xl) 0;
}

.pricing-faq {
    max-width: 800px;
    margin: var(--space-2xl) auto 0;
    text-align: center;
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: 12px;
}

.pricing-faq h3 {
    margin-bottom: var(--space-sm);
    color: var(--black);
}

.pricing-faq p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.pricing-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-600);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-editor-preview {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .editor-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-metrics {
        justify-content: space-around;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .step-connector {
        display: none;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}