:root {
    --primary-orange-start: rgb(249, 115, 22);
    --primary-orange-end: rgb(251, 146, 60);
    --text-white: rgb(250, 250, 249);
    --text-dark: rgb(12, 10, 9);
    --border-light: rgb(231, 229, 228);
    --border-orange: rgb(249, 115, 22);
    --font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --border-radius: 6px;
    --section-padding: 80px 0;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark);
    background-color: #fefefe;
}

.top-banner {
    background: linear-gradient(to right, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
}

.navbar {
    background-color: #fefefe !important;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.navbar-brand .logo i {
    color: var(--primary-orange-start);
    font-size: 28px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 8px;
}

.nav-link:hover {
    color: var(--primary-orange-start) !important;
}

.cta-button {
    background: linear-gradient(to top, var(--primary-orange-start), var(--primary-orange-end));
    border: 1px solid var(--border-orange);
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    color: var(--text-white);
}

.cta-button.large {
    padding: 14px 24px;
    font-size: 18px;
}

.feedback-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: linear-gradient(to top, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    font-weight: 600;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.feedback-tab:hover {
    transform: translateY(-50%) rotate(-90deg) translateX(-5px);
}

.hero-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #fefefe 0%, #f9f9f9 100%);
}

.customer-avatars {
    display: flex;
    justify-content: center;
    gap: -8px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.lead-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

.hero-title .highlight {
    background: linear-gradient(to right, var(--primary-orange-start), var(--primary-orange-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-preview {
    margin-top: 60px;
    text-align: center;
}

.dashboard-preview img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.time-savings-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.time-breakdown {
    max-width: 500px;
}

.time-item {
    padding: 12px 0;
    font-size: 18px;
    color: var(--text-dark);
}

.time-value {
    color: var(--primary-orange-start);
    font-weight: 700;
}

.total-time {
    padding: 20px 0;
    font-size: 20px;
    font-weight: 700;
    border-top: 2px solid var(--border-light);
    margin-top: 16px;
}

.solution {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
}

.features-section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-item i {
    color: #22c55e;
    font-size: 18px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    background: linear-gradient(to right, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content {
    padding: 16px;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.customization-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.brand-example {
    margin-bottom: 40px;
}

.brand-logo {
    background: white;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.green .brand-logo {
    background: #22c55e;
    color: white;
}

.red .brand-logo {
    background: #dc2626;
    color: white;
}

.blue .brand-logo {
    background: #3b82f6;
    color: white;
}

.arrow-down {
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
}

.lead-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lead-form h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.lead-form p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-stars span {
    width: 32px;
    height: 32px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-field {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.green-btn {
    background: #22c55e;
}

.red-btn {
    background: #dc2626;
}

.blue-btn {
    background: #3b82f6;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.integration-section {
    padding: var(--section-padding);
}

.integration-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.tab-btn {
    background: #f3f4f6;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: linear-gradient(to top, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
    border-color: var(--border-orange);
}

.code-block {
    background: #1f2937;
    border-radius: var(--border-radius);
    padding: 24px;
    color: white;
}

.code-block p {
    color: #d1d5db;
    margin-bottom: 16px;
}

.code-content {
    background: #374151;
    border-radius: 4px;
    padding: 16px;
    margin: 16px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
}

.pricing-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border: 2px solid var(--primary-orange-start);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.1);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-header .logo i {
    color: var(--primary-orange-start);
    font-size: 28px;
}

.pricing-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 18px;
}

.current-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
}

.discount-badge {
    background: linear-gradient(to right, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.feature i {
    color: #22c55e;
    font-size: 16px;
}

.purchase-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-note {
    color: #666;
    font-size: 14px;
}

.pricing-note a {
    color: var(--primary-orange-start);
    text-decoration: none;
}

.faq-section {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 600px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-orange-start);
}

.faq-question i {
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.contact-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-orange-start), var(--primary-orange-end));
    color: var(--text-white);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-white);
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-cta-section .cta-button {
    background: white;
    color: var(--primary-orange-start);
    border: 2px solid white;
}

.contact-cta-section .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.final-cta-section {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.final-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.final-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.contact-section {
    padding: var(--section-padding);
    background: white;
}

.contact-form-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange-start);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.thank-you-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 48px;
    color: #22c55e;
    margin-bottom: 16px;
}

.thank-you-message h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thank-you-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 20px 0;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-brand .logo i {
    color: var(--primary-orange-start);
    font-size: 28px;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.contact-info i {
    color: var(--primary-orange-start);
    margin-right: 8px;
    width: 16px;
}

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

.contact-info a:hover {
    color: var(--primary-orange-start);
}

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

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

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

.footer-links a:hover {
    color: var(--primary-orange-start);
}

.footer hr {
    border-color: #374151;
    margin: 40px 0 20px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .final-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .feature-cards {
        margin-top: 40px;
    }
    
    .pricing-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .feedback-tab {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .time-item {
        font-size: 16px;
    }
    
    .brand-example {
        margin-bottom: 30px;
    }
}
