/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Host Grotesk", sans-serif;
    background-color: #ffffff;
    color: #070d08;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo {
    height: 32px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #070d08;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #7046a8;
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background-color: #7046a8;
    color: white;
    padding: 14px 27px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #5a3685;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    color: #070d08;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 48px;
}

.hero-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease;
}

.hero-input:focus {
    outline: none;
    border-color: #7046a8;
}

.hero-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 32px;
}

.product-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-weight: 500;
    color: #070d08;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    color: #070d08;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-note {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 24px;
    font-weight: 600;
    color: #7046a8;
    margin-bottom: 16px;
}

.step-title {
    font-size: 24px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

.setup-form {
    display: grid;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.2s ease;
}

.form-card:hover {
    border-color: #7046a8;
}

.form-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 8px;
}

.form-card p {
    color: #6b7280;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #7046a8;
}

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #7046a8;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: #9ca3af;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8e5ff 0%, #d4c5ff 50%, #c4b5fd 100%);
}

.demo-placeholder {
    background: white;
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 48px;
}

.demo-logo {
    font-size: 32px;
    font-weight: 600;
    color: #7046a8;
    margin-bottom: 24px;
}

.demo-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 16px;
}

.demo-content p {
    font-size: 18px;
    color: #6b7280;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e5ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 64px 0;
}

.additional-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

/* Footer */
.footer {
    background: #070d08;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-description {
    color: #d1d5db;
    margin-top: 16px;
}

.contact-info p {
    color: #d1d5db;
    margin-bottom: 8px;
}

.contact-info a {
    color: #7046a8;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid,
    .additional-features {
        grid-template-columns: 1fr;
    }
    
    .hero-form {
        padding: 24px;
    }
    
    .product-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-badge {
    background: #7046a8;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.plan-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.2s ease;
}

.plan-card:hover {
    border-color: #7046a8;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(112, 70, 168, 0.15);
}

.plan-card.featured {
    border-color: #7046a8;
    box-shadow: 0 8px 30px rgba(112, 70, 168, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #7046a8;
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #070d08;
    margin-bottom: 8px;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 32px;
}

.price {
    font-size: 48px;
    font-weight: 600;
    color: #7046a8;
}

.price-unit {
    font-size: 16px;
    color: #6b7280;
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.feature-included {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #374151;
}

.feature-icon {
    color: #10b981;
    font-weight: 600;
    margin-right: 12px;
    width: 16px;
}

.plan-button {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-weight: 500;
}

.btn-secondary {
    background: white;
    color: #7046a8;
    border: 2px solid #7046a8;
    border-radius: 10px;
    text-decoration: none;
    padding: 14px 27px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #7046a8;
    color: white;
    transform: translateY(-1px);
}

.pricing-faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Page Styles */
.features-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.core-features {
    padding: 80px 0;
    background: white;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 64px 0;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 16px;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-benefits li:before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
    position: absolute;
    left: 0;
}

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

.visual-placeholder {
    background: #f9fafb;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.chart-mockup {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    height: 120px;
}

.chart-bar {
    background: #7046a8;
    width: 24px;
    border-radius: 4px 4px 0 0;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.platform-icon {
    width: 48px;
    height: 48px;
    background: #7046a8;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.score-display {
    margin-bottom: 16px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border: 8px solid #7046a8;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.score-number {
    font-size: 32px;
    font-weight: 600;
    color: #7046a8;
}

.score-label {
    font-size: 12px;
    color: #6b7280;
}

.automation-features {
    padding: 80px 0;
    background: #f9fafb;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.automation-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.automation-card:hover {
    transform: translateY(-4px);
}

.automation-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.automation-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.automation-card p {
    color: #6b7280;
    line-height: 1.6;
}

.advanced-features {
    padding: 80px 0;
    background: white;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.advanced-feature {
    padding: 24px;
    border-left: 4px solid #7046a8;
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
}

.advanced-feature h3 {
    font-size: 18px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.advanced-feature p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7046a8 0%, #5a3685 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: white;
    color: #7046a8;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 18px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 4px;
}

.benefit-text p {
    color: #6b7280;
    line-height: 1.5;
}

.direct-contact {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
}

.direct-contact h3 {
    font-size: 18px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 8px;
}

.direct-contact > p {
    color: #6b7280;
    margin-bottom: 16px;
}

.contact-details p {
    color: #374151;
    margin-bottom: 8px;
}

.contact-details a {
    color: #7046a8;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7046a8;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 16px;
}

.thank-you-message {
    background: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.thank-you-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 16px;
}

.thank-you-content p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.product-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    text-align: center;
    margin-bottom: 48px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.advantage-item {
    text-align: center;
    padding: 32px;
    background: #f9fafb;
    border-radius: 16px;
}

.advantage-number {
    font-size: 48px;
    font-weight: 600;
    color: #7046a8;
    margin-bottom: 16px;
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.advantage-item p {
    color: #6b7280;
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 0;
    background: #f9fafb;
}

.process-flow {
    margin-top: 48px;
}

.process-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-number {
    font-size: 24px;
    font-weight: 600;
    color: #7046a8;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 16px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.step-features li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.step-features li:before {
    content: "•";
    color: #7046a8;
    font-weight: 600;
    position: absolute;
    left: 0;
}

.technology-section {
    padding: 80px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tech-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin-bottom: 12px;
}

.tech-card p {
    color: #6b7280;
    line-height: 1.6;
}

.competitive-advantage {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 48px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #7046a8;
    color: white;
    font-weight: 500;
}

.comparison-header > div {
    padding: 20px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 16px 20px;
    text-align: center;
}

.comparison-feature {
    font-weight: 500;
    color: #070d08;
    text-align: left !important;
}

.comparison-traditional {
    color: #ef4444;
}

.comparison-kryptoswave {
    color: #10b981;
}

.results-section {
    padding: 80px 0;
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.result-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.result-industry {
    color: #7046a8;
    font-weight: 500;
    margin-bottom: 8px;
}

.result-metric {
    font-size: 24px;
    font-weight: 600;
    color: #070d08;
    margin-bottom: 16px;
}

.result-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e5ff 50%, #d4c5ff 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 500;
    color: #070d08;
    margin: 40px 0 16px 0;
}

.legal-document h3 {
    font-size: 20px;
    font-weight: 500;
    color: #070d08;
    margin: 24px 0 12px 0;
}

.legal-document p {
    color: #374151;
    margin-bottom: 16px;
}

.legal-document ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-document li {
    color: #374151;
    margin-bottom: 8px;
}

.legal-document strong {
    color: #070d08;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid,
    .additional-features {
        grid-template-columns: 1fr;
    }
    
    .hero-form {
        padding: 24px;
    }
    
    .product-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        text-align: left !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .process-section,
    .features-section,
    .demo-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .legal-document {
        padding: 0 16px;
    }
}
