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

:root {
    /* Bluish Color Palette */
    --primary-blue: #0066CC;
    --secondary-blue: #00A8E8;
    --light-blue: #4DA6FF;
    --dark-blue: #004C99;
    --teal: #00CED1;
    --cyan: #00E5FF;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --gray: #6B7280;
    --dark-gray: #1F2937;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    transform: translateY(0);
    box-sizing: border-box;
}

.sticky-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: auto;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    max-width: calc(100% - 120px);
}

.logo-img {
    height: 65px;
    width: auto;
}


.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-header {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.4) 0%, rgba(0, 168, 232, 0.4) 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.4;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.3);
    z-index: 0;
}

.hero-headline {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
}

.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.pill {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 12px;
    font-size: 1rem;
    padding: 14px 28px;
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-microcopy {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* Section Styles */
section {
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-headline {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
}

/* Pain Points Section */
.pain-section {
    background-color: var(--light-gray);
    padding-top: 0;
}

/* Mobile/Desktop Show/Hide */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

/* Mobile Version - Backdrop Headlines */
.pain-headline-wrapper,
.solution-headline-wrapper,
.proof-headline-wrapper {
    position: relative;
    margin-bottom: 40px;
    margin-left: calc(-20px);
    margin-right: calc(-20px);
    width: calc(100% + 40px);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pain-headline-background,
.solution-headline-background,
.proof-headline-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pain-headline-background img,
.solution-headline-background img,
.proof-headline-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.pain-headline-wrapper::before,
.solution-headline-wrapper::before,
.proof-headline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.5);
    z-index: 1;
    transition: background 0.3s ease;
}

.pain-headline,
.solution-headline,
.proof-headline {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    padding: 40px 20px;
    font-size: 1.4rem;
}

/* Desktop Version - Left/Right Layout */
.section-content-wrapper {
    margin-bottom: 50px;
}

.section-image-left,
.section-image-right {
    width: 100%;
    margin-bottom: 30px;
}

.section-image-left img,
.section-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.section-heading-left,
.section-heading-right {
    width: 100%;
}

.section-heading-left .section-headline,
.section-heading-right .section-headline {
    margin-bottom: 0;
}

.pain-cards-wrapper {
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.pain-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0;
    width: 100%;
}

.pain-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pain-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.pain-text {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Solution Section */
.solution-section {
    background-color: var(--white);
    padding-top: 0;
}

.solution-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.solution-step {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid rgba(0, 102, 204, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.7;
}


/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    border: 2px solid var(--primary-blue);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.pricing-amount {
    text-align: center;
    margin-bottom: 30px;
}

.starting-from {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-asterisk {
    color: var(--text-secondary);
    font-size: 0.9rem;
    vertical-align: super;
    margin-left: 2px;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-primary);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Social Proof Section */
.social-proof-section {
    background-color: var(--white);
    padding-top: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.proof-item {
    background-color: var(--light-gray);
    padding: 15px 12px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.proof-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.proof-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.proof-text {
    color: var(--text-secondary);
    font-size: 0.68rem;
    line-height: 1.5;
}


/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 16px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: background-color 0.3s ease;
    min-height: 44px;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question[aria-expanded="true"] {
    background-color: rgba(0, 102, 204, 0.05);
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    font-weight: 300;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta-headline {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    min-height: 44px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-form {
    width: 100%;
    margin-bottom: 12px;
    font-size: 1rem;
    padding: 14px;
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-form:hover {
    background-color: var(--light-gray);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.cta-section .trust-badge {
    color: var(--white);
    justify-content: center;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 64px;
    width: auto;
}

.footer-logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-text {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Loader Overlay */
.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--white);
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Success Popup */
.success-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.success-popup-content {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease;
}

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

.success-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.success-message {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-success-ok {
    min-width: 120px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .section-headline {
        font-size: 2.25rem;
    }
    
    .pain-headline-wrapper::before,
    .solution-headline-wrapper::before,
    .proof-headline-wrapper::before {
        background: rgba(0, 102, 204, 0.6);
    }
    
    .pain-headline,
    .solution-headline,
    .proof-headline {
        font-size: 2.25rem;
        padding: 60px 40px;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    }
    
    .pain-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .pain-card {
        min-width: 300px;
        width: auto;
    }
    
    .solution-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .proof-item {
        padding: 20px 15px;
    }
    
    .proof-title {
        font-size: 1.1rem;
    }
    
    .proof-text {
        font-size: 0.76rem;
    }
    
    .cta-headline {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .logo-img {
        height: 62px;
    }
    
    .btn-header {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    /* Show/Hide for Mobile/Desktop */
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
    
    /* Desktop Section Layout - Left/Right with Image and Heading */
    .section-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 60px;
    }
    
    .section-content-wrapper.section-alternate {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-content-wrapper.section-alternate .section-heading-left {
        order: 1;
    }
    
    .section-content-wrapper.section-alternate .section-image-right {
        order: 2;
    }
    
    .section-image-left,
    .section-image-right {
        width: 100%;
        margin-bottom: 0;
        height: 400px;
        overflow: hidden;
    }
    
    .section-image-left img,
    .section-image-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .section-heading-left,
    .section-heading-right {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }
    
    .section-heading-left .section-headline,
    .section-heading-right .section-headline {
        font-size: 2.5rem;
        margin-bottom: 0;
        text-align: left;
    }
    
    /* Cards Grid Below */
    .pain-cards-wrapper {
        margin-top: 40px;
    }
    
    .pain-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        width: 100%;
    }
    
    .pain-card {
        padding: 40px 30px;
        width: 100%;
    }
    
    .pain-title {
        font-size: 1.4rem;
    }
    
    .solution-steps {
        margin-top: 40px;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .proof-grid {
        margin-top: 40px;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .proof-item {
        padding: 20px 15px;
    }
    
    .pricing-card {
        max-width: 600px;
        padding: 50px 40px;
    }
    
    .pricing-title {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 3.5rem;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}
