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

/* Prevent large images from taking up excessive space */
img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    max-width: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    height: auto !important;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #f7931e;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #666;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
}

.btn-primary {
    background: #f7931e;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: #e6851a;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #333;
    padding: 80px 0;
    text-align: center;
    position: relative;
    max-height: 100vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

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

.dynamic-text {
    margin: 20px 0;
}

.campaign-text {
    font-size: 20px;
    font-weight: 600;
    color: #f7931e;
    margin-bottom: 20px;
}

#campaign-type {
    color: #f7931e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    min-width: 140px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.campaign-types {
    margin: 15px 0 25px 0;
}

.campaign-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.campaign-subtitle strong {
    color: #f7931e;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility text colors and transforms */
.text-orange { color: #f7931e; }
.ucase { text-transform: uppercase; }

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Removed hero secondary text link */

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background: #f7931e;
    color: white;
    box-shadow: 0 2px 8px rgba(247, 147, 30, 0.2);
}

.cta-button.primary:hover {
    background: #e6851a;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #666;
    border: 1px solid #e5e5e5;
}

.cta-button.secondary:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
}

/* Proof Section */
.proof {
    background: #f8f8f8;
    padding: 60px 0;
    color: #333;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.proof h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.proof h2 i {
    margin-right: 15px;
    color: #f7931e;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.guarantee-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.guarantee-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.guarantee-item h3 i {
    margin-right: 10px;
    color: #f7931e;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}



/* Services Section */
.services {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

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

.service-item {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    border-color: #f7931e;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.1);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

/* Guarantee Icons */
.guarantee-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.1);
}

/* Section Icons */
.section-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 15px;
    vertical-align: middle;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-item p {
    color: #666;
    font-size: 16px;
}

.workflow {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 6px;
    color: #333;
    border: 1px solid #e5e5e5;
}

.workflow h3 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    color: #333;
}

.arrow {
    font-size: 18px;
    color: #666;
    font-weight: bold;
}

/* Pain Points Section */
.pain-points {
    background: #ffffff;
    padding: 60px 0;
    color: #333;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.pain-points h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

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

.pain-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pain-item h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.pain-item h3 i {
    margin-right: 10px;
    color: #f7931e;
}

.solution {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.solution h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.solution p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f7931e;
    margin-bottom: 30px;
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq {
    background: #f8f8f8;
    padding: 60px 0;
    color: #333;
    border-top: 1px solid #e5e5e5;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.6;
    color: #666;
    font-size: 16px;
}



/* Contact Section */
.contact {
    background: #ffffff;
    padding: 40px 0;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e5e5;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.contact > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #ffffff;
    color: #333;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f7931e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/* Focus States */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    background: #ffffff;
    border-color: #f7931e;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.contact-form input:invalid:not(:focus) {
    border-color: #dc3545;
}

.contact-form input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 0 0 140px;
    background: #ffffff;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px 10px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-right: 30px;
}

.country-code option {
    background: #ffffff;
    color: #333;
    padding: 10px;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    margin-bottom: 0;
}

.country-code:focus {
    outline: none;
    border-color: #f7931e;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
}

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

.direct-contact {
    text-align: center;
}

.direct-contact h3 {
    margin-bottom: 30px;
    color: #f7931e;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-btn {
    display: inline-block;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}



/* Privacy Policy Section */
.privacy {
    background: #0f0f0f;
    color: white;
    padding: 80px 0;
}

.privacy h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #f7931e;
    text-align: center;
}

.privacy h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ff6b35;
}

.privacy p {
    color: #ccc;
}

.privacy ul {
    margin-left: 20px;
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 40px 0;
    color: #333;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer-logo {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
    opacity: 0.95;
    margin: 0 auto 12px auto;
    display: block;
}

.disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-links a {
    color: #f7931e;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .campaign-text {
        font-size: 1.3rem;
    }
    
    #campaign-type {
        min-width: 120px;
        font-size: 0.9em;
    }
    
    .campaign-subtitle {
        font-size: 1rem;
    }
    
    .solution h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    

    
    .workflow-steps {
        flex-direction: column;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .campaign-text {
        font-size: 1.1rem;
    }
    
    #campaign-type {
        min-width: 100px;
        font-size: 0.85em;
    }
    
    .campaign-subtitle {
        font-size: 0.9rem;
    }
    
    .solution h2 {
        font-size: 1.5rem;
    }
    
    .solution p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .services-grid,
    .pain-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .phone-input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .country-code {
        flex: none;
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}

/* Form Note Styling */
.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* Mobile polish */
@media (max-width: 600px) {
    .container {
        padding: 0 14px;
    }
    .hero {
        padding: 70px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 8px;
    }
    .campaign-text {
        font-size: 1.1rem;
    }
    .hero-cta .cta-button {
        width: 100%;
        max-width: 360px;
    }
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .proof,
    .services,
    .pain-points,
    .faq,
    .contact {
        padding: 60px 0;
    }
    .proof h2 {
        font-size: 1.8rem;
    }
    .guarantee-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .workflow {
        padding: 24px;
    }
    .workflow h3 {
        font-size: 1.25rem;
    }
    .step {
        font-size: 0.95rem;
    }
    .solution {
        padding: 30px;
    }
    .solution h2 {
        font-size: 1.4rem;
    }
    .solution p {
        font-size: 0.95rem;
    }
    .contact > .container > p {
        font-size: 1rem;
    }
    .contact-form {
        padding: 24px;
    }
    .footer-logo {
        width: 32px !important;
        height: 32px !important;
    }
}

.form-status {
    min-height: 22px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 0.95rem;
}

.form-status.success {
    color: #2ecc71;
}

.form-status.error {
    color: #ff6b6b;
}

.turnstile-wrapper {
    margin: 10px 0 20px 0;
}

/* Exit Intent Popup Styles (moved from inline JS for CSP compatibility) */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.exit-intent-popup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    border: 1px solid #e5e5e5;
}

.exit-intent-content {
    padding: 40px 30px;
    text-align: center;
    color: #333;
    position: relative;
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.exit-intent-close:hover {
    color: #ff6b35;
}

.exit-intent-icon {
    font-size: 3rem;
    color: #f7931e;
    margin-bottom: 20px;
}

.exit-intent-popup h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f7931e;
    font-weight: 700;
}

.exit-intent-popup p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 30px;
}

.exit-intent-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.exit-intent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.exit-intent-guarantee {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.exit-intent-guarantee small {
    color: #f7931e;
    font-size: 0.9rem;
    font-weight: 500;
}

.exit-intent-guarantee i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .exit-intent-popup {
        max-width: 350px;
        margin: 20px;
    }
    .exit-intent-content {
        padding: 30px 20px;
    }
    .exit-intent-popup h3 {
        font-size: 1.5rem;
    }
    .exit-intent-popup p {
        font-size: 1rem;
    }
}

.form-consent {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 15px;
}

.form-consent a {
    color: #f7931e;
    text-decoration: underline;
}

.form-consent a:hover {
    color: #ff6b35;
}

/* Success Message */
.success-message {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    display: none;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
    border: 1px solid rgba(247, 147, 30, 0.3);
}

.success-message.show {
    display: block;
    animation: slideInFromTop 0.5s ease;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}