:root {
    --primary-orange: #E65900;
    --text-dark: #383734;
    --text-light: #959392;
    --text-white: #FFFFFF;
    --bg-light: #FBF9F6;
    --text-green: #22C55E;
    --text-blue: #3B82F6;
    --text-purple: #8B5CF6;
    --gray-dark: #7E7B74;
}

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

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

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

.navbar {
    background: var(--text-white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #d14d00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b35 100%);
    padding: 120px 0 80px;
    color: var(--text-white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 96px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.dashboard-mockup {
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.mockup-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-content {
    padding: 2rem;
    color: var(--text-dark);
}

.lead-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

.stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.features-preview {
    padding: 80px 0;
    text-align: center;
}

.features-preview h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

.text-green { color: var(--text-green); }
.text-blue { color: var(--text-blue); }
.text-orange { color: var(--primary-orange); }
.text-purple { color: var(--text-purple); }

.industry-leaders {
    padding: 80px 0;
    background: var(--bg-light);
}

.industry-leaders h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.testimonial {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 14px;
}

.company {
    color: var(--primary-orange) !important;
    font-weight: 600 !important;
}

.technology-trends {
    padding: 80px 0;
}

.technology-trends h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

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

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

.trend-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 20px;
}

.pricing-page {
    padding: 120px 0 80px;
}

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

.pricing-header h1 {
    font-size: 96px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

.pricing-card {
    padding: 2.5rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-orange);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.price-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 14px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-green);
    font-weight: bold;
}

.btn-pricing {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--primary-orange);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--text-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.price-small {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 700;
}

.product-page,
.features-page,
.contact-page {
    padding: 120px 0 80px;
}

.product-hero,
.features-hero,
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.product-hero h1,
.features-hero h1,
.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.overview-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-number {
    background: var(--primary-orange);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.overview-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.advantage-card,
.tech-item {
    padding: 2rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.advantage-card h3,
.tech-item h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

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

.feature-card {
    padding: 2.5rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.feature-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 24px;
}

.feature-benefits {
    list-style: none;
    margin-top: 1rem;
}

.feature-benefits li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 14px;
}

.feature-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

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

.advanced-feature {
    padding: 2rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.advanced-feature h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-highlight {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-orange);
}

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

.integration-category {
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.integration-category h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.integration-category ul {
    list-style: none;
}

.integration-category li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.contact-images {
    margin-bottom: 4rem;
}

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

.team-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.contact-philosophy {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-philosophy h2 {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 1rem;
}

.contact-philosophy h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-methods {
    margin-bottom: 4rem;
}

.contact-methods h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.contact-card {
    padding: 3rem;
    background: var(--text-dark);
    color: var(--text-white);
    border-radius: 12px;
    text-align: center;
}

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

.contact-card h3 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-contact {
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #d14d00;
}

.contact-form-section {
    margin-bottom: 4rem;
}

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

.form-container h3 {
    text-align: center;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    font-size: 32px;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d14d00;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-content {
    background: var(--text-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
}

.success-content h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.legal-page {
    padding: 120px 0 80px;
}

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

.legal-header h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 24px;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

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

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0 2rem;
}

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

.footer-brand h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 24px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

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

.footer-column a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .pricing-header h1,
    .product-hero h1,
    .features-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .features-preview h2 {
        font-size: 32px;
    }
    
    .industry-leaders h2 {
        font-size: 36px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .team-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-images {
        grid-template-columns: 1fr;
    }
}
