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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f7f2;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Header */
.header {
    background-color: #faf8f2;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    font-size: 1.5rem;
    color: #8b7355;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

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

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b7355;
}

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

.btn-primary {
    background-color: #8b7355;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #8b7355;
}

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #faf8f2;
}

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

.hero-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e3d8 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(to top, #8b7355, #a68b6b);
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease-out;
}

.growth-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #8b7355;
    animation: bounce 2s infinite;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Integrations Section */
.integrations {
    padding: 3rem 0;
    background-color: #f9f7f2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #faf8f2;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.feature-title {
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Technology Trends Section */
.technology-trends {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

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

.trend-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.trend-card:hover {
    transform: translateY(-3px);
}

.trend-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.trend-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trend-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.trend-category {
    background-color: #8b7355;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.trend-date {
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b7355 0%, #a68b6b 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

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

.cta-section .btn-primary {
    background-color: white;
    color: #8b7355;
}

.cta-section .btn-primary:hover {
    background-color: #f5f5f5;
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background-color: white;
    color: #8b7355;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text,
.footer-brand .logo-icon {
    color: white;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b7355;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 4rem 0 2rem;
    background-color: #faf8f2;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background-color: #8b7355;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pricing-toggle {
    margin-top: 2rem;
}

.toggle-container {
    display: inline-flex;
    background-color: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.toggle-label {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.toggle-label.active {
    background-color: #8b7355;
    color: white;
}

.toggle-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff6b6b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-plans {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

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

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #8b7355;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8b7355;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
}

.price-unit {
    color: #666;
    font-size: 0.9rem;
}

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

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

.feature-item {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.pricing-faq {
    padding: 4rem 0;
    background-color: #faf8f2;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.pricing-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b7355 0%, #a68b6b 100%);
    color: white;
}

.pricing-cta .cta-content {
    text-align: center;
}

.pricing-cta .cta-title {
    color: white;
}

.pricing-cta .cta-description {
    color: rgba(255,255,255,0.9);
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0 2rem;
    background-color: #faf8f2;
    text-align: center;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #8b7355;
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.success-message.show {
    display: block;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #faf8f2;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

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

.contact-method-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-method-info {
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method-description {
    color: #666;
    font-size: 0.9rem;
}

/* Product Page Styles */
.product-hero {
    padding: 4rem 0 2rem;
    background-color: #faf8f2;
    text-align: center;
}

.product-overview {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

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

.overview-title {
    color: #333;
    margin-bottom: 1.5rem;
}

.overview-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b7355;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.process-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e3d8 100%);
    border-radius: 20px;
    padding: 3rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    font-size: 2rem;
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-label {
    font-weight: 500;
    color: #333;
}

.process-arrow {
    font-size: 1.5rem;
    color: #8b7355;
    font-weight: bold;
}

.working-principles {
    padding: 4rem 0;
    background-color: #faf8f2;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.principle-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.principle-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #8b7355;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.principle-title {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.principle-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.principle-features li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.principle-features li:before {
    content: "✓";
    color: #8b7355;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.competitive-advantages {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

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

.comparison-item {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
}

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

.comparison-title {
    color: #333;
    margin-bottom: 1rem;
}

.comparison-description {
    color: #666;
    line-height: 1.6;
}

.technology-stack {
    padding: 4rem 0;
    background-color: #faf8f2;
}

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

.tech-category {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tech-category-title {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.tech-item {
    background-color: #f9f7f2;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: #666;
    text-align: center;
    transition: background-color 0.3s ease;
}

.tech-item:hover {
    background-color: #8b7355;
    color: white;
}

.product-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b7355 0%, #a68b6b 100%);
    color: white;
}

.product-cta .cta-content {
    text-align: center;
}

.product-cta .cta-title {
    color: white;
}

.product-cta .cta-description {
    color: rgba(255,255,255,0.9);
}

/* Features Page Styles */
.features-hero {
    padding: 4rem 0 2rem;
    background-color: #faf8f2;
    text-align: center;
}

.core-features {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

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

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

.feature-showcase-content {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.feature-showcase-title {
    color: #333;
    margin-bottom: 1rem;
}

.feature-showcase-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-showcase-list li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-showcase-list li:before {
    content: "✓";
    color: #8b7355;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.feature-showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e3d8 100%);
    border-radius: 20px;
    padding: 3rem;
    min-height: 300px;
}

.targeting-diagram {
    position: relative;
}

.target-circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-center {
    font-size: 3rem;
    z-index: 3;
}

.target-ring {
    position: absolute;
    border: 3px solid #8b7355;
    border-radius: 50%;
    opacity: 0.3;
}

.target-ring:nth-child(2) {
    width: 80px;
    height: 80px;
}

.target-ring:nth-child(3) {
    width: 120px;
    height: 120px;
}

.target-ring:nth-child(4) {
    width: 160px;
    height: 160px;
}

.channels-diagram {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-hub {
    font-size: 3rem;
    z-index: 2;
}

.channel-spoke {
    position: absolute;
    font-size: 2rem;
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.channel-spoke:nth-child(2) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.channel-spoke:nth-child(3) {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.channel-spoke:nth-child(4) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.channel-spoke:nth-child(5) {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.analytics-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.dashboard-chart {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #8b7355, #a68b6b);
    border-radius: 4px 4px 0 0;
}

.dashboard-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #8b7355;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.advanced-features {
    padding: 4rem 0;
    background-color: #faf8f2;
}

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

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

.advanced-feature-card:hover {
    transform: translateY(-5px);
}

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

.advanced-feature-title {
    color: #333;
    margin-bottom: 1rem;
}

.advanced-feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.feature-tag {
    background-color: #8b7355;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.integration-features {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

.integration-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.integration-category {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.integration-category-title {
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f7f2;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.integration-item:hover {
    background-color: #f0ede6;
}

.integration-item .integration-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.integration-name {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.integration-description {
    color: #666;
    font-size: 0.9rem;
}

.features-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8b7355 0%, #a68b6b 100%);
    color: white;
}

.features-cta .cta-content {
    text-align: center;
}

.features-cta .cta-title {
    color: white;
}

.features-cta .cta-description {
    color: rgba(255,255,255,0.9);
}

/* Legal Pages Styles */
.legal-hero {
    padding: 4rem 0 2rem;
    background-color: #faf8f2;
    text-align: center;
}

.legal-content {
    padding: 4rem 0;
    background-color: #f9f7f2;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-heading {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 0.5rem;
}

.legal-subheading {
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.2rem;
}

.legal-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-list li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: #f9f7f2;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details strong {
    color: #8b7355;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .process-diagram {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .channels-diagram {
        width: 150px;
        height: 150px;
    }
    
    .channel-spoke {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .integration-showcase {
        grid-template-columns: 1fr;
    }
    
    .legal-document {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .legal-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .trends-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}
