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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    background-color: rgb(249, 115, 22);
    color: #000000;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-banner .container {
    max-width: 1200px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: 1px;
}

.brand-bracket {
    color: rgb(249, 115, 22);
}

.brand-extension {
    color: rgb(249, 115, 22);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(249, 115, 22) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle p {
    margin-bottom: 20px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: rgb(249, 115, 22);
    margin-right: 15px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: rgb(249, 115, 22);
    border: none;
    color: #000000;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: rgba(249, 115, 22, 0.9);
    transform: translateY(-2px);
    color: #000000;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: rgb(249, 115, 22);
    color: rgb(249, 115, 22);
    transform: translateY(-2px);
}

/* Phone Mockup */
.hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #111111;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.phone-time {
    color: #ffffff;
}

.phone-indicators {
    display: flex;
    gap: 5px;
    color: #ffffff;
}

.phone-content {
    height: calc(100% - 40px);
}

.app-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.app-section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-card, .metric-card {
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lead-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.lead-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.lead-score, .metric-card {
    text-align: right;
}

.score-label, .metric-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-value, .metric-value {
    font-size: 18px;
    font-weight: 700;
    color: rgb(249, 115, 22);
}

/* Sections */
.features-section,
.use-cases-section,
.audience-section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Section */
.feature-badge,
.audience-badge {
    background-color: rgb(249, 115, 22);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-title,
.audience-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-description,
.audience-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Feature Mockup */
.feature-mockup .phone-content {
    padding: 10px;
}

.lead-list {
    margin-bottom: 20px;
}

.lead-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.lead-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 15px;
}

.lead-status.active {
    background-color: rgb(249, 115, 22);
}

.lead-details {
    flex: 1;
}

.lead-details h4 {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.lead-details p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-connect {
    background-color: rgb(249, 115, 22);
    color: #000000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.action-btn {
    background-color: rgb(249, 115, 22);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
}

/* Use Cases */
.use-case-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    border-color: rgb(249, 115, 22);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 48px;
    color: rgb(249, 115, 22);
    margin-bottom: 20px;
}

.use-case-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Audience Section */
.audience-mockup .phone-content {
    padding: 15px;
}

.notification-card {
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.project-section {
    margin-top: 20px;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.project-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background-color: rgba(249, 115, 22, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.project-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(249, 115, 22);
    margin-right: 12px;
}

.project-status.success {
    background-color: #00ff00;
}

.project-details {
    flex: 1;
}

.project-details h4 {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.project-details p {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
}

.project-action {
    font-size: 9px;
    color: rgb(249, 115, 22);
    font-weight: 600;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(0, 0, 0, 0.8));
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: rgb(249, 115, 22);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact a {
    color: rgb(249, 115, 22);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-title,
    .audience-title {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .footer-contact {
        text-align: left;
        margin-top: 20px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .features-section,
    .use-cases-section,
    .audience-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* Form Styles */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 15px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgb(249, 115, 22);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Pricing Cards */
.pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.featured {
    border-color: rgb(249, 115, 22);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: rgb(249, 115, 22);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    background-color: rgb(249, 115, 22);
    color: #000000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: rgb(249, 115, 22);
    margin-bottom: 5px;
}

.pricing-period {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: rgb(249, 115, 22);
    margin-right: 10px;
    width: 16px;
}

/* Contact Form Styles */
.contact-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.contact-form .form-check-group {
    margin-top: 10px;
}

.contact-form .form-check {
    margin-bottom: 10px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.contact-form .form-check-input {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-form .form-check-input:checked {
    background-color: rgb(249, 115, 22);
    border-color: rgb(249, 115, 22);
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 10px;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    border-color: rgb(249, 115, 22);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    color: rgb(249, 115, 22);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contact-info-card a {
    color: rgb(249, 115, 22);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: rgba(249, 115, 22, 0.8);
}

.contact-info-card address {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: rgb(249, 115, 22);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
}

.features-comparison {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.table-dark {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-dark th,
.table-dark td {
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.table-dark thead th {
    background-color: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #ffffff;
    font-weight: 600;
}

.text-success {
    color: rgb(249, 115, 22) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.accordion-button {
    background-color: transparent;
    color: #ffffff;
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(249, 115, 22, 0.1);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0;
    text-align: center;
}

.thank-you-icon {
    font-size: 80px;
    color: rgb(249, 115, 22);
    margin-bottom: 30px;
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.thank-you-message {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.next-step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.next-step-card:hover {
    border-color: rgb(249, 115, 22);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 36px;
    color: rgb(249, 115, 22);
    margin-bottom: 15px;
}

.next-step-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.next-step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.action-buttons {
    margin-top: 40px;
}

/* Legal Pages */
.legal-section {
    padding: 100px 0;
}

.legal-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.legal-updated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.legal-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #ffffff;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: rgb(249, 115, 22);
    text-decoration: none;
}

.legal-content a:hover {
    color: rgba(249, 115, 22, 0.8);
    text-decoration: underline;
}

.legal-content .contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}
