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

body {
    font-family: 'Raleway', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Notification Bar */
.notification-bar {
    background-color: #f97316;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.notification-bar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.notification-bar a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.navbar-brand {
    color: #f6933c !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
    color: #f97316;
}

.brand-text {
    color: #f6933c;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #f6933c !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28246, 147, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.website-intro {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.intro-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e5e5;
    margin: 0;
}

.hero-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-features i {
    color: #f97316;
    margin-right: 1rem;
    font-size: 1.2rem;
}

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

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #f97316;
    color: #ffffff;
    border-color: #f97316;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #f6933c;
}

.btn-secondary:hover {
    background-color: #f6933c;
    color: #000000;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    max-width: 400px;
    width: 100%;
}

.dashboard-mockup {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
    border: 1px solid #333;
}

.mockup-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background-color: #ff5f56; }
.control-dot.yellow { background-color: #ffbd2e; }
.control-dot.green { background-color: #27ca3f; }

.mockup-title {
    color: #f97316;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 1.5rem;
}

.lead-card {
    background: #333;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #f97316;
}

.lead-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #f97316;
    font-weight: 600;
}

.lead-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ccc;
}

.campaign-stats {
    display: flex;
    gap: 1rem;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #000000;
}

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

.section-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.feature-badge {
    background: #f97316;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-mockup {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #444;
}

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

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.pipeline-stage.active {
    opacity: 1;
}

.pipeline-stage i {
    font-size: 1.5rem;
    color: #f97316;
}

.pipeline-stage span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ccc;
}

.campaign-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #333;
    border-radius: 6px;
}

.campaign-item i {
    font-size: 1.2rem;
    color: #f97316;
}

.campaign-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
}

.campaign-status.active {
    background: #27ca3f;
}

.social-connections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.social-item.connected {
    background: rgba(249, 115, 22, 0.2);
}

.social-item i {
    font-size: 1.5rem;
    color: #f97316;
}

.connection-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666;
}

.social-item.connected .connection-status {
    background: #27ca3f;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.use-case-card {
    background: #000000;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.use-case-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.use-case-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.use-case-features {
    list-style: none;
    margin-bottom: 2rem;
}

.use-case-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #cccccc;
}

.use-case-features li:before {
    content: "•";
    color: #f97316;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.btn-outline-primary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: #000000;
}

.audience-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.audience-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.audience-description {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.audience-benefits-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
    text-align: left;
}

.audience-benefits {
    list-style: none;
    text-align: left;
}

.audience-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #cccccc;
}

.audience-benefits li:before {
    content: "✓";
    color: #f97316;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.about-card {
    background: #000000;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.about-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-description {
    color: #cccccc;
    line-height: 1.6;
}

.mission-statement {
    background: rgba(249, 115, 22, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.mission-title {
    font-size: 2rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1.5rem;
}

.mission-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #000000;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-features {
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #cccccc;
}

.cta-feature i {
    color: #f97316;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-preview {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.pricing-header {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    border-left: 4px solid #f97316;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
}

.channel {
    color: #ccc;
    font-weight: 500;
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

.help-section {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.help-text {
    color: #cccccc;
    margin-bottom: 1rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-link {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help-link:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    color: #f6933c !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-info a {
    color: #f97316;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

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

/* Contact Form Styles */
.contact-form {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #333;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem;
    background: #333;
    border: 1px solid #555;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.form-control::placeholder {
    color: #999;
}

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

.btn-submit {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

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

/* Success Message */
.success-message {
    background: rgba(39, 202, 63, 0.1);
    border: 1px solid #27ca3f;
    border-radius: 8px;
    padding: 1rem;
    color: #27ca3f;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

/* Pricing specific styles */
.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features h4 {
    color: #f97316;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.pricing-features li:before {
    content: "✓";
    color: #f97316;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* Form check styles */
.form-check {
    margin-bottom: 0.75rem;
}

.form-check-input {
    background-color: #333;
    border-color: #555;
    margin-right: 0.5rem;
}

.form-check-input:checked {
    background-color: #f97316;
    border-color: #f97316;
}

.form-check-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .help-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-preview {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .feature-card,
    .use-case-card,
    .audience-card,
    .about-card {
        padding: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}
