/* ========================================================================
   PEINTURE-SOL2.CSS - Premium Lead Conversion Landing Page
   ======================================================================== */

/* ========================================================================
   HERO SECTION - Immersive & Trust-Building
   ======================================================================== */
.hero-premium {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 51, 102, 0.75) 100%),
        url('../images/peinture_sol_hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Animated paint drip effect */
.hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 15px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary-color) 10%,
            var(--primary-color) 20%,
            transparent 25%,
            transparent 40%,
            var(--primary-color) 45%,
            var(--primary-color) 60%,
            transparent 65%,
            transparent 75%,
            var(--primary-color) 80%,
            var(--primary-color) 90%,
            transparent 100%);
    opacity: 0.3;
    animation: drip 8s ease-in-out infinite;
}

@keyframes drip {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.5;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content - Value Proposition */
.hero-content {
    color: white;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-text strong {
    display: block;
    font-size: 1rem;
}

/* Stats Counter */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* ========================================================================
   FORM CONTAINER - Premium Multi-Step Form
   ======================================================================== */
.form-wrapper {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.form-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004080 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    right: 20px;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 51, 102, 0.1) 0%, transparent 100%);
    border-radius: 50%;
}

.form-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header h2 i {
    color: var(--primary-color);
}

.form-header p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Progress Stepper */
.progress-stepper {
    display: flex;
    justify-content: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    gap: 12px;
    flex-wrap: wrap;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.step-dot.active {
    background: var(--primary-color);
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
}

.step-dot.completed {
    background: var(--primary-color);
}

.step-dot.completed::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 7px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Step Counter */
.step-counter {
    text-align: center;
    padding: 15px;
    background: linear-gradient(90deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    font-size: 0.85rem;
    color: #666;
}

.step-counter span {
    font-weight: 700;
    color: var(--primary-color);
}

/* Form Body */
.form-body {
    padding: 30px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

/* Step Content */
.step-content {
    display: none;
    animation: stepFadeIn 0.5s ease;
    flex: 1;
}

.step-content.active {
    display: flex;
    flex-direction: column;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-icon {
    text-align: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
}

.step-content.active .step-icon i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-align: center;
}

.step-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

/* Options Grid - Modern Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex: 1;
}

.options-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.option-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90px;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

.option-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkPop 0.3s ease;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.option-card i {
    font-size: 1.6rem;
    color: #6c757d;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.option-card:hover i,
.option-card.selected i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.option-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
}

/* Multi-select indicator */
.option-card.multi-select input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Form Inputs - Premium Style */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group label i {
    margin-right: 6px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Consent Checkbox */
.consent-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.consent-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Captcha Container */
.captcha-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Form Footer */
.form-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.btn-prev:hover:not(:disabled) {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-next:disabled {
    background: #ced4da;
    box-shadow: none;
    cursor: not-allowed;
}

/* Form Trust Footer */
.form-trust-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 30px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.form-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6c757d;
}

.form-trust-item i {
    color: var(--primary-color);
}

/* ========================================================================
   CONTENT SECTIONS - Below the Fold
   ======================================================================== */

/* Section Styling */
.section-premium {
    padding: 80px 20px;
}

.section-premium.bg-light {
    background: var(--light-bg);
}

.section-premium.bg-gradient {
    background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Intro Content */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Price Factors Section */
.price-factors {
    max-width: 900px;
    margin: 0 auto;
}

.price-factor-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.price-factor-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.price-factor-item:last-child {
    margin-bottom: 0;
}

.price-factor-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-factor-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.price-factor-content h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.price-factor-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Price CTA */
.price-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Secondary CTA Button */
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

/* Process Steps - Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 80px;
}


.process-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 30px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255, 107, 0, 0.2) 100%);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    position: absolute;
    left: -55px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.process-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    margin-top: 5px;
}

.process-content p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary-color);
}

.faq-item.active .faq-toggle i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-premium {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004080 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    animation: ctaPulse 8s linear infinite;
}

@keyframes ctaPulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
    animation: ctaBtnPulse 2s infinite;
    text-decoration: none;
}

@keyframes ctaBtnPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(255, 107, 0, 0.6), 0 0 0 10px rgba(255, 107, 0, 0.1);
    }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-premium {
        padding: 100px 20px 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .form-wrapper {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .process-timeline {
        padding-left: 60px;
    }

    .process-number {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .process-step {
        padding-left: 20px;
    }

    .process-step::before {
        left: -20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .form-header {
        padding: 20px;
    }

    .form-body {
        padding: 20px;
    }

    .options-grid,
    .options-grid.grid-3 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        padding: 15px 20px;
        flex-direction: column-reverse;
    }

    .btn-nav {
        width: 100%;
        justify-content: center;
    }

    .form-trust-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    /* Price factors responsive */
    .price-factor-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }

    .price-factor-icon {
        margin: 0 auto;
    }

    .price-factor-item:hover {
        transform: translateY(-5px);
    }

    .intro-content p {
        font-size: 1rem;
    }

    .price-cta {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 90px 15px 30px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .progress-stepper {
        padding: 15px;
    }

    .step-dot {
        width: 12px;
        height: 12px;
    }

    .option-card {
        padding: 14px 12px;
        min-height: 80px;
    }

    .option-card i {
        font-size: 1.3rem;
    }

    .option-label {
        font-size: 0.85rem;
    }
}

/* ========================================================================
   ANIMATIONS & UTILITIES
   ======================================================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading state for submit button */
.btn-next.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-next.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btnSpinner 0.8s linear infinite;
}

@keyframes btnSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* Shake animation for validation errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-5px);
    }

    40%,
    80% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.4s ease;
}

/* Tooltip styles */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Paint brush cursor for interactive elements */
.option-card:hover {
    cursor: pointer;
}

/* Gradient text effect for headings */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e65c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}