/* CSS Variables - Soft Blue Theme */
:root {
    /* Soft Blue Primary Colors - #5B8CFF range */
    --primary-50: hsl(220, 100%, 97%);
    --primary-100: hsl(220, 95%, 94%);
    --primary-200: hsl(220, 90%, 88%);
    --primary-300: hsl(220, 85%, 78%);
    --primary-400: hsl(220, 80%, 68%);
    --primary-500: hsl(220, 100%, 70%); /* #5B8CFF */
    --primary-600: hsl(220, 100%, 62%); /* #4F7DFF */
    --primary-700: hsl(220, 100%, 55%);
    --primary-800: hsl(220, 95%, 48%);
    --primary-900: hsl(220, 90%, 42%);
    
    /* Neutrals */
    --background: hsl(220, 30%, 99%);
    --foreground: hsl(220, 20%, 15%);
    --muted: hsl(220, 15%, 96%);
    --muted-foreground: hsl(220, 10%, 45%);
    --border: hsl(220, 15%, 90%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 20%, 15%);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    
    /* Spacing */
    --radius: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Background with Gradient + Noise Effect */
.bg-premium {
    background: 
        radial-gradient(circle at 20% 30%, hsl(220, 100%, 98%, 0.4), transparent 50%),
        radial-gradient(circle at 80% 70%, hsl(220, 95%, 97%, 0.3), transparent 50%),
        radial-gradient(circle at 50% 50%, hsl(220, 30%, 99%, 0.2), transparent 70%),
        linear-gradient(180deg, hsl(220, 30%, 99%) 0%, hsl(220, 25%, 98%) 100%);
    position: relative;
}

.bg-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, hsl(220, 30%, 99%, 0.03) 2px, hsl(220, 30%, 99%, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, hsl(220, 30%, 99%, 0.03) 2px, hsl(220, 30%, 99%, 0.03) 4px);
    pointer-events: none;
    opacity: 0.5;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 3rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    transition: all 0.2s;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(91, 140, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    box-shadow: 0 0 20px rgba(91, 140, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--border);
    background: transparent;
    color: var(--foreground);
}

.btn-outline:hover {
    border-color: var(--primary-500);
    background: hsl(220, 100%, 70%, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--muted);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: hsl(220, 30%, 99%, 0.8);
    backdrop-filter: blur(12px);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 2rem;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px 0 rgba(91, 140, 255, 0.4);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    background: hsl(220, 100%, 70%, 0.1);
    color: var(--primary-500);
}

.nav-actions {
    display: none;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: var(--bg-premium);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0;
    }
}

.hero-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.25fr 1fr;
        align-items: center;
        gap: 4rem;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid hsl(220, 100%, 70%, 0.2);
    background: hsl(220, 100%, 70%, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-500);
    width: fit-content;
}

.badge-icon {
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-600), var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 42rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1rem;
}

/* Product Preview */
.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.product-preview {
    position: relative;
    border-radius: 1.5rem;
    border: 2px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: hsl(220, 30%, 99%, 0.8);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--foreground);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #10b981;
}

.preview-time {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: hsl(220, 30%, 99%, 0.5);
    padding: 1rem;
}

.preview-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-title h3 {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.preview-title p {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

.badge-small {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--muted);
    font-size: 0.6875rem;
    font-weight: 500;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.preview-card {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: hsl(220, 15%, 96%, 0.5);
}

.preview-card h4 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
}

.preview-card p {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
}

.preview-ai {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: hsl(220, 30%, 99%, 0.9);
}

.preview-label {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.375rem;
}

.preview-question {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.preview-answer {
    font-size: 0.6875rem;
    color: #10b981;
}

/* Trust Strip */
.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: hsl(220, 30%, 99%, 0.4);
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.trust-icon-large {
    font-size: 1.25rem;
    color: var(--primary-500);
}

/* Section */
.section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-500);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto;
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: hsl(220, 100%, 70%, 0.1);
    color: var(--primary-500);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    border-radius: 1rem;
    border: 2px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: hsl(220, 100%, 70%, 0.4);
    box-shadow: 0 0 20px rgba(91, 140, 255, 0.3);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: hsl(220, 100%, 70%, 0.1);
    color: var(--primary-500);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Screenshot */
.screenshot-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

.screenshot {
    border-radius: 1.5rem;
    border: 2px solid var(--border);
    background: var(--card);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.screenshot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.screenshot-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon-small {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.screenshot-logo h3 {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.screenshot-logo p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.screenshot-actions {
    display: flex;
    gap: 0.5rem;
}

.action-placeholder {
    width: 5rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--muted);
}

.action-placeholder:last-child {
    width: 2rem;
}

.screenshot-body {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .screenshot-body {
        grid-template-columns: 1fr 3fr;
    }
}

.screenshot-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-item:hover {
    background: var(--muted);
}

.sidebar-item.active {
    background: hsl(220, 100%, 70%, 0.1);
    color: var(--primary-500);
    font-weight: 500;
}

.sidebar-section {
    margin-top: 1rem;
}

.sidebar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding: 0 0.75rem;
}

.screenshot-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--background);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.search-button {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.documents-list {
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
    padding: 1rem;
}

.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.list-header h4 {
    font-size: 0.875rem;
}

.list-action {
    width: 4rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    background: var(--muted);
}

.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    background: var(--background);
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}

.document-item:hover {
    background: var(--muted);
}

.document-item:last-child {
    margin-bottom: 0;
}

.doc-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: hsl(220, 100%, 70%, 0.1);
}

.doc-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.doc-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.doc-action {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--muted);
}

.ai-chat {
    border-radius: 0.75rem;
    border: 2px solid hsl(220, 100%, 70%, 0.2);
    background: hsl(220, 100%, 70%, 0.05);
    padding: 1rem;
}

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

.chat-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
}

.chat-header span {
    font-size: 0.875rem;
    font-weight: 600;
}

.chat-question {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.chat-answer {
    font-size: 0.875rem;
    font-weight: 500;
    color: #10b981;
}

/* Security */
.security-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.security-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: hsl(220, 100%, 70%, 0.1);
    color: var(--primary-500);
    font-size: 1.5rem;
}

.security-item h3 {
    font-size: 1.125rem;
}

.security-item p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.privacy-commitment {
    border-radius: 1rem;
    border: 2px solid hsl(220, 100%, 70%, 0.2);
    background: hsl(220, 100%, 70%, 0.05);
    padding: 1.5rem;
    text-align: center;
}

.commitment-main {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.commitment-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    border-radius: 1rem;
    border: 2px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    border-color: hsl(var(--primary-500), 0.4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: hsl(220, 100%, 70%, 0.4);
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--foreground);
    line-height: 1.7;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Pricing */
.pricing-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    border: 2px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: hsl(220, 100%, 70%, 0.4);
}

.pricing-card.featured {
    border-color: var(--primary-500);
    box-shadow: 0 0 40px rgba(91, 140, 255, 0.4);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pricing-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

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

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

/* FAQ */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border-radius: 1rem;
    border: 2px solid var(--border);
    background: var(--card);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: hsl(220, 100%, 70%, 0.4);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    padding-right: 2rem;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary-500);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background: var(--card);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.footer-column p {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-heart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}
