/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(244, 244, 246);
    background-color: rgb(8, 9, 10);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Manrope Placeholder', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 68px;
    font-weight: 700;
}

h2 {
    font-size: 48px;
    font-weight: 600;
}

h3 {
    font-size: 32px;
    font-weight: 600;
}

h4 {
    font-size: 24px;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: rgb(156, 163, 175);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.nav-logo .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgb(244, 244, 246);
}

.logo-icon {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgb(244, 244, 246);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(99, 102, 241);
}

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

/* Buttons */
.btn-primary, .btn-primary-large {
    background: rgb(244, 247, 249);
    color: rgb(0, 0, 238);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary-large {
    padding: 1rem 2rem;
    font-size: 18px;
}

.btn-primary:hover, .btn-primary-large:hover {
    background: rgb(229, 231, 235);
    transform: translateY(-2px);
}

.btn-secondary, .btn-secondary-large {
    background: transparent;
    color: rgb(244, 244, 246);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary-large {
    padding: 1rem 2rem;
    font-size: 18px;
}

.btn-secondary:hover, .btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgb(8, 9, 10) 0%, rgb(15, 16, 20) 50%, rgb(8, 9, 10) 100%);
}

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

.hero-title {
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgb(244, 244, 246) 0%, rgb(156, 163, 175) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgb(156, 163, 175);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Showcase */
.product-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.showcase-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
}

.showcase-demo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-interface {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2rem;
    min-height: 400px;
}

.demo-sidebar {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-nav-item.active {
    background: rgba(99, 102, 241, 0.2);
    color: rgb(99, 102, 241);
}

.demo-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.demo-icon {
    font-size: 18px;
}

.demo-main {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-card h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-input label {
    display: block;
    color: rgb(156, 163, 175);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.demo-input input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgb(244, 244, 246);
    font-size: 16px;
}

.demo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.demo-tag {
    background: rgba(99, 102, 241, 0.2);
    color: rgb(99, 102, 241);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.demo-results {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-result-card h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 18px;
}

.demo-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: rgb(34, 197, 94);
}

.metric-label {
    font-size: 14px;
    color: rgb(156, 163, 175);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

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

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 24px;
}

.feature-card p {
    color: rgb(156, 163, 175);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(99, 102, 241, 0.2);
    color: rgb(99, 102, 241);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.testimonial-content p {
    color: rgb(244, 244, 246);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-info h4 {
    color: rgb(244, 244, 246);
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgb(156, 163, 175);
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 48px;
}

.cta p {
    font-size: 20px;
    color: rgb(156, 163, 175);
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgb(0, 0, 0);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-section h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgb(156, 163, 175);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(99, 102, 241);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgb(156, 163, 175);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgb(156, 163, 175);
    margin: 0;
}

/* Pricing Styles */
.pricing {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

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

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

.pricing-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(99, 102, 241, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(99, 102, 241);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    color: rgb(244, 244, 246);
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: rgb(156, 163, 175);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 2rem;
    text-align: center;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: rgb(244, 244, 246);
    font-family: 'Manrope', sans-serif;
}

.price-unit {
    display: block;
    color: rgb(156, 163, 175);
    font-size: 16px;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgb(244, 244, 246);
}

.feature-icon {
    color: rgb(34, 197, 94);
    font-weight: bold;
    font-size: 16px;
}

.pricing-action {
    text-align: center;
}

.pricing-details {
    margin-bottom: 6rem;
    text-align: center;
}

.pricing-details h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.pricing-details p {
    color: rgb(156, 163, 175);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.channel-pricing {
    max-width: 800px;
    margin: 0 auto;
}

.channel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.channel-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(99, 102, 241, 0.3);
}

.channel-info h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 0.25rem;
    font-size: 18px;
}

.channel-info p {
    color: rgb(156, 163, 175);
    margin: 0;
    font-size: 14px;
}

.channel-price {
    color: rgb(34, 197, 94);
    font-weight: 700;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
}

.pricing-faq {
    text-align: center;
}

.pricing-faq h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 18px;
}

.faq-item p {
    color: rgb(156, 163, 175);
    margin: 0;
    line-height: 1.6;
}

.nav-link.active {
    color: rgb(99, 102, 241);
}

/* Features Page Styles */
.feature-details {
    margin: 1.5rem 0;
}

.feature-details ul {
    list-style: none;
    padding: 0;
}

.feature-details li {
    color: rgb(156, 163, 175);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgb(99, 102, 241);
    font-weight: bold;
}

/* Technology Features */
.tech-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.tech-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-features-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.tech-features-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    display: block;
}

.tech-card h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 20px;
}

.tech-card p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
    margin: 0;
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

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

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.advantages-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.advantage-number {
    font-size: 32px;
    font-weight: 700;
    color: rgb(99, 102, 241);
    font-family: 'Manrope', sans-serif;
    min-width: 60px;
}

.advantage-content h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 0.75rem;
    font-size: 20px;
}

.advantage-content p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
    margin: 0;
}

/* Product Page Styles */
.how-it-works {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.how-it-works-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 800px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgb(99, 102, 241);
    font-family: 'Manrope', sans-serif;
    min-width: 80px;
}

.step-content h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 24px;
}

.step-content p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-feature {
    background: rgba(99, 102, 241, 0.2);
    color: rgb(99, 102, 241);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Tech Deep Dive */
.tech-deep-dive {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.tech-deep-dive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-deep-dive-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-deep-dive-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.tech-deep-dive-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.tech-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-detail-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.tech-detail-icon {
    font-size: 48px;
    margin-bottom: 1.5rem;
    display: block;
}

.tech-detail-card h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 20px;
}

.tech-detail-card p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: rgb(156, 163, 175);
    font-size: 14px;
}

.spec-value {
    color: rgb(34, 197, 94);
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

/* Competitive Advantages */
.competitive-advantages {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

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

.competitive-advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.competitive-advantages-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.competitive-advantages-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.comparison-table {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    font-weight: 600;
    color: rgb(244, 244, 246);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(0, 0, 0, 0.5);
}

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

.comparison-feature {
    color: rgb(244, 244, 246);
    font-weight: 500;
}

.comparison-traditional,
.comparison-futuredream {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-value {
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

.comparison-value.poor {
    color: rgb(239, 68, 68);
}

.comparison-value.excellent {
    color: rgb(34, 197, 94);
}

.comparison-note {
    font-size: 12px;
    color: rgb(156, 163, 175);
}

/* Success Metrics */
.success-metrics {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.success-metrics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.success-metrics-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.success-metrics-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

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

.metric-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.metric-value {
    font-size: 48px;
    font-weight: 700;
    color: rgb(34, 197, 94);
    font-family: 'Manrope', sans-serif;
    display: block;
    margin-bottom: 1rem;
}

.metric-label {
    color: rgb(244, 244, 246);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.metric-description {
    color: rgb(156, 163, 175);
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

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

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 28px;
}

.contact-form-header p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
}

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

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

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

.form-group label {
    color: rgb(244, 244, 246);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: rgb(244, 244, 246);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(99, 102, 241);
    background: rgba(0, 0, 0, 0.7);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgb(156, 163, 175);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: rgb(99, 102, 241);
}

.checkbox-label a {
    color: rgb(99, 102, 241);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
}

.success-icon {
    font-size: 48px;
    color: rgb(34, 197, 94);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 24px;
}

.success-message p {
    color: rgb(156, 163, 175);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-header h3 {
    color: rgb(244, 244, 246);
    margin-bottom: 0.75rem;
    font-size: 24px;
}

.contact-info-header p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method-icon {
    font-size: 24px;
    min-width: 40px;
}

.contact-method-content h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 0.25rem;
    font-size: 18px;
}

.contact-method-content p {
    color: rgb(244, 244, 246);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-note {
    color: rgb(156, 163, 175);
    font-size: 14px;
}

.contact-cta {
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    text-align: center;
}

.contact-cta h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 0.75rem;
    font-size: 18px;
}

.contact-cta p {
    color: rgb(156, 163, 175);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

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

.contact-faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-faq-header h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
}

.contact-faq-header p {
    font-size: 18px;
    color: rgb(156, 163, 175);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.faq-item h4 {
    color: rgb(244, 244, 246);
    margin-bottom: 1rem;
    font-size: 18px;
}

.faq-item p {
    color: rgb(156, 163, 175);
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages Styles */
.legal-content {
    padding: 6rem 0;
    background: rgb(8, 9, 10);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    margin-bottom: 3rem;
    text-align: center;
}

.last-updated {
    color: rgb(156, 163, 175);
    font-style: italic;
    margin: 0;
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.legal-section h2 {
    color: rgb(244, 244, 246);
    margin-bottom: 1.5rem;
    font-size: 24px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: rgb(244, 244, 246);
    margin: 2rem 0 1rem 0;
    font-size: 20px;
}

.legal-section p {
    color: rgb(156, 163, 175);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-section ul {
    color: rgb(156, 163, 175);
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-details p {
    margin: 0.5rem 0;
    color: rgb(244, 244, 246);
}

.contact-details strong {
    color: rgb(99, 102, 241);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-interface {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .cta h2 {
        font-size: 36px;
    }
}
