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

:root {
    --color-primary: #ea580c;
    --color-primary-dark: #c2410c;
    --color-primary-light: #ea580c;
    --color-accent: #ea580c;
    --color-accent-light: #ea580c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-text {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.25);
}

.cta-button.primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-check {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

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

.hero-decorative {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.hero-decorative svg {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

/* Value Prop Section */
.value-prop-section {
    background-color: #f7fafc;
    padding: 80px 0;
}

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

.value-prop-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.value-prop-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

/* Service Section */
.service-section {
    background-color: #ffffff;
}

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

.service-item {
    text-align: center;
    padding: 30px;
}

.service-icon {
    margin-bottom: 24px;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-item p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    background: rgba(234, 88, 12, 0.08);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid var(--color-primary);
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 80px 0;
}

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

.demo-section .section-title {
    color: white;
}

.demo-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.demo-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.demo-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Benefits Section */
.benefits-section {
    background-color: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
    text-align: center;
}

.benefit-item p {
    color: #4a5568;
    text-align: center;
    line-height: 1.7;
}

.seo-trust-block {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--color-primary);
}

.seo-trust-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2d3748;
    text-align: center;
}

.seo-trust-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.seo-trust-list li {
    padding: 16px 0;
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    padding-left: 32px;
    border-bottom: 1px solid #e2e8f0;
}

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

.seo-trust-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 16px;
}

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    border-width: 3px;
    background: rgba(234, 88, 12, 0.03);
}

.pricing-card.standard {
    border-color: var(--color-primary);
}

.pricing-card.standard .price-amount,
.pricing-card.standard .price-currency {
    color: var(--color-primary);
}

.pricing-trust-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
    text-align: center;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.feature-item {
    padding: 10px 0;
    color: #4a5568;
    font-size: 1rem;
}

.feature-item::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-cta {
    display: block;
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}

.pricing-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.pricing-card.standard .pricing-cta {
    background-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.2);
}

.pricing-card.standard .pricing-cta:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-note p {
    color: var(--color-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    background: rgba(234, 88, 12, 0.08);
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

/* Trust Section */
.trust-section {
    background-color: #f7fafc;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    margin-bottom: 16px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3748;
}

.trust-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Legal Section */
.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-image {
        order: -1;
    }

    .hero-decorative {
        height: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .value-prop-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .service-grid,
    .benefits-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-decorative {
        height: 250px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button.large {
        font-size: 1rem;
        padding: 16px 32px;
    }

    .demo-text {
        font-size: 1.1rem;
    }

    .demo-button {
        font-size: 1rem;
        padding: 16px 32px;
    }

    .legal-section {
        padding: 60px 0;
    }

    .legal-section h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}
