/* KompareDocs - Professional Website Styles */

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

:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1e40af;
    --dark-blue: #1e3a8a;
    --light-blue: #eff6ff;
    --accent-purple: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --success-green: #059669;
    --warning-orange: #ea580c;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 0.875rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%239ca3af" fill-opacity="0.05"><polygon points="60,60 30,60 30,30 60,30"/></g></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero .lead {
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

/* App Page Styles */
.app-hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-badges.large {
    justify-content: center;
    gap: 2rem;
}

.app-badge-container {
    transition: transform 0.3s ease;
}

.app-badge-container:hover {
    transform: translateY(-3px);
}

.app-badge {
    height: 60px;
    width: auto;
    cursor: pointer;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-graphic {
    max-width: 300px;
    height: auto;
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-check {
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.showcase-graphic {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.use-case-profession {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.875rem;
}

.section-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .app-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .phone-graphic {
        max-width: 250px;
    }
    
    .app-badges {
        justify-content: center;
    }
}

/* Story Graphics */
.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.story-graphic {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .story-graphic {
        max-width: 100%;
    }
    
    .story-visual {
        margin: 2rem 0;
    }
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    overflow: hidden;
}

.feature-svg {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pricing-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-badge.try {
    background: #eff6ff;
    color: #2563eb;
}

.plan-badge.entry {
    background: #f0f9ff;
    color: #0369a1;
}

.plan-badge.professional {
    background: #fef3c7;
    color: #92400e;
}

.plan-badge.heavy {
    background: #ecfdf5;
    color: #065f46;
}

.plan-badge.teams {
    background: #f3e8ff;
    color: #7c2d12;
}

.plan-badge.custom {
    background: #fef2f2;
    color: #b91c1c;
}

.price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.375rem;
}

.price-period {
    color: var(--text-light);
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
    margin: 1.25rem 0;
    flex: 1;
}

.features-list li {
    padding: 0.375rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.features-list li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.features-list li.highlight {
    font-weight: 600;
    color: var(--text-dark);
}

.features-list li.unavailable {
    color: var(--text-light);
    opacity: 0.7;
}

.features-list li.unavailable::before {
    content: '✗';
    color: #ef4444;
}

.overage-info {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.overage-info small {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Customer Logos */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.customer-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.customer-logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.customer-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-blue);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .process-step::after {
        display: none;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* AI-themed Visual Elements */
.ai-pattern {
    background-image: radial-gradient(circle at 1px 1px, var(--primary-blue) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.document-icon::before {
    content: '📄';
}

.ai-icon::before {
    content: '🤖';
}

.check-icon::before {
    content: '✅';
}

.shield-icon::before {
    content: '🛡️';
}

.speed-icon::before {
    content: '⚡';
}

.language-icon::before {
    content: '🌍';
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
}

.comparison-table th {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.875rem 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.8125rem;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--secondary-blue);
}

.comparison-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
    vertical-align: middle;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #fafbfc;
}

/* Usage Notes */
.usage-notes {
    background: var(--light-blue);
    border: 1px dashed var(--primary-blue);
    border-radius: 0.875rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.usage-notes h3 {
    margin-bottom: 0.875rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.usage-notes p {
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.usage-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-notes li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.25rem;
}

.usage-notes li::before {
    content: '•';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Problem-Solution Cards */
.problem-solution {
    margin: 1rem 0;
}

.problem, .solution {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid;
}

.problem {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.solution {
    background: #f0fdf4;
    border-left-color: var(--success-green);
}

.problem h5, .solution h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.problem p, .solution p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}

.results {
    margin-top: 1rem;
}

.results strong {
    color: var(--text-dark);
    font-size: 0.875rem;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-summary {
    background: var(--light-blue);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-highlight {
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.privacy-highlight h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.privacy-highlight p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.125rem;
}

.privacy-section ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.use-category {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.25rem;
    margin: 1rem 0;
}

.use-category h3 {
    margin-top: 0;
    color: var(--primary-blue);
}

.no-share-list li {
    color: #dc2626;
    font-weight: 500;
}

.no-share-list li::marker {
    content: '✗ ';
    color: #dc2626;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-option {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-blue);
}

.contact-option strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

/* Help Center Styles */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.help-option {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.help-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.help-option h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.help-option p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-category {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-category h3 {
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    border-bottom: 2px solid var(--light-blue);
    padding-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Support Info */
.support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.support-tier {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.support-tier.featured {
    border: 2px solid var(--primary-blue);
    background: var(--light-blue);
}

.support-tier h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.support-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-tier li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
}

.support-tier li:last-child {
    border-bottom: none;
}

.emergency-contact {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 0.875rem;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-contact p {
    margin: 0.5rem 0;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Decision Framework Styles */
.decision-framework {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.decision-column {
    background: var(--white);
    border-radius: 0.875rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.decision-column h3 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.decision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.decision-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.decision-list li:last-child {
    border-bottom: none;
}

.decision-list.good li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.decision-list.caution li::before {
    content: '!';
    position: absolute;
    left: 0.25rem;
    color: #f59e0b;
    font-weight: bold;
}

.roi-calculator {
    background: var(--light-blue);
    border-radius: 0.875rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.roi-calculator h3 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.roi-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.roi-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.roi-item span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
}

.roi-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .decision-framework {
        grid-template-columns: 1fr;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Terms of Service Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-summary {
    background: var(--light-blue);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.terms-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.terms-highlight {
    text-align: center;
}

.terms-highlight h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.terms-highlight p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.terms-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.terms-section h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.125rem;
}

.terms-section ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}