    }

    @media (min-width: 768px) {
        .form-step[data-step="2"] .form-navigation {
            flex-direction: row;
            justify-content: space-between;
        }
        .form-step[data-step="2"] .form-navigation .btn.prev-step {
            order: -1;
            margin-right: auto;
        }
}

.form-step[data-step="2"] .form-navigation .btn.prev-step {
    order: -1;
    margin-right: auto;
}
/* === BEGIN: 5-Step Form Styles migrated from form2/form-styles.css === */
/* Namespaces are preserved; these classes only apply to the form area */
/* Variables and global resets are intentionally omitted to avoid conflicts. */

/* Business Name Autocomplete Suggestions */
.business-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-primary);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 0;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #f9f9fb;
}

.suggestion-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.suggestion-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.suggestion-status {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

.suggestion-status.open {
    color: #22c55e;
}

.suggestion-status.closed {
    color: #ef4444;
}

/* ===============================
   5-STEP FUNNEL STYLES
   =============================== */

/* Step 1: Pain Points Quiz */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    /* Handle up to 6 pain points in 3 rows */
}

.pain-point-card {
    position: relative;
    border: 1px solid var(--border-primary) !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    padding: 1.1rem 1.35rem !important;
    gap: .35rem !important;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    cursor: pointer;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.pain-point-card:hover {
    border-color: var(--brand-primary) !important;
    background: #fff8fb !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04) !important;
}

.pain-point-card.selected {
    background: #ffffff !important;
    /* brand white */
    border-color: var(--brand-primary) !important;
    color: var(--text-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    /* keep flat style */
}

.pain-point-card:focus-within,
.pain-point-card:focus-visible {
    outline: 2px solid var(--brand-primary) !important;
    outline-offset: 2px !important;
}

.pain-point-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(217, 22, 106, .25) !important;
}

.pain-point-card.selected .pain-point-icon {
    background: var(--brand-primary) !important;
}

.pain-point-card h3 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
    color: var(--text-primary) !important;
    margin: 0 0 4px 0 !important;
}

.pain-point-card p {
    font-size: .78rem !important;
    line-height: 1.25rem !important;
    color: var(--text-secondary) !important;
    max-width: 480px !important;
    margin: 0 !important;
}

/* Adjust spacing & vertical centering for pain point text */
.pain-point-card {
    align-items: center !important;
    min-height: 72px !important;
}

.pain-point-card h3 {
    margin: 0 0 1px 0 !important;
    line-height: 1.15 !important;
}

.pain-point-card p {
    margin: 0 !important;
    line-height: 1.18 !important;
}

/* Improve icon sharpness and alignment */
.pain-point-icon i,
.pain-point-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 1.75 !important;
}

/* Keyboard focus for the hidden radio inside card */
.pain-point-card input[type=radio]:focus-visible+* {
    outline: none !important;
}

/* Compact layout on very small screens */
@media (max-width:480px) {
    .pain-point-card {
        padding: .9rem 1rem !important;
    }

    .pain-point-card h3 {
        font-size: .95rem !important;
    }

    .pain-point-card p {
        font-size: .72rem !important;
        line-height: 1.15rem !important;
    }

    .pain-point-icon {
        width: 48px !important;
        height: 48px !important;
        margin-right: .85rem !important;
    }
}

/* Pain point radio fully hidden (accessible) */
.pain-point-card input[type=radio] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

/* Refined layout & spacing */
.pain-points-grid {
    gap: .85rem !important;
}

.pain-point-card {
    grid-template-columns: 52px 1fr !important;
    column-gap: 1rem !important;
    padding: 1rem 1.25rem !important;
    min-height: unset !important;
}

.pain-point-icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
    margin: 0 !important;
}

.pain-point-card h3 {
    margin: 0 0 2px 0 !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
}

.pain-point-card p {
    margin: 0 !important;
    font-size: .78rem !important;
    line-height: 1.3 !important;
}

/* Uniform selected elevation */
.pain-point-card.selected {
    box-shadow: 0 3px 10px rgba(217, 22, 106, .15) !important;
}

@media (max-width:480px) {
    .pain-point-card {
        padding: .85rem 1rem !important;
        column-gap: .75rem !important;
    }

    .pain-point-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .pain-point-card h3 {
        font-size: .95rem !important;
    }

    .pain-point-card p {
        font-size: .7rem !important;
        line-height: 1.2 !important;
    }
}

/* === PAIN POINTS LAYOUT FIXES === */
/* Override: force single-column list for pain points */
.pain-points-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin: 1rem 0 !important;
}

.pain-point-card {
    width: 100% !important;
    position: relative !important;
    border: 1px solid var(--border-primary) !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    padding: 0.75rem 1rem !important;
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-items: start !important;
    text-align: left !important;
    cursor: pointer;
    min-height: unset !important;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.pain-point-card:hover {
    border-color: var(--brand-primary) !important;
    background: #fff8fb !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .04) !important;
}

.pain-point-card.selected {
    background: #ffffff !important;
    /* brand white */
    border-color: var(--brand-primary) !important;
    color: var(--text-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    /* keep flat style */
}

.pain-point-icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent)) !important;
    color: white;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-shadow: 0 2px 4px rgba(217, 22, 106, .25) !important;
}

.pain-point-card.selected .pain-point-icon {
    background: var(--brand-primary) !important;
}

.pain-point-card h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 0 4px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: .3px !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
}

.pain-point-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    font-size: .78rem !important;
    line-height: 1.25rem !important;
    color: var(--text-secondary) !important;
}

/* Individual tailored message positioning */
.individual-tailored-message {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(244, 114, 182, 0.05) 100%);
    /*    border: 1px solid var(--brand-accent);*/
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    display: none;
}

.individual-tailored-message.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.individual-tailored-message .tailored-content p {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
    font-size: 0.9rem;
}

.individual-tailored-message .video-trigger {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.individual-tailored-message .video-trigger:hover {
    background: var(--brand-accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Hide the native checkbox for pain points */
.pain-point-card input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    pointer-events: none !important;
}

/* Selected state indicator */
.pain-point-card.selected::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(217, 22, 106, 0.3);
    animation: checkmarkPop 0.3s ease;
    z-index: 2;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Pain point icon visibility fixes */
.pain-point-icon svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    stroke: #ffffff !important;
    /* ensure visible on gradient */
    fill: none !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

/* fallback for <i> before lucide replaces it */
.pain-point-icon i[data-lucide] {
    display: inline-block !important;
    width: 22px !important;
    height: 22px !important;
}

@media (max-width: 640px) {
    .pain-point-card {
        padding: 0.9rem 1rem !important;
        grid-template-columns: 48px 1fr !important;
    }

    .pain-point-icon {
        width: 48px !important;
        height: 48px !important;
    }

    .pain-point-card h3 {
        font-size: 0.95rem !important;
    }

    .pain-point-card p {
        font-size: 0.72rem !important;
        line-height: 1.15rem !important;
    }
}

/* ===============================
   TRUSTED MESSAGE STYLES
   =============================== */
.trust-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 2px solid var(--success) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    box-shadow: none;
    margin-bottom: 1rem;
}

.trust-message.show {
    opacity: 1;
    transform: translateY(0);
}

.trust-message .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--success) !important;
    font-weight: 600;
}

.trust-message p {
    margin: 0;
    color: var(--text-primary) !important;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-message p strong {
    font-weight: 600;
}

/* ===============================
   TAILORED MESSAGE STYLES
   =============================== */
.tailored-message {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(244, 114, 182, 0.05) 100%);
    border: 2px solid var(--brand-accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tailored-message.show {
    opacity: 1;
    transform: translateY(0);
}

.tailored-content p {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.video-trigger {
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.video-trigger:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Step 2: Eligibility Check */
.scarcity-frame {
    background: var(--warning-light);
    border: 1px solid var(--warning-border);
    border-radius: 10px;
    padding: 0.5rem;
    margin: 1rem 0.5rem 0.5rem;
    text-align: center;
}

.scarcity-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
}

.scarcity-frame p {
    margin: 0;
    color: var(--text-warning);
    line-height: 1.5;
}

.urgency-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fefbff 0%, #f3e8ff 100%);
    border: 2px solid var(--brand-purple);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem auto ;
}

.urgency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.urgency-message p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Eligibility Check Results */
.eligibility-message {
    margin: 1.5rem auto;
    border-radius: 10px;
    padding: 1.5rem;
    display: none;
}

.eligibility-message.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--success);
}

.eligibility-message.error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid var(--error);
}

.eligibility-success,
.eligibility-error {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.success-icon,
.error-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.success-icon {
    background: var(--success);
}

.error-icon {
    background: var(--error);
}

.success-content h4,
.error-content h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.success-content p,
.error-content p {
    margin: 0.25rem 0;
    line-height: 1.5;
}

.eligibility-message.success .success-content h4 {
    color: var(--success);
}

.eligibility-message.error .error-content h4 {
    color: var(--error);
}

/* Animate eligibility results */
.eligibility-message {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.eligibility-message[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}

/* Step 3: AI Profile Preview */
.ai-profile-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.ai-profile-preview h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.profile-mockup {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.mockup-header span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.open-status {
    background: none;
    color: #22c55e;
    /* Green color for open */
    padding: 0;
    border: none;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.open-status.closed {
    color: #ef4444;
    /* Red color for closed */
}

.mockup-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.recovery-nudge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.nudge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.recovery-nudge p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Step 4: Card Verification */
.reward-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--brand-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.reward-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.reward-highlight p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

.card-element-container {
    margin: 2rem 0;
}

.card-element-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95em;
}

.card-element {
    padding: 14px 18px;
    border: 1px solid var(--brand-pink);
    border-radius: 10px;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-element:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
    outline: none;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-size: 0.9rem;
    font-weight: 500;
}

.card-nudge {
    border-color: var(--brand-primary);
}

.card-nudge .nudge-icon {
    background: var(--brand-primary);
}

.marketing-pack-value {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--brand-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.marketing-pack-value h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.value-list li i {
    color: var(--success);
    width: 16px;
    height: 16px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.check-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.check-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-weight: 600;
}

.check-content p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.download-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    align-items: center;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: flex-start;
    border: 1px solid #000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-download-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.store-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.app-download-btn.app-store .store-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-label {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 1px;
}

.store-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile/Desktop visibility */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

/* QR Code styling */
.qr-codes-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.qr-code-container {
    flex: 1;
    min-width: 120px;
}

.qr-code-wrapper {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.qr-code-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.qr-code-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.qr-code-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Desktop view - show QR codes, hide buttons */
@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: block;
    }
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--border-primary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
}

.final-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.message-content h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.message-content p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Step Subtitle */
.step-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    animation: slideInFromTop 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: var(--brand-primary);
    text-decoration: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--overlay-dark);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Connecting line between steps */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
    transition: background-color 0.3s ease;
}

/* Completed connecting line */
.progress-step.completed:not(:last-child)::after {
    background-color: var(--success);
}

.progress-step.current,
.progress-step.completed {
    opacity: 1;
}

.progress-step .step-indicator {
    width: 40px;
    height: 40px;
    background-color: var(--gray-400);
    color: var(--gray-500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid var(--border-primary);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.progress-step.current .step-indicator,
.progress-step.completed .step-indicator {
    transform: scale(1.1);
}

.progress-step.current .step-indicator {
    background-color: var(--white);
    color: var(--brand-primary);
}

.progress-step.completed .step-indicator {
    background-color: var(--success);
    color: #fff;
    border: 2px solid var(--success);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.progress-step.completed .step-indicator span {
    display: none;
}

.progress-step.completed .step-indicator::after {
    /* content: '✓'; */
    font-size: 1.2em;
    font-weight: bold;
}

.progress-step .step-label {
    font-size: 1.1em;
    font-weight: 500;
}

/* Form validation styles */
.form-group {
    position: relative;
}

.validation-message {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-message.error {
    color: var(--error);
}

.validation-message.success {
    color: var(--success);
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--brand-pink);
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    background-color: #FFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    border-color: var(--brand-accent);
    outline: none;
}

.form-group input.error,
.form-group select.error {
    border-color: #dc2626;
}

.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #FFCDD2;
    border-radius: 10px;
    background-color: #FFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: var(--brand-accent);
}

/* Validation states for phone input */
.phone-input-container.success,
.phone-input-container.success:focus-within {
    border-color: var(--success) !important;
    background: transparent;
}

.phone-input-container.error,
.phone-input-container.error:focus-within {
    border-color: #dc2626 !important;
}

.country-selector {
    position: relative;
    min-width: 140px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid #FFCDD2;
    border-radius: 10px 0 0 10px;
    font-size: 1em;
    color: #333;
   
    outline: none;
    font-family: inherit;
}


.dropdown-arrow {
    margin-left: auto;
    font-size: 0.8em;
    color: #666;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.country-text {
    font-weight: 500;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #FFCDD2;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}


.dropdown-option:last-child {
    border-radius: 0 0 10px 10px;
}

.phone-input-container input[type="tel"] {
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px 14px 12px;
    background-color: transparent;
    flex: 1;
    outline: none;
}

/* Button styles */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    font-family: inherit;
}

.btn:disabled {
    background: linear-gradient(45deg, #f8bbd9, #fce4ec) !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.next-step,
.submit-form {
    background-color: #E91E63;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.prev-step {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.next-step:hover,
.submit-form:hover {
    background-color: #D81B60;
}

.prev-step:hover {
    background-color: #f9f0f4;
}

/* Form navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-navigation button {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: centered;
}

/* Override for video-trigger button (ensure border visible) */
.btn.video-trigger {
    border: 1px solid var(--brand-primary) !important;
    background: #f9f9fb !important;
    /* subtle neutral background */
    color: var(--brand-primary) !important;
    padding: 0.45rem 0.9rem !important;
    /* reduced padding */
    line-height: 1.1 !important;
    margin: 0.6rem 0 0 0
}

.btn.video-trigger:hover {
    background: var(--brand-primary) !important;
    color: #ffffff !important;
}

/* Responsive Styles for 5-Step Funnel */
@media (max-width: 1024px) {
    .progress-bar {
        margin-top: 2rem;
        padding-left: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .progress-step {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 80px;
        flex-shrink: 0;
    }

    .progress-step .step-indicator {
        margin-right: 0px;
        margin-bottom: 8px;
    }

    .progress-step .step-label {
        font-size: 0.8em;
        text-align: center;
        line-height: 1.2;
    }

    /* Horizontal connecting lines for mobile/tablet */
    .progress-step:not(:last-child)::after {
        content: '';
        left: 50px;
        top: 20px;
        width: calc(15vw);
        height: 2px;
    }

    /* Completed horizontal connecting line */
    .progress-step.completed:not(:last-child)::after {
        background-color: var(--success);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-primary);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-close-btn {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-secondary);
        text-align: left;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: var(--bg-secondary);
    }

    .cta-nav {
        margin: 0.5rem 2rem;
        text-align: center;
        border-bottom: none !important;
        padding: 0.75rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-btn {
        display: none;
        opacity: 1;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        background: var(--brand-primary);
        color: white !important;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .cta-btn:hover {
        background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
        color: white !important;
        transform: translateY(-1px);
    }

    .show-cta-btn {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hide-menu-btn {
        opacity: 0 !important;
        transform: scale(0) !important;
        pointer-events: none;
    }

    /* Force hide desktop stepper on mobile/tablet and show simple bar */
    .progress-bar {
        display: none !important;
    }

    #mobileProgress {
        display: flex !important;
    }
}

@media (max-width: 767px) {

    .form-step[data-step="3"] .form-navigation,
    .form-step[data-step="4"] .form-navigation {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .form-step[data-step="3"] .form-navigation .btn,
    .form-step[data-step="4"] .form-navigation .btn {
        width: 100%;
    }
    .form-step[data-step="2"] .form-navigation {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    .form-step[data-step="2"] .form-navigation .btn {
        width: 100%;
    }
    .form-step[data-step="5"] .form-navigation {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    .form-step[data-step="5"] .form-navigation .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {

    /* Adjust mobile progress bar for smaller screens */
    #mobileProgress {
        flex-direction: column;
        align-items: stretch;
    }

    #mobileProgress .mobile-progress-bar {
        height: 6px;
    }

    #mobileProgress .mobile-progress-text {
    font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .nav-container {
        gap: 0px;
    }

    .nav-actions {
        gap: 0px;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .cta-btn {
        padding: 0.75rem 0.25rem;
    }
}

/* ===============================
   OTHER PAIN POINT CUSTOM INPUT
   =============================== */
.other-pain-wrapper {
    grid-column: 1 / -1 !important;
    display: none;
    /* shown via JS */
    flex-direction: column;
    gap: 6px;
    margin-top: .65rem !important;
    width: 100% !important;
    animation: fadeIn .25s ease;
}

.other-pain-wrapper.show {
    display: flex !important;
}

.other-pain-wrapper label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.other-pain-wrapper input {
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    font-size: .82rem;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.other-pain-wrapper input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(217, 22, 106, .15);
}

.other-pain-wrapper.invalid input {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, .15);
}

#otherPainInput-validation {
    min-height: 18px;
    font-size: .68rem;
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

#otherPainInput-validation.error {
    color: #dc2626;
}

/* Compact adjustments inside pain point card */
.pain-point-card[data-pain='other'] {
    padding-bottom: 1rem !important;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .other-pain-wrapper {
        gap: 4px;
    }

    .other-pain-wrapper input {
        font-size: .78rem;
        padding: .6rem .75rem;
    }

    #otherPainInput-validation {
        font-size: .62rem;
    }
}

@media (max-width: 400px) {
    .other-pain-wrapper input {
        font-size: .75rem;
    }
}

/* High contrast / prefers reduced motion adjustments */
@media (prefers-reduced-motion: reduce) {
    .other-pain-wrapper {
        animation: none;
    }
}

/* Ensure tailored message & custom input never overlap */
.pain-point-card[data-pain='other'] .individual-tailored-message {
    display: none !important;
}

/* Accessible focus ring fallback */
.other-pain-wrapper input:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* === END: 5-Step Form Styles === */
/* ===============================
   CSS VARIABLES
   =============================== */
:root {
    /* Light theme colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #fafafa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-tertiary: #374151;
    --border-primary: #e5e7eb;
    --border-secondary: #f3f4f6;
    --nav-bg: rgba(255, 255, 255, 0.95);

    /* Brand colors */
    --brand-primary: #d9166a;
    --brand-secondary: #4338CA;
    --brand-accent: #E91E63;
    --brand-purple: #6366F1;
    --brand-pink: #F472B6;
    --brand-violet: #8B5CF6;
    --brand-indigo: #3730A3;
    --brand-rose: #9D174D;
    --brand-table: #f3098b;

    /* Primary pink colors for CTA section */
    --primary-pink: #E91E63;
    --primary-pink-light: #FFF5F8;
    --primary-pink-dark: #C2185B;
    --primary-pink-shadow: rgba(233, 30, 99, 0.3);

    /* Utility colors */
    --success: #22c55e;
    --error: red;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-100: #f5f5f5;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-border: #e5e5e5;
    --phone-text: #333333;
    --phone-text-light: #666666;

    /* Background overlays */
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.4);
    --overlay-medium: rgba(255, 255, 255, 0.7);

    /* Shadow colors */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-brand: rgba(190, 24, 93, 0.3);
    --shadow-brand-light: rgba(190, 24, 93, 0.2);
    --shadow-pink: rgba(244, 114, 182, 0.3);

    /* Phone mockup colors */
    --phone-bg-1: rgba(0, 0, 0, 0.4);
    --phone-bg-2: rgba(0, 0, 0, 0.6);
    --phone-gradient-1: rgba(233, 30, 99, 0.9);
    --phone-gradient-2: rgba(156, 39, 176, 0.9);
    --phone-gradient-3: rgba(59, 130, 246, 0.9);
    --phone-gradient-4: rgba(29, 78, 216, 0.9);
    --phone-gradient-5: rgba(16, 185, 129, 0.9);
    --phone-gradient-6: rgba(5, 150, 105, 0.9);
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.logo-height {
    height: 40px;
}

.icon-size-32 {
    width: 32px;
    height: 32px;
}

.icon-white {
    color: white;
}

.text-brand {
    color: var(--brand-primary);
}

.full-size {
    width: 100%;
    height: 100%;
}

.cover-image {
    object-fit: cover;
}

.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-lg {
    border-radius: 16px;
}

/* Form utility classes */
.form-input-base {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #FFCDD2;
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    background-color: #FFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input-focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
    outline: none;
}

.form-validation-error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-validation-success {
    border-color: #e5e7eb;
    box-shadow: none;
}

/* ===============================
   GLOBAL STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(190, 24, 93, 0.06) 0%,
            rgba(67, 56, 202, 0.04) 25%,
            rgba(99, 102, 241, 0.06) 50%,
            rgba(244, 114, 182, 0.04) 75%,
            rgba(139, 92, 246, 0.06) 100%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

/* ===============================
   ANIMATIONS
   =============================== */

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes nfcTap {
    0% {
        transform: translateX(0px) translateY(0) scale(0.8);
        opacity: 0;
    }

    45% {
        transform: translateX(-180px) translateY(-30vh) scale(0.98) rotate(2deg);
        opacity: 1;
    }

    50% {
        transform: translateX(-180px) translateY(-28vh) scale(0.98) rotate(2deg);
        opacity: 1;
    }

    55% {
        transform: translateX(-180px) translateY(-30vh) scale(1) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(0px) translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===============================
   HEADER NAVIGATION
   =============================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 2rem;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-accent), var(--brand-purple), var(--brand-accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    background: linear-gradient(45deg, var(--brand-accent), var(--brand-purple), var(--brand-accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.05);
}

.logo img {
    filter: brightness(0.3) saturate(100%) invert(29%) sepia(89%) saturate(2341%) hue-rotate(320deg) brightness(95%) contrast(95%);
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(0.3) saturate(100%) invert(29%) sepia(89%) saturate(2341%) hue-rotate(320deg) brightness(95%) contrast(95%);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.cta-nav {
    background: var(--brand-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    color: white !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--border-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-tertiary);
}

.mobile-menu-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: scale(1.1);
}

.mobile-menu-btn i {
    width: 18px;
    height: 18px;
}

.mobile-close-btn {
    display: none;
    justify-content: flex-end;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-secondary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    position: relative;
}

.close-menu-btn:hover {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    transform: scale(1.1);
}

.close-menu-btn:hover i {
    color: white;
}

.close-menu-btn i {
    width: 28px;
    height: 28px;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.cta-btn {
    display: none;
    opacity: 1;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: var(--brand-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
    background-clip: initial !important;
    -webkit-background-clip: initial !important;
    color: white !important;
    transform: translateY(-1px);
}

.show-cta-btn {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.hide-menu-btn {
    opacity: 0 !important;
    transform: scale(0) !important;
    pointer-events: none;
}

/* Header Navigation - Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-actions {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-primary);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu.active li {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-close-btn {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        transform: translateX(-20px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-secondary);
        text-align: left;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: var(--bg-secondary);
    }

    .cta-nav {
        margin: 0.5rem 2rem;
        text-align: center;
        border-bottom: none !important;
        padding: 0.75rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-btn {
        display: none;
        opacity: 1;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        background: var(--brand-primary);
        color: white !important;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .cta-btn:hover {
        background: linear-gradient(180deg, var(--brand-rose), var(--brand-indigo)) !important;
        background-clip: initial !important;
        -webkit-background-clip: initial !important;
        color: white !important;
        transform: translateY(-1px);
    }

    .show-cta-btn {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hide-menu-btn {
        opacity: 0 !important;
        transform: scale(0) !important;
        pointer-events: none;
    }
}

@media (max-width: 400px) {
    .nav-container {
        gap: 0px;
    }

    .nav-actions {
        gap: 0px;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .cta-btn {
        padding: 0.75rem 0.25rem;
    }
}

/* ===============================
   HERO SECTION
   =============================== */
.hero-section {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    margin-top: 70px;
    overflow-x: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    margin-top: 1px;
}

.hero-highlight {
    background: var(--brand-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-tertiary);
    padding: 1rem 2rem;
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 5px 15px var(--shadow-brand-light);
}

.btn-secondary:hover i {
    color: var(--brand-primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===============================
   PHONE MOCKUP SECTION
   =============================== */
.phone-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mowgli-phone-container {
    width: 260px;
    height: 530px;
    background: var(--black);
    border-radius: 35px;
    padding: 5px;
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.25),
        0 8px 30px rgba(0, 0, 0, 0.15),
        0 5px 10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    transform: rotate(5deg);
    transition: transform 0.6s ease-out, box-shadow 0.6s ease-out;
}

.mowgli-phone-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.mowgli-phone-container.scrolled {
    transform: rotate(0deg);
}

.mowgli-phone-screen {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Business Preview Card Styles */
.business-preview-card {
    width: 100%;
    max-width: 400px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
    /* background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%); */
}

.business-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Shop.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.business-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
}

.business-card-content {
    position: relative;
    z-index: 2;
}

.business-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.business-rating-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.rating-number {
    font-weight: 600;
    font-size: 0.9rem;
}

.business-category {
    font-size: 0.9rem;
    opacity: 0.9;
}

.business-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 400;
}

.business-info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.info-chip {
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.open-status {
    color: #4ADE80;
    font-weight: 600;
}

/* Business Details Below Card */
.business-details-below {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: left;
    /* background: linear-gradient(135deg, #E91E63 0%,#EC407A 50%, #F06292 100%); */
    border-radius: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 400px;
}

.business-type-below {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    min-width: 180px;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    padding: 0rem 0.5rem 0.25rem 2.75rem;
}
.business-address-below{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1 rem;
    color: var(--text-primary);
    min-width: 180px;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.5rem 0.25rem 1rem;
}

.business-address-below i {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.business-address-below i {
    color: var(--text-secondary) !important;
    stroke: var(--text-secondary) !important;
    width: 25px;
}
.business-type-below span {
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
}
.business-address-below span{
    font-weight: 700;
    text-align: left;
    line-height: 1.3;
}

/* Responsive design for business details */
@media (max-width: 768px) {
    .business-details-below {
        margin-top: 1rem;
        gap: 0.5rem;
        padding: 0.75rem;
        border-radius: 12px;
        width: 100%;
    }
    
    .business-address-below{
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
        min-width: 160px;
    }
    .business-type-below {
        padding: 0rem 0.6rem 0.4rem 2.25rem;
        font-size: 0.8rem;
        min-width: 160px;
    }
}

/* Phone Status Bar */
.mowgli-status-bar {
    position: absolute;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

.mowgli-status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mowgli-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 1px;
}

.mowgli-bar {
    width: 2px;
    background: var(--white);
    border-radius: 1px;
}

.mowgli-bar:nth-child(1) {
    height: 3px;
}

.mowgli-bar:nth-child(2) {
    height: 4px;
}

.mowgli-bar:nth-child(3) {
    height: 5px;
}

.mowgli-bar:nth-child(4) {
    height: 6px;
}

.mowgli-wifi-icon,
.mowgli-battery-icon {
    width: 16px;
    height: 16px;
}

/* Phone Hero Section */
.mowgli-hero-section {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mowgli-hero-section.transitioning {
    transition: background 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mowgli-hero-section.slide-1 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee1.jpg') center/cover;
}

.mowgli-hero-section.slide-2 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee2.jpg') center/cover;
}

.mowgli-hero-section.slide-3 {
    background: linear-gradient(135deg, var(--phone-bg-1) 0%, var(--phone-bg-2) 100%),
        url('images/coffee3.jpg') center/cover;
}

/* Phone Notifications */
.mowgli-notification {
    position: absolute;
    top: -100%;
    left: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 11px;
    display: flex;
    align-items: center;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: top 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
    z-index: 100;
}

.mowgli-notification.show {
    top: 8px;
    opacity: 1;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 8px;
    flex-shrink: 0;
}

.notification-icon i {
    width: 15px;
    height: 15px;
}

.notification-title {
    font-size: 12px;
    font-weight: 650;
    color: var(--black);
}

.notification-message {
    font-size: 11px;
    color: var(--phone-text-light);
}

/* Phone Back Button */
.mowgli-back-button {
    position: absolute;
    top: 30px;
    left: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Store Sign */
.mowgli-store-sign {
    text-align: center;
    margin-bottom: 20px;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mowgli-slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
}

.mowgli-slide-content.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    position: relative;
}

.mowgli-store-name {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
}

.mowgli-store-type {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Phone Carousel Dots */
.mowgli-carousel-dots {
    display: flex;
    gap: 6px;
    cursor: pointer;
}

.mowgli-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--overlay-light);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 20px;
}

.mowgli-dot:hover {
    background: var(--overlay-medium);
}

.mowgli-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Phone Content Section */
.mowgli-content-section {
    padding: 7px 10px;
    flex: 1;
    overflow-y: auto;
    border-radius: 25px;
}

.mowgli-business-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--phone-text);
}

.mowgli-business-categories {
    font-size: 12px;
    color: var(--phone-text-light);
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.mowgli-business-info {
    font-size: 12px;
    color: var(--phone-text-light);
    margin-bottom: 8px;
}

.mowgli-open-status {
    color: var(--success);
    font-weight: 600;
}

.mowgli-stats-section {
    display: flex;
    gap: 17px;
    margin-bottom: 8px;
}

.mowgli-stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--phone-text-light);
}

.mowgli-stat-item i {
    width: 16px;
    height: 14px;
}

/* Phone Action Buttons */
.mowgli-action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mowgli-member-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.mowgli-member-btn.active {
    background: var(--brand-primary);
    color: white;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.mowgli-member-btn.active svg {
    animation: heartPop 0.5s ease forwards;
}

.mowgli-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--gray-100);
    color: var(--phone-text);
    border: none;
    border-radius: 12px;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.mowgli-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--phone-text);
    margin: 10px 0;
}

/* Phone Reward Card */
.mowgli-reward-card {
    background: linear-gradient(135deg,
            rgba(244, 114, 182, 0.15) 0%,
            rgba(139, 92, 246, 0.12) 25%,
            rgba(99, 102, 241, 0.1) 50%,
            rgba(244, 114, 182, 0.08) 75%,
            rgba(139, 92, 246, 0.15) 100%);
    border-radius: 16px;
    padding: 8px 15px;
    box-shadow:
        0 8px 32px rgba(244, 114, 182, 0.2),
        0 4px 16px rgba(139, 92, 246, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mowgli-reward-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg,
            rgba(244, 114, 182, 0.3),
            rgba(139, 92, 246, 0.2),
            rgba(244, 114, 182, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: -1;
}

.mowgli-reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 2s ease;
    pointer-events: none;
    border-radius: 16px;
}

.mowgli-reward-card:hover::before {
    left: 100%;
}


/*  PHONE REWARD COMPONENTS */
.mowgli-reward-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mowgli-reward-content {
    flex: 1;
    text-align: left;
}

.mowgli-reward-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--phone-text);
    margin-bottom: 6px;
    text-align: left;
}

.mowgli-welcome-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
    text-align: left;
}

.mowgli-reward-logo {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, var(--brand-secondary), var(--brand-primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* FLOATING CHARACTERS */
.floating-characters {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.faq-character {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.character1 {
    top: 5%;
    right: -20%;
    animation-delay: 0s;
}

.character2 {
    bottom: 5%;
    left: -20%;
    animation-delay: 1.5s;
}

.tapping-card-container {
    position: absolute;
    top: 22%;
    right: -315px;
    width: 400px;
    height: 350px;
    z-index: 300;
    opacity: 1;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.tapping-card {
    object-fit: contain;
}

.tapping-card-container.active {
    animation: nfcTap 2.5s cubic-bezier(0.3, 0.7, 0.2, 1) forwards;
}

/* Hero Section - Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 2rem 6rem;
        margin-top: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===============================
   FEATURES SECTION
   =============================== */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.feature-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 630;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===============================
   BENEFITS SECTION
   =============================== */
.benefits-section {
    padding: 6rem 2rem 3rem;
    background: var(--bg-secondary);
}

/* Benefits Statistics List Styles */
.stats-list-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.stat-list-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.stat-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(233, 30, 99, 0.04));
    color: var(--brand-primary);
    flex-shrink: 0;
}

.stat-list-icon i {
    width: 10px;
    height: 10px;
}

.stat-list-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-tertiary);
}

.stat-list-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-section {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--border-primary);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: rgba(233, 30, 99, 0.3) 0px 10px 20px;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.4), rgba(139, 92, 246, 0.35));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-business {
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-tertiary);
    position: relative;
    padding-left: 40px;
}

.testimonial-quote::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 42px;
    line-height: 1;
    background: linear-gradient(45deg, var(--brand-secondary), var(--brand-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 480px) {

    /* Testimonials responsive styles */
    .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0;
    }

    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-business {
        font-size: 0.85rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding-left: 30px;
        line-height: 1.6;
    }

    .testimonial-quote::before {
        font-size: 32px;
        top: -8px;
    }
}

/* ===============================
   FAQ SECTION
   =============================== */
.faq-section {
    padding: 3rem 2rem;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Items Wrapper */
.faq-items-wrapper {
    display: grid;
    grid-template-columns: 2fr 0.7fr;
    align-items: start;
    margin: 3rem 0;
}

.faq-items-content {
    width: 100%;
}

.faq-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 7rem;
}

/* FAQ Image Container */
.faq-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Make FAQ cards match feature card look */
.faq-grid .feature-card {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 360px;
}

.faq-grid .feature-card .steps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.faq-grid .feature-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.faq-grid .feature-card .feature-title {
    max-width: 28ch;
}

.faq-grid .feature-card .feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 48ch;
    margin: 0.5rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 112, 255, 0.06), 0 1.5px 6px rgba(80, 112, 255, 0.03);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
    width: 80%;
    cursor: pointer;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-item.active {
    box-shadow: 0 8px 32px rgba(80, 112, 255, 0.12), 0 2px 8px rgba(80, 112, 255, 0.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 2rem 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    transition: background 0.2s;
}

.faq-item.active .faq-question {
    color: var(--brand-primary);
}

.faq-question:hover {
    background: #f6f8fa;
}

.faq-arrow {
    display: inline-block;
    margin-left: 1rem;
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border: none;
    position: relative;
}

.faq-arrow::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand-primary);
    border-bottom: 2px solid var(--brand-primary);
    position: absolute;
    top: 2px;
    left: 2px;
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8fafc;
    color: #444;
    font-size: 1.08rem;
    padding: 0 2rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 300px;
}

/* FAQ Section - Responsive Styles */
@media (max-width: 1024px) {
    .faq-items-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-image-section {
        position: static;
        order: -1;
    }

    .faq-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .faq-items-wrapper {
        gap: 2rem;
        margin: 2rem 0;
    }

    .faq-image-container {
        max-width: 45%;
        border-radius: 16px;
    }

    .faq-image {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .faq-grid .feature-card {
        min-height: 320px;
    }

    .faq-grid .feature-card .steps-icon {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 1.05rem;
        padding: 1.1rem 1.2rem 1.1rem 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.1rem 1.2rem;
    }

    .faq-arrow {
        width: 12px;
        height: 12px;
    }

    .faq-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .faq-items-wrapper {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .faq-image-container {
        max-width: 55%;
        border-radius: 12px;
    }

    .faq-image {
        border-radius: 12px;
    }
}

/* ===============================
   VIDEO MODAL
   =============================== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    animation: slideInFromTop 0.4s ease;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: var(--brand-primary);
    text-decoration: none;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--overlay-dark);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Video Modal - Responsive Styles */
@media (max-width: 768px) {
    .video-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        width: 90%;
        max-width: 400px;
    }

    .video-modal-close {
        top: -40px;
        right: 0px;
        font-size: 28px;
    }
}

/* ===============================
   PRICING SECTION
   =============================== */
.pricing-section {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    position: relative;
    text-align: center;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header Styles */
.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Container */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

/* Pricing Card Base Styles */
.pricing-card {
    background: var(--pricing-card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 22, 106, 0.15);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid var(--brand-primary);
    background: linear-gradient(135deg, #fff 0%, #fef7ff 100%);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

/* Badge */
.pricing-card-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-primary));
    color: white;
    padding: 0.4rem 1rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Price Section */
.pricing-card-price {
    text-align: center;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--brand-secondary), var(--brand-primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 10px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-tertiary);
    font-weight: 500;
    text-align: left;
}

/* Action Button */
.pricing-card-action {
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Pricing Section - Responsive Styles */
@media (max-width: 768px) {
    .pricing-container {
        gap: 3rem;
    }

    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card,
    .pricing-card.featured {
        transform: none !important;
        padding: 2rem 1.5rem;
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 1rem;
    }
}

/* ===============================
   BLOG SECTION
   =============================== */
.blog-hero {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    padding: 120px 0 80px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.blog-main {
    display: grid;
    gap: 40px;
}

.blog-post {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-primary);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-brand);
}

.blog-post-image {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-violet) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 30px;
}

.blog-post h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-post p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--brand-primary);
    transform: translateX(4px);
}

/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-brand);
}

.featured-post-content {
    background: var(--card-bg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-post p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===============================
   BLOG FEATURE PAGE
   =============================== */
.blog-feature-page .page {
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.blog-feature-page .page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.blog-feature-page .content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    align-items: center;
}

.blog-feature-page .content-other-section {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-feature-page .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    justify-content: center;
}

.blog-feature-page .blog-post-image {
    height: 420px;
    background: var(--bg-secondary);
}

.blog-feature-page .blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blog Section - Responsive Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }

    .blog-container {
        padding: 40px 20px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .featured-post h2 {
        font-size: 1.5rem;
    }

    .blog-post-image {
        height: 220px;
    }
}

/* ===============================
   ENHANCED BLOG POST STYLING
   =============================== */
.blog-post {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-primary);
}

.blog-post:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px var(--shadow-brand);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--brand-primary);
}

.blog-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(217, 22, 106, 0.1) 0%,
            rgba(67, 56, 202, 0.1) 100%);
}

.blog-post-image img {
    transition: transform 0.3s ease;
}

.blog-post-content {
    padding: 3rem;
    position: relative;
}

.blog-post-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
            var(--brand-primary) 0%,
            var(--brand-secondary) 100%);
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

.blog-post-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 200px;
    height: 3px;
    background: var(--brand-primary);
}

.blog-post-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.blog-post-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.blog-post-content ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    list-style: none;
}

.conclusion {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 0 2rem;
    margin-top: 3rem;
    border: 1px solid var(--border-primary);
    display: flex;
    flex-direction: column;
}

.conclusion h3 {
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.conclusion p {
    color: var(--text-primary);
    font-weight: 500;
}

.conclusion a {
    align-self: flex-end;
    margin-bottom: 10px;
}

/* Enhanced Blog Post - Responsive Styles */
@media (max-width: 768px) {
    .blog-post-content {
        padding: 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 2rem;
    }

    .blog-post-content h3 {
        font-size: 1.5rem;
    }

    .conclusion {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post-image {
        height: 200px;
    }
}

/* ===============================
   COMPARISON SECTION
   =============================== */
.comparison-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
}

.text-brand {
    color: var(--brand-primary);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Header Cells */
.grid-header {
    background: var(--brand-rose);
    color: #fff;
    padding: 16px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.grid-header:first-of-type {
    border-top-left-radius: 16px;
}

.grid-header:last-of-type {
    border-top-right-radius: 16px;
}

/* Task Cells */
.task-cell {
    background: var(--shadow-brand);
    color: black;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Time Cells - By Yourself */
.time-yourself,
.time-yourself-total {
    background: var(--brand-table);
    color: #fff;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.time-yourself {
    padding: 16px 20px;
    font-size: 20px;
}

.time-yourself-total {
    padding: 16px 20px;
    flex-direction: column;
    font-size: 80px;
}

.time-yourself-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 60px;
    font-weight: 700;
}

.time-yourself-main span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Time Cells - poddle */
.time-poddle,
.time-poddle-total {
    color: #fff;
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-primary);
}

.time-poddle {
    font-size: 20px;
}

.time-poddle-sub,
.time-poddle-total-sub {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Arrow */
.arrow-icon {
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 26px;
    height: 27px;
}

/* Comparison Section - Responsive Styles */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 0.8fr 1.4fr;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .comparison-grid {
        grid-template-columns: 1.5fr 0.8fr 1.5fr;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 12px 16px;
        font-size: 12px;
    }

    .arrow-icon {
        width: 20px;
        height: 18px;
        right: -10px;
    }

    .time-yourself-main {
        font-size: 18px !important;
        gap: 4px;
    }

    .time-yourself-main span {
        font-size: 13px !important;
    }

    .time-poddle-sub {
        font-size: 11px !important;
        margin-top: 2px;
        padding: 0 2px;
    }

    .time-poddle-total-sub {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .comparison-grid {
        grid-template-columns: 1.3fr 0.8fr 1.5fr;
    }

    .arrow-icon {
        width: 18px;
        height: 14px;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 8px 4px;
        font-size: 10px;
    }

    .time-yourself-main {
        font-size: 14px !important;
        gap: 2px;
    }

    .time-yourself-main span {
        font-size: 12px !important;
    }

    .task-cell {
        font-size: 10px;
    }

    .time-poddle-sub {
        font-size: 9px !important;
        margin-top: 2px;
        padding: 0 1px;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .comparison-container {
        padding: 0 5px;
    }

    .grid-header,
    .task-cell,
    .time-yourself,
    .time-poddle {
        padding: 6px 4px;
        font-size: 9px;
    }

    .task-cell {
        padding: 6px;
    }

    .time-yourself-main {
        font-size: 12px !important;
        gap: 1px;
    }

    .time-yourself-main span {
        font-size: 10px !important;
    }
}

/* ===============================
   CONTACT SECTION
   =============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
    justify-items: stretch;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #e91e63;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 30px;
}

.contact-item h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    line-height: 1.5;
}

/* Contact Section - Responsive Styles */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* ===============================
   FORM SECTION
   =============================== */
.form-wrapper {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: white;
    position: relative;
}

/* Desktop curve (vertical) */
.form-curve-vertical {
    position: absolute;
    top: 0;
    right: -1px;
    height: 100%;
    width: 80px;
    z-index: 3;
}

/* Mobile curve (horizontal) */
.form-curve-horizontal {
    display: none;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 25%;
    z-index: 3;
}

.form-curve-vertical svg,
.form-curve-horizontal svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Form Validation Styles */
.form-group {
    position: relative;
}

.validation-message {
    font-size: 0.8rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    height: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.validation-message.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-message.error {
    color: var(--error);
}

.validation-message.success {
    color: var(--success);
}

.validation-message.error::before {
    font-size: 1rem;
}

.validation-message.success::before {
    content: "";
    font-size: 1rem;
}

/* Form validation states - using utility classes */
.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.form-group input.success,
.form-group select.success {
    border-color: var(--success);
}

.form-group input:focus.error,
.form-group select:focus.error {
    border-color: var(--error);
}

.form-group input:focus.success,
.form-group select:focus.success {
    border-color: var(--success);
}

.chip-item.error {
    border-color: var(--error);
}

.chip-item.success {
    border-color: var(--success);
}

/* Left Section - Welcome & Progress */
.form-left {
    flex: 0 0 400px;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    color: white;
    padding: 50px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* Right Section - Form */
.form-right {
    flex: 1;
    background-color: white;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
}

.welcome-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Progress Bar - Vertical Design */
.progress-bar {
    width: 100%;
    margin-top: 2rem;
}

.progress-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Connecting line between steps */
.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
    transition: background-color 0.3s ease;
}

/* Completed connecting line */
.progress-step.completed:not(:last-child)::after {
    background-color: var(--success);
}

.progress-step.current,
.progress-step.completed {
    opacity: 1;
}

.progress-step .step-indicator {
    width: 40px;
    height: 40px;
    background-color: var(--gray-400);
    color: var(--gray-500);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid var(--border-primary);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.progress-step.current .step-indicator,
.progress-step.completed .step-indicator {
    transform: scale(1.1);
}

.progress-step.current .step-indicator {
    background-color: var(--white);
}

.progress-step.completed .step-indicator {
    background-color: var(--success);
    color: white;
    border: 2px solid var(--success);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.progress-step.completed .step-indicator span {
    display: none;
}

.progress-step .step-label {
    font-size: 1.2em;
    font-weight: 500;
}

/* Form step heading with underline highlight */
.step-heading {
    position: relative;
}

.step-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-pink) 50%, var(--brand-accent) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px var(--shadow-brand-light);
}

.step-heading {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 650;
}

/* Form Steps */
.gamified-form {
    position: relative;
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    margin-bottom: 0;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Form Container Grid Layout - Single Line Layout */
.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    margin-top: 1rem;
}

/* Side by side form groups */
.form-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
    align-items: start;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95em;
}

.form-group label .required {
    color: var(--brand-accent);
    margin-left: 5px;
}

/* Form inputs - consolidated */
input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--text-secondary);
    border-radius: 10px;
    font-size: 1em;
    color: #333;
    background-color: #FFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
    border-color: var(--brand-accent);
    outline: none;
}

/* Phone input container */
.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #FFCDD2;
    border-radius: 10px;
    background-color: #FFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: var(--brand-accent);
}

.country-selector {
    position: relative;
    min-width: 140px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}
/* 
.dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid #FFCDD2;
    border-radius: 10px 0 0 10px;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    outline: none;
    font-family: inherit;
} */
/* 
.dropdown-selected:hover {
    background-color: #fff;
} */

.dropdown-arrow {
    margin-left: auto;
    font-size: 0.8em;
    color: #666;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.country-text {
    font-weight: 500;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #FFCDD2;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}


.dropdown-option:last-child {
    border-radius: 0 0 10px 10px;
}

.phone-input-container input[type="tel"] {
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 14px 18px 14px 12px;
    background-color: transparent;
    flex: 1;
    outline: none;
}

.phone-input-container input[type="tel"]:focus {
    border: none;
    box-shadow: none;
}

select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23d9166a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-position: right 15px top 50%, 0 0;
    background-size: 10px auto, 100%;
    padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    border: 2px solid var(--brand-accent);
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: "✔";
    font-weight: 900;
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group label a {
    color: var(--brand-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-group label a:hover {
    text-decoration: underline;
    color: var(--brand-accent);
}

/* Chip Group Styling */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 35px;
    width: 100%;
    justify-content: flex-start;
}

.chip-item {
    position: relative;
}

.chip-item input[type="radio"] {
    display: none;
}

.chip-item label {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    text-align: center;
    min-width: 120px;
    margin-bottom: 0px;
}

.chip-item label:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.chip-item input[type="radio"]:checked+label {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Form Section - Responsive Styles */
@media (max-width: 1024px) {
    .form-wrapper {
        max-width: 900px;
        flex-direction: column;
        min-height: auto;
    }

    .form-left {
        flex: 0 0 340px;
        padding: 35px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .form-right {
        padding: 0px 40px 40px;
    }

    .form-side-by-side {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .chip-group {
        justify-content: flex-start;
        gap: 12px;
    }

    .form-curve-horizontal {
        height: 20%;
        display: block;
    }

    .form-curve-vertical {
        display: none;
    }

    .progress-bar {
        margin-top: 2rem;
        padding-left: 0;
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }

    .progress-step {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .progress-step .step-indicator {
        margin-right: 0px;
    }

    /* Horizontal connecting lines for mobile/tablet */
    .progress-step:not(:last-child)::after {
        content: '';
        left: 60px;
        top: 20px;
        width: calc(35vw);
        height: 2px;
    }

    /* Completed horizontal connecting line */
    .progress-step.completed:not(:last-child)::after {
        background-color: var(--success);
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0 15px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-left {
        flex: 0 0 150px;
        padding: 20px;
        border-radius: 20px 20px 0 0;
        min-height: 150px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .form-left .welcome-section p {
        font-size: 0.95em;
        margin-bottom: 0;
    }

    .form-right {
        padding: 0px 25px 20px;
        border-radius: 0 0 20px 20px;
    }

    .form-right h2 {
        font-size: 1.6em;
        margin-bottom: 20px;
        text-align: center;
    }

    .progress-bar {
        margin-top: 20px;
    }

    .progress-step {
        margin-bottom: 0;
        margin: 0 8px;
        flex-direction: column;
        align-items: center;
    }

    .progress-step .step-indicator {
        margin-right: 0;
        margin-bottom: 8px;
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .progress-step .step-label {
        font-size: 0.85em;
        text-align: center;
        line-height: 1.2;
    }

    /* Form section responsive styles for medium screens */
    .form-section {
        padding: 2.5rem 15px;
    }

    .form-navigation {
        gap: 12px;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-navigation button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95em;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
        max-width: none;
    }

    /* Form container becomes single column on mobile */
    .form-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    /* Form groups spacing */
    .form-group {
        margin-bottom: 15px;
    }

    /* Side by side form groups become single column */
    .form-side-by-side {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Chip group responsive */
    .chip-group {
        justify-content: center;
        gap: 8px;
    }

    .chip-item label {
        padding: 10px 16px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .progress-step:not(:last-child)::after {
        top: 18px
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 0.5rem;
    }

    .form-wrapper {
        margin: 0;
        border-radius: 15px;
    }

    .form-left {
        padding: 20px 15px;
        min-height: 150px;
    }

    .form-left .welcome-section h1 {
        font-size: 1.6em;
    }

    .form-left .welcome-section p {
        font-size: 0.9em;
    }

    .form-right {
        padding: 0px 15px 20px;
    }

    .form-right h2 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .progress-step {
        margin: 0 5px;
    }

    .progress-step .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 0.9em;
    }

    .progress-step .step-label {
        font-size: 0.8em;
    }

    /* Chip group becomes single column on very small screens */
    .chip-group {
        gap: 6px;
        margin-bottom: 0px;
    }

    .chip-item label {
        font-size: 0.85em;
        min-width: 80px;
        padding: 8px 16px;
    }

    .form-curve-horizontal {
        height: 15%;
    }

    .progress-step:not(:last-child)::after {
        top: 15px;
    }
}

/* ===============================
   BUTTON STYLES
   =============================== */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(45deg, #e91e63, #d81b60);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--brand-rose), var(--brand-indigo));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn-success {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Disabled button styles */
.btn:disabled,
.btn.disabled {
    background: linear-gradient(45deg, #f8bbd9, #fce4ec) !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ===============================
   FORM SECTION STYLING
   =============================== */
.form-section {
    padding: 3.5rem 15px;
    background-color: #fcf7fa;
    margin-top: 50px;
}

/* Form Navigation - New Design */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.form-navigation button {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.next-step,
.btn.submit-form {
    background-color: #E91E63;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn.prev-step {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.form-navigation button:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn.next-step:hover,
.btn.submit-form:hover {
    background-color: #D81B60;
}

.btn.prev-step:hover {
    background-color: #fdf2f8;
}

.form-navigation button i {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 0.9em;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    border: 2px solid var(--success);
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success);
    animation: bounce 1s ease infinite;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-success p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-success #resetForm {
    display: block;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .form-success #resetForm {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===============================
   CUSTOMER BENEFITS TAGS
   =============================== */
.customer-benefits-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 1.5rem auto;
    justify-content: center;
    align-items: center;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.tag-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
    display: inline-block;
    line-height: 1;
}

/* Customer Benefits Tags - Responsive Styles */
@media (max-width: 1024px) {
    .customer-benefits-tags {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.4rem;
        margin: 1rem 0;
        padding: 0 0.5rem;
    }

    .benefit-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .customer-benefits-tags {
        display: grid;
        gap: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .benefit-tag {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        text-align: center;
        gap: 0.1rem;
        margin: 1rem 0;
        padding: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .customer-benefits-tags {
        gap: 0.2rem;
    }

    .benefit-tag {
        width: 100%;
        font-size: 0.75rem;
        padding: 0.6rem 0.5rem;
        justify-content: flex-start;
    }
}

@media (max-width: 380px) {
    .customer-benefits-tags {
        grid-template-columns: 1fr 1fr;
        gap: 0rem;
        padding: 0 0.5rem;
        align-items: center;
    }

    .benefit-tag {
        padding: 0.75rem;
        font-size: 0.8rem;
        white-space: normal;
        word-break: break-word;
        max-width: max-content;
        justify-content: center;
        margin: 0.25rem;
    }

    .tag-emoji {
        font-size: 1.1rem;
    }
}

/* ===============================
   TRUST TAGS
   =============================== */
.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem auto 0;
    justify-content: center;
    max-width: 900px;
}

.trust-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.55rem 0.9rem;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    font-weight: 500;
    font-size: 0.92rem;
    white-space: nowrap;
}

.trust-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.trust-emoji {
    font-size: 1.5rem;
    color: var(--text-tertiary);
}

/* ===============================
   Council SECTION
   =============================== */
.council-section,
.closing-cta-section {
    padding: 4rem 2rem;
    background: var(--primary-pink-light);
}

.closing-cta-section {
    text-align: center;
}

.closing-cta-assurance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1rem auto 0 auto;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 400px;
}

.closing-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.closing-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.closing-feature-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.closing-feature span {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
}

.council-section .subtitle,
.closing-cta-section .subtitle {
    font-size: 1.2rem;
    color: #2D3748;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.steps-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    flex-wrap: wrap;
}


.step-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    border: 2px solid white;
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.8rem;
    height: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive step number sizes for small screens */
@media (max-width: 768px) {
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.4rem;
        top: -1.75rem;
    }
    
    .step-number::after {
        width: 1.8rem;
        height: 1.8rem;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        top: -1.5rem;
    }
    
    .step-number::after {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(233, 30, 99, 0.15);
    border-top: 4px solid var(--brand-primary);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    flex: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.2));
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1A202C;
    line-height: 1.3;
}

.step-text p {
    font-size: 1.05rem;
    color: #4A5568;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ===============================
   CTA BUTTON STYLING
   =============================== */
.cta-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 50%, var(--brand-primary) 100%);
    color: white;
    padding: 24px 48px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    cursor: pointer;
    min-width: 220px;
    /* text-transform: uppercase; */
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-primary-button:hover {
    background: linear-gradient(45deg, var(--brand-rose), var(--brand-indigo));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Steps Responsive Styles */
@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        max-width: 800px;
    }

    .steps-container::before {
        top: 1.5rem;
        left: 1.5rem;
        right: auto;
        bottom: 1.5rem;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-accent) 50%, var(--brand-primary) 100%);
    }

    .step-item {
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        height: auto;
    }

}

@media (max-width: 768px) {
    .steps-container {
        margin: 2rem auto;
        gap: 1.5rem;
    }

    .steps-container::before {
        left: 1.25rem;
        top: 1.25rem;
        bottom: 1.25rem;
    }

    .step-item {
        gap: 1.5rem;
    }

    .step-content {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .step-text h4 {
        font-size: 1.2rem;
    }

    .step-text p {
        font-size: 0.95rem;
    }
}

/* Closing CTA Responsive Styles */
@media (max-width: 768px) {
    .closing-cta-section {
        padding: 4rem 1.5rem;
    }

    .closing-cta-features {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .closing-feature {
        padding: 0.75rem 1rem;
    }

    .closing-feature span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .closing-cta-section {
        padding: 3rem 1rem;
    }

    .closing-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .closing-feature {
        padding: 0.75rem 1rem;
        justify-content: center;
    }
}

/* CTA Button Styling - Responsive Styles */
@media (max-width: 768px) {
    .council-section {
        padding: 6rem 1.5rem;
        margin: 1rem 0;
        border-radius: 20px;
    }

    .council-section .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .council-section {
        padding: 4rem 1rem;
        margin: 0.5rem 0;
        border-radius: 15px;
    }

    .council-section .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .steps-container {
        margin: 1.5rem auto;
        gap: 1rem;
    }

    .steps-container::before {
        left: 1rem;
        top: 1rem;
        bottom: 1rem;
    }

    .step-item {
        gap: 1rem;
    }


    .step-content {
        padding: 1rem;
    }


    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .step-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-text p {
        font-size: 0.85rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-top: 2.5rem;
    }

    .cta-primary-button {
        display: block;
        width: 100%;
        max-width: 280px;
        padding: 18px 32px;
        font-size: 16px;
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .council-section {
        padding: 3rem 0.75rem;
        margin: 0.25rem 0;
    }

    .cta-primary-button {
        display: block;
        width: 100%;
        max-width: 260px;
        margin: 0;
        text-align: center;
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* ===============================
   SETUP SECTION
   =============================== */
.setup-section {
    text-align: center;
    background: linear-gradient(to bottom right, #ffffff, #f5f9ff);
    padding: 3rem 2rem;
}

.setup-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Setup Section - Responsive Styles */
@media (max-width: 1024px) {}

@media (max-width: 768px) {}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0a2a4a 100%);
    color: #f9fafb;
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.5), rgba(99, 102, 241, 0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(244, 114, 182, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 1rem;
    align-items: start;
}

/* Footer Section Headings */
.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f472b6, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #f472b6, #6366f1);
    border-radius: 1px;
}

/* Footer Section Content */
.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 400px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.25rem 0;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f472b6, #6366f1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.footer-section ul li a:hover {
    color: #f9fafb;
    transform: translateX(4px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

/* Mail Link */
.mail-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(55, 65, 81, 0.3);
    display: inline-block;
}

.mail-link span {
    position: relative;
    z-index: 1;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(55, 65, 81, 0.4);
    border: 1px solid rgba(55, 65, 81, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f472b6, #6366f1);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 11px;
}

.social-links a i,
.social-links a svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.3);
    border-color: rgba(244, 114, 182, 0.5);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover i,
.social-links a:hover svg {
    color: #ffffff;
}

/* Footer - Responsive Styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
        text-align: left;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-section p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-section h3::after {
        left: 0;
        transform: none;
    }

    .footer-section:first-child h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===============================
   BENEFITS SECTION
   =============================== */
.benefits-section {
    padding: 6rem 2rem 3rem;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* Work steps */
.work-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.work-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.work-step.reverse {
    flex-direction: row-reverse;
}

.work-step.reverse .work-step-image::before {
    right: auto;
    left: 0px;
}

.work-step-image {
    flex: 0 0 auto;
    position: relative;
    padding: 2rem;
}

.work-step-image::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 0px;
    width: 25%;
    height: 30%;
    background: linear-gradient(135deg, #fa9296 0%, #ffc3ec 50%, #fecfef 100%);
    border-radius: 12px;
    z-index: 1;
}

.work-step.reverse .work-step-image::before {
    right: auto;
    left: 0px;
}

.work-step-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.work-step-content {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.work-step-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 1rem 1rem;
}

.work-step-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Stats list benefits */
.stats-list-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.stat-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.stat-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 8px;
    color: var(--brand-pink);
    flex-shrink: 0;
    border: none;
}

.stat-list-icon i {
    width: 10px;
    height: 10px;
}

.stat-list-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.stat-list-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===============================
   FEATURES SECTION
   =============================== */
.features-section {
    text-align: center;
    background: var(--bg-primary);
    padding: 3rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: radial-gradient(1200px 200px at -10% -20%, rgba(244, 114, 182, 0.15), transparent),
        radial-gradient(1200px 200px at 110% 120%, rgba(99, 102, 241, 0.15), transparent),
        var(--testimonial-card-bg);
    border: 1px solid var(--brand-primary);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
    text-align: center;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Benefits Section - Responsive Styles */
@media (max-width: 1200px) {
    .work-step {
        gap: 2.5rem;
        margin-bottom: 30px;
    }

    .work-step-image {
        padding: 1.5rem;
    }

    .work-step-image::before {
        width: 30%;
        height: 35%;
        top: 8px;
        right: 0px;
        border-radius: 10px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -10px;
    }

    .work-step-image img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .work-step {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        margin-bottom: 50px;
    }

    .work-step.reverse {
        flex-direction: column;
    }

    .work-step-image {
        padding: 1rem;
    }

    .work-step-image::before {
        width: 28%;
        height: 32%;
        top: -5px;
        right: -3px;
        border-radius: 8px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -8px;
    }

    .work-step-image img {
        max-width: 450px;
        width: 100%;
        border-radius: 12px;
    }

    .work-step-content {
        min-width: 100%;
        text-align: left;
    }

    .work-step-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .work-step-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .features-section {
        margin: 0rem 0rem;
        text-align: center;
        background: var(--bg-primary);
        padding: 3rem 1.5rem;
    }

    .feature-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .work-step {
        gap: 15px;
        margin-bottom: 30px;
    }

    .work-step-image {
        padding: 0.8rem;
    }

    .work-step-image::before {
        width: 25%;
        height: 30%;
        right: 0px;
        border-radius: 6px;
    }

    .work-step.reverse .work-step-image::before {
        right: auto;
        left: -5px;
    }

    .work-step-image img {
        border-radius: 8px;
    }

    .work-step-title {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===============================
   WHATSAPP STYLE CHAT INTERFACE
   =============================== */
   .chat-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: transparent;
}

.chat-message {
    display: flex;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    gap: 0.5rem;
    animation: slideInUp 0.6s ease-out;
    width: 100%;
    position: relative;
}

.chat-message-left {
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    margin-right: 80px;
}

.chat-message-right {
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 80px;
}

.card-content {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    height: 100%;
}

.card-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image:hover {
    transform: scale(1.05);
}

.card-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
}

/* Text alignment based on image position */
.chat-message:nth-child(1) .card-text-content,
.chat-message:nth-child(3) .card-text-content,
.chat-message:nth-child(5) .card-text-content {
    text-align: left;
    padding-left: 10px;
}

.chat-message:nth-child(2) .card-text-content,
.chat-message:nth-child(4) .card-text-content {
    text-align: right;
    padding-right: 10px;
}

/* Alternate image positions for 2nd and 4th cards */
.chat-message:nth-child(2) .card-content,
.chat-message:nth-child(4) .card-content {
    flex-direction: row-reverse;
}

/* Ensure right side images display correctly */
.chat-message:nth-child(2) .card-image-container,
.chat-message:nth-child(4) .card-image-container {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.chat-message:nth-child(2) .card-image,
.chat-message:nth-child(4) .card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.chat-bubble {
    max-width: 100%;
    width: 100%;
    background: transparent;
    padding: 0.5rem 0;
    position: relative;
    flex-shrink: 0;
}

.chat-message-left .chat-bubble {
    background: transparent;
}

.chat-message-right .chat-bubble {
    background: transparent;
}

.chat-header {
    margin-bottom: 0.5rem;
}

.chat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.chat-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.chat-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Animation for messages */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for each message */
.chat-message:nth-child(1) { animation-delay: 0.1s; }
.chat-message:nth-child(2) { animation-delay: 0.2s; }
.chat-message:nth-child(3) { animation-delay: 0.3s; }
.chat-message:nth-child(4) { animation-delay: 0.4s; }
.chat-message:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .chat-container {
        margin: 2rem auto 0;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .chat-message {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
        
    }

    .card-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .card-image-container {
        width: 100%;
        height: 100%;
        order: 1;
        border-radius: 12px;
        justify-content: center;
    }
    
    /* Specific styling for 2nd and 4th cards on mobile */
    .chat-message:nth-child(2) .card-image-container,
    .chat-message:nth-child(4) .card-image-container {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        order: 1;
    
    }
    
    .card-text-content {
        order: 2;
    }

    .chat-bubble {
        max-width: 100%;
        padding: 0.25rem 0;
    }
    
    .card-text-content {
        text-align: center !important;
    }
    
    /* Center align all cards on mobile */
    .chat-message .card-content {
        align-items: center !important;
    }
    
    .chat-message .card-text-content {
        text-align: center !important;
    }
    
    /* Specific center alignment for 2nd and 4th cards */
    .chat-message:nth-child(2) .card-content,
    .chat-message:nth-child(4) .card-content {
        align-items: center !important;
        flex-direction: column !important;
    }
    
    .chat-message:nth-child(2) .card-text-content,
    .chat-message:nth-child(4) .card-text-content {
        text-align: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Force center alignment for 2nd and 4th cards - more specific */
    .chat-message:nth-child(2) .chat-title,
    .chat-message:nth-child(4) .chat-title {
        text-align: center !important;
    }
    
    .chat-message:nth-child(2) .chat-subtitle,
    .chat-message:nth-child(4) .chat-subtitle {
        text-align: center !important;
    }
    
    .chat-message:nth-child(2) .chat-description,
    .chat-message:nth-child(4) .chat-description {
        text-align: center !important;
    }
    
    /* Override chat-message-right for mobile */
    .chat-message:nth-child(2).chat-message-right,
    .chat-message:nth-child(4).chat-message-right {
        justify-content: center !important;
        margin-left: 0 !important;
        align-items: center !important;
    }

    .chat-title {
        font-size: 1rem;
    }

    .chat-subtitle {
        font-size: 0.9rem;
    }

    .chat-description {
        font-size: 0.85rem;
    }
    
    /* Force 2nd and 4th cards to stack on tablet */
    .chat-message:nth-child(2) .card-content,
    .chat-message:nth-child(4) .card-content {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .chat-message:nth-child(2) .card-text-content,
    .chat-message:nth-child(4) .card-text-content {
        order: 2 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .chat-container {
        margin: 1.5rem auto 0;
        padding: 1rem;
        border-radius: 12px;
    }

    .chat-message {
        margin-bottom: 1rem;
        gap: 0.4rem;
    }

    .card-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .card-image-container {
        width: 100%;
        height: 100%;
        order: 1;
        border-radius: 12px;
        align-items: center;
    }
    
    /* Specific styling for 2nd and 4th cards on mobile */
    .chat-message:nth-child(2) .card-image-container,
    .chat-message:nth-child(4) .card-image-container {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        order: 1;
        
    }
    
    .card-text-content {
        order: 2;
        align-items: center !important;
    }
    
    /* Center align all cards on mobile */
    .chat-message .card-content {
        align-items: center !important;
    }
    
    .chat-message .card-text-content {
        text-align: center !important;
    }
    
    /* Specific center alignment for 2nd and 4th cards */
    .chat-message:nth-child(2) .card-content,
    .chat-message:nth-child(4) .card-content {
        align-items: center !important;
        flex-direction: column !important;
    }
    
    .chat-message:nth-child(2) .card-text-content,
    .chat-message:nth-child(4) .card-text-content {
        text-align: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    
    /* Force center alignment for 2nd and 4th cards - more specific */
    .chat-message:nth-child(2) .chat-title,
    .chat-message:nth-child(4) .chat-title {
        text-align: center !important;
    }
    
    .chat-message:nth-child(2) .chat-subtitle,
    .chat-message:nth-child(4) .chat-subtitle {
        text-align: center !important;
    }
    
    .chat-message:nth-child(2) .chat-description,
    .chat-message:nth-child(4) .chat-description {
        text-align: center !important;
    }
    
    /* Override chat-message-right for mobile */
    .chat-message:nth-child(2).chat-message-right,
    .chat-message:nth-child(4).chat-message-right {
        justify-content: center !important;
        margin-left: 0 !important;
        align-items: center !important;
    }

    .chat-bubble {
        max-width: 100%;
        padding: 0.25rem 0;
    }
    
    .card-text-content {
        text-align: center !important;
    }

    .chat-title {
        font-size: 0.95rem;
    }

    .chat-subtitle {
        font-size: 0.85rem;
    }

    .chat-description {
        font-size: 0.8rem;
    }
    
    /* Force 2nd and 4th cards to stack on mobile */
    .chat-message:nth-child(2) .card-content,
    .chat-message:nth-child(4) .card-content {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .chat-message:nth-child(2) .card-text-content,
    .chat-message:nth-child(4) .card-text-content {
        order: 2 !important;
        text-align: center !important;
    }
}

/* Responsive Download Buttons */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* QR Codes Container */
.qr-codes-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* QR Code Styling */
.qr-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    min-width: 140px;
}

.qr-code-image {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.qr-code-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-only {
        display: inline-flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .app-download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Desktop Responsive */
@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
    
    .desktop-only {
        display: flex;
    }
    
    .qr-codes-container {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .qr-codes-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .qr-code-wrapper {
        min-width: 120px;
    }
}